/* Global Styles */
:root {
    --primary-color: #C0001E;
    --secondary-color: #8a1515;
    --dark-color: #1a0a0a;
    --light-color: #ffffff;
    --accent-color: #C0001E;
    --text-color: #f5f5f5;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-color);
    animation: spin 1.5s linear infinite;
    position: relative;
}

.loader-logo {
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--accent-color), #ff4d4d);
    animation: loading 2.5s ease-in-out forwards;
    border-radius: 3px;
}

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

@keyframes loading {
    0% { width: 0; }
    20% { width: 20%; }
    50% { width: 50%; }
    80% { width: 80%; }
    100% { width: 100%; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(230, 28, 93, 0.3);
    transform: translateY(20px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #ff4d4d;
    color: var(--light-color);
    transform: translateY(-5px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--light-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    background: url('../img/hero-image.webp') no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 10, 10, 0.95) 0%, rgba(58, 10, 10, 0.8) 50%, rgba(58, 10, 10, 0.6) 100%);
    z-index: 1;
}

/* Navigation Bar */
.navbar {
    padding: 1rem 0;
    z-index: 100;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.triangle, .circle, .square {
    display: inline-block;
    margin-right: 8px;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid var(--light-color);
}

.circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--light-color);
}

.square {
    width: 18px;
    height: 18px;
    background-color: var(--light-color);
}

.navbar-nav {
    margin-left: 2rem;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 15px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--light-color);
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-right {
    display: flex;
    align-items: center;
}

.nav-social-icons {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.nav-social-icons a {
    color: var(--light-color);
    font-size: 0.9rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.nav-social-icons a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Styles */
.navbar-toggler {
    border: none;
    background: transparent;
    display: none; /* Hide by default on desktop */
    align-items: center;
    cursor: pointer;
    color: var(--light-color);
}

.menu-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.menu-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 10, 10, 0.98);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu-item {
    margin: 1.5rem 0;
}

.mobile-menu-link {
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--accent-color);
}

.mobile-menu-social {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.mobile-menu-social a {
    color: var(--light-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.mobile-menu-social a:hover {
    color: var(--accent-color);
}

.menu-text {
    color: var(--light-color);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.profile-image {
    width: 600px;
    /* height: 200%; */
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hero-title {
    font-size: 10rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--light-color);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-break {
    display: block;
    margin-left: 3rem;
    color: var(--accent-color);
    position: relative;
    top: -10px;
}

.hero-description {
    max-width: 80%;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    position: relative;
    padding-left: 2rem;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--accent-color);
}

/* Episode Indicators */
/* Hero Bottom Section */
.hero-bottom {
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 10;
}

.episode-indicators {
    display: flex;
    justify-content: space-around;
    position: relative;
    width: 100%;
    gap: 1rem;
}

.episode {
    margin: 0;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.episode-number {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    opacity: 0.6;
}

.episode-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
}

/* Play Button */
.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    border-radius: 50px;
    width: 160px;
    height: 45px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(230, 28, 93, 0.3);
}

.play-button:hover {
    background-color: black;
}

.play-button i {
    margin-right: 10px;
    font-size: 0.7rem;
}

/* Bottom Social Icons */
.bottom-social-icons {
    display: flex;
    align-items: center;
}

.bottom-social-icons a {
    color: var(--light-color);
    margin-left: 1rem;
    transition: all 0.3s ease;
    font-size: 18px;
    background: var(--accent-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bottom-social-icons a:hover {
    color: var(--accent-color);
}

/* Vertical Navigation */
.vertical-nav {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #1a0a0a;
    position: relative;
    overflow: hidden;
}

.about-section::before,
 .testimonials-section::before,
  .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(175, 16, 16, 0.3), transparent 60%);
    z-index: 1;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-number {
    font-size: 1rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.accent-text {
    color: var(--accent-color);
}

.about-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    color: var(--light-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--light-color);
}

.about-stats {
    margin-bottom: 40px;
    background-color: rgba(26, 10, 10, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(230, 28, 28, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    margin-bottom: 20px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.about-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    box-shadow: 0 4px 10px rgba(230, 28, 93, 0.3);
}

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

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

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.about-image-container {
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.about-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    opacity: 0.1;
    z-index: 1;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/img2.webp') no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 0;
    width: 120px;
    height: 120px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.tech-item {
    width: 60px;
    height: 60px;
    background-color: rgba(26, 10, 10, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 28, 28, 0.2);
}

.tech-item:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-image: linear-gradient(rgba(63, 19, 19, 0.582), rgba(75, 21, 21, 0.527)), url(../img/service-image.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.services-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

.services-bg-element-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    top: -100px;
    right: -150px;
    filter: blur(80px);
}

.services-bg-element-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -100px;
    left: -150px;
    filter: blur(60px);
}

.section-subtitle {
    color: var(--light-color);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-top: 15px;
    letter-spacing: 1px;
}

.services-container {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    margin-bottom: 60px;
}

.service-item {
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgb(199 199 199 / 19%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 28, 93, 0.1) 0%, transparent 100%);
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 28, 93, 0.3);
}

.service-item.featured {
    border-color: rgba(230, 28, 93, 0.3);
    background-color: rgba(58, 10, 31, 0.5);
}

.service-item.featured::after {
    content: 'Featured';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 5px 30px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(236, 16, 16, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 16, 16, 0.2);
}

.service-item:hover .service-icon {
    background-color: var(--accent-color);
    color: var(--light-color);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 20px;
    position: relative;
}

.service-description {
    color: var(--light-color);
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.service-tag {
    background-color: var(--accent-color);
    color: var(--light-color);
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 16, 16, 0.1);
}

.service-item:hover .service-tag {
    background-color: rgba(236, 16, 16, 0.2);
    border-color: rgba(236, 16, 16, 0.3);
}

.service-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--light-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    position: relative;
    z-index: 2;
    background-color: rgba(26, 10, 19, 0.7);
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(236, 16, 16, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.services-cta p {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Resume Section */
.resume-section {
    padding: 120px 0;
    background-color: #1a0a0a;
    position: relative;
    overflow: hidden;
}

.resume-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

.resume-bg-element-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    bottom: -100px;
    right: -150px;
    filter: blur(80px);
}

.resume-bg-element-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -100px;
    left: -150px;
    filter: blur(60px);
}

.resume-container {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    margin-bottom: 60px;
    background: rgb(199 199 199 / 10%);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    overflow: hidden;
}

.resume-nav-container {
    background-color: rgba(26, 10, 10, 0.7);
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.resume-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 15px;
}

.resume-nav-item {
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: var(--light-color);
    background-color: rgba(26, 10, 10, 0.5);
    border: 1px solid rgba(230, 28, 28, 0.1);
}

.resume-nav-item:hover {
    background-color: rgba(230, 28, 28, 0.2);
    transform: translateY(-3px);
}

.resume-nav-item.active {
    background-color: var(--accent-color);
    color: var(--light-color);
    box-shadow: 0 5px 15px rgba(230, 28, 28, 0.3);
}

.resume-nav-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.resume-nav-item.active .resume-nav-icon {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotateY(180deg);
}

.resume-content-container {
    padding: 40px;
    background-color: rgba(26, 10, 10, 0.3);
}

.resume-content {
    display: none;
}

.resume-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Timeline Styles */
.resume-timeline {
    position: relative;
    padding-left: 40px;
}

.resume-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    height: 100%;
    width: 2px;
    background: var(--accent-color);
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: -40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 3px solid rgba(26, 10, 19, 0.7);
    box-shadow: 0 0 0 5px rgba(230, 28, 93, 0.2);
    z-index: 1;
}

.timeline-content {
    background: rgb(199 199 199 / 10%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 30px;
    position: relative;
    border: 1px solid var(--accent-color);
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--accent-color);
    color: var(--light-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 5px;
}

.timeline-subtitle {
    font-size: 1rem;
    color: var(--light-color);
    opacity: 0.8;
    margin-bottom: 15px;
    font-style: italic;
}

.timeline-description {
    color: var(--light-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tag {
    background-color: var(--accent-color);
    color: var(--light-color);
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Skills Styles */
.skills-container {
    padding: 20px 0;
}

.skills-category {
    margin-bottom: 40px;
}

.skills-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.skills-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-color);
    margin: 0;
}

.skill-percentage {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
}

.skill-progress {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 50px;
    transition: width 1s ease;
}

/* Awards Styles */
.awards-container {
    padding: 20px 0;
}

.award-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background: rgb(199 199 199 / 10%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 25px;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.award-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: var(--light-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(230, 28, 93, 0.3);
}

.award-info {
    flex-grow: 1;
}

.award-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 5px;
}

.award-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.award-description {
    color: var(--light-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.resume-cta {
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background-color: #1a0a0a;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    position: relative;
    gap: 10px;
    justify-content: space-between;
}

.testimonials-left {
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.testimonials-left h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.testimonials-left p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.testimonial-btn {
    margin-top: 20px;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.testimonials-vertical-line {
    position: absolute;
    top: 0;
    left: 40%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(230, 14, 14, 0.3), transparent);
    border-radius: 2px;
    z-index: 1;
}

.testimonials-shape-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(230, 28, 93, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 10s infinite alternate;
    opacity: 0.4;
    z-index: 0;
}

.testimonials-shape-2 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(230, 28, 93, 0.15);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphShape 15s infinite alternate-reverse;
    opacity: 0.3;
    z-index: 0;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.testimonials-wrapper {
    position: relative;
    padding: 60px 0 30px;
}

.testimonials-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.1;
    filter: blur(60px);
}

.testimonials-bg-element-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--accent-color), #ff2c2c);
    top: 0;
    left: -150px;
}

.testimonials-bg-element-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #b02727, #ff2c2c);
    bottom: -100px;
    right: -100px;
}

.testimonials-bg-element-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff2c2c, #ff4d4d);
    top: 40%;
    right: 20%;
}

.testimonial-card {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.testimonial-card:nth-child(2) {
    margin-left: 50px;
}

.testimonial-card:nth-child(3) {
    margin-left: 100px;
}

.testimonial-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.testimonial-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(226, 18, 18, 0.2);
}

.testimonial-quote {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-card-inner:hover .testimonial-quote {
    opacity: 0.5;
    transform: rotate(10deg);
}

.testimonial-card-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.accent-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.accent-dot-1 {
    top: 20px;
    left: 20px;
}

.accent-dot-2 {
    bottom: 20px;
    right: 20px;
}

.testimonial-card:hover .accent-dot {
    transform: scale(1.5);
    opacity: 1;
}

.accent-line {
    position: absolute;
    background: linear-gradient(to right, var(--accent-color), transparent);
    opacity: 0.3;
    transition: all 0.5s ease;
}

.accent-line-1 {
    top: 24px;
    left: 28px;
    width: 50px;
    height: 1px;
    transform-origin: left center;
    transform: scaleX(0);
}

.accent-line-2 {
    bottom: 24px;
    right: 28px;
    width: 50px;
    height: 1px;
    transform-origin: right center;
    transform: scaleX(0);
}

.testimonial-card:hover .accent-line {
    transform: scaleX(1);
    opacity: 0.5;
}

@keyframes shine {
    0% {
        top: -50%;
        left: -50%;
    }
    100% {
        top: 150%;
        left: 150%;
    }
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

/* Removed unnecessary styles */

.client-info {
    flex: 1;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(230, 28, 93, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.client-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.3s ease;
}

.testimonial-card-inner:hover .client-image {
transform: scale(1.05);
border-color: var(--accent-color);
}

.client-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.client-details h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.testimonial-card-inner:hover .client-details h4::after {
    width: 100%;
}

.client-details p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.testimonial-card-inner:hover .client-details p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(230, 28, 93, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    display: flex;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact Form Side */
.contact-form-side {
    flex: 1;
    padding: 40px;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}

.form-field.half-width {
    width: calc(50% - 10px);
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.form-control:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(230, 28, 93, 0.1);
}

.contact-details-input {
    display: flex;
    align-items: center;
}

.country-code {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 12px;
    border-radius: 8px 0 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    font-size: 0.95rem;
}

.contact-details-input .form-control {
    border-radius: 0 8px 8px 0;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

.form-submit {
    margin-top: 30px;
}

.submit-button {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 30px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}

.submit-button:hover {
    background: rgba(230, 28, 93, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 28, 93, 0.2);
}

/* Contact Info Side */
.contact-info-side {
    flex: 0 0 360px;
    background:var(--accent-color);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-header h3 {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    line-height: 1.4;
}

.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.315);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.1rem;
    color: white;
}

.contact-details h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.contact-details p {
    font-size: 1rem;
    color: white;
    margin: 0;
    font-weight: 500;
}

.contact-social {
    margin-top: auto;
}

.contact-social h4 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.349);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.form-control.error {
    border-color: #ff3547;
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-3px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(3px, 0, 0);
    }
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(46, 213, 115, 0.1);
    border-radius: 10px;
    color: #2ed573;
    font-weight: 500;
}

.success-message i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 100px 0 70px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex: 0 0 300px;
}

.footer-logo h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-description {
    margin-bottom: 25px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-links-column {
    flex: 1;
}

.footer-heading {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(5px);
}

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

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-info i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 5px;
}

.footer-contact-info span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.03;
    z-index: 0;
}

.footer-shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
}

.footer-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 10%;
}

.footer-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 45%;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Contact Section Styles */

.contact-social {
    margin-top: 30px;
}
    
.footer-brand {
    flex: 0 0 100%;
    margin-bottom: 20px;
}

.footer-links {
    width: 100%;
}

.contact-bg-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.1;
    filter: blur(60px);
}

.contact-bg-element-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: 10%;
    right: -150px;
}

.contact-bg-element-2 {
    width: 300px;
    height: 300px;
    background: #9c27b0;
    bottom: -100px;
    left: -100px;
}

.contact-shape-1 {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(230, 28, 93, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s infinite alternate;
    opacity: 0.3;
    z-index: 0;
}

.contact-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(230, 28, 93, 0.15);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphShape 20s infinite alternate-reverse;
    opacity: 0.2;
    z-index: 0;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Contact Section Responsive Styles */


/* Custom Splide Styles */
.splide__track {
    overflow: visible;
    padding: 30px 0 60px;
}

.splide__arrow {
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
}

.splide__arrow:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.splide__arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.splide__arrow svg {
    fill: var(--light-color);
    width: 1.2em;
    height: 1.2em;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.splide__arrow:disabled {
    opacity: 0.3;
}

.splide__arrow--prev {
    left: -25px;
}

.splide__arrow--next {
    right: -25px;
}

.splide__pagination {
    bottom: 0;
    padding: 10px 0;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.15);
    width: 30px;
    height: 5px;
    margin: 0 5px;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.splide__pagination__page.is-active {
    background: linear-gradient(to right, var(--accent-color), #ff4d8d);
    transform: scale(1.2);
    width: 50px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 0;
    background-color: #1a0a0a;
    position: relative;
    overflow: hidden;
}

.portfolio-bg-element {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, var(--accent-color), #ff3838);
opacity: 0.15;
filter: blur(60px);
z-index: 0;
}

.portfolio-bg-element-1 {
width: 400px;
height: 400px;
top: 5%;
left: -150px;
}

.portfolio-bg-element-2 {
width: 600px;
height: 600px;
bottom: -250px;
right: -200px;
}

.portfolio-bg-element-3 {
width: 300px;
height: 300px;
top: 40%;
right: 15%;
background: linear-gradient(45deg, #b02727, #ff3838);
opacity: 0.1;
}

.portfolio-filter {
    margin: 50px 0 40px;
    position: relative;
    z-index: 2;
}

.filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.filter-nav-item {
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light-color);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-nav-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.filter-nav-item.active {
    background-color: var(--accent-color);
    color: var(--light-color);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(230, 28, 93, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.portfolio-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 19, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    display: flex;
    gap: 15px;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    text-decoration: none;
}

.portfolio-link:nth-child(2) {
    transition-delay: 0.2s;
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-link:hover {
    background-color: var(--light-color);
    color: var(--accent-color);
    transform: scale(1.1) !important;
}

.portfolio-info {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 0 0 15px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 8px;
}

.portfolio-category {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.portfolio-cta {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

/* Project Modal Styles */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    overflow-y: auto;
}

.project-modal.active {
    display: block;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
}

.modal-container {
    position: relative;
    z-index: 1002;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    background: rgb(26, 10, 19);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s ease;
    border: 1px solid rgba(230, 28, 93, 0.2);
}

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

.modal-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(26, 10, 19, 0.9);
    border-bottom: 1px solid rgba(230, 28, 93, 0.2);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    background-color: rgba(230, 28, 93, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-content {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Project Detail Styles */
.project-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-images {
    flex: 1 1 450px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail-images img {
    width: calc(33.333% - 10px);
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-images img:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.project-info {
    flex: 1 1 400px;
}

.project-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 20px;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    background: rgb(199 199 199 / 5%);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(230, 28, 93, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-title {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    font-size: 1rem;
    color: var(--light-color);
}

.project-description {
    margin-bottom: 30px;
}

.project-description p {
    color: var(--light-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.project-features {
    margin-bottom: 30px;
}

.project-features h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.project-features h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--light-color);
}

.project-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

.project-link {
    margin-top: 30px;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/**
 * All media queries are consolidated here for easier maintenance
 * Organized by screen size breakpoints (largest to smallest)
 */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    /* Global styles for large screens */
    .container {
        max-width: 960px;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 8rem;
    }

    .profile-image{
        width: 500px;
    }
    
    /* About section */
    .about-content {
        padding-right: 20px;
    }
    
    /* Portfolio section */
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    /* Contact section */
    .contact-container {
        max-width: 95%;
    }
    
    .contact-info-side {
        flex: 0 0 320px;
    }
    
    /* Footer section */
    .footer-content {
        gap: 40px;
    }

    .contact-container {
        gap: 30px;
    }
    
    .contact-info-wrapper {
        flex: 0 0 40%;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    /* Global styles for medium screens */
    .container {
        max-width: 720px;
    }

    .bottom-social-icons{
        display: none;
    }

    .hero-content{
        height: 500px;
    }

    .hero-bottom{
        bottom: 15px;
    }
    
    /* Navigation */
    .navbar-toggler {
        display: flex; /* Show on mobile */
    }
    
    .navbar-nav {
        display: none !important; /* Hide desktop menu on mobile */
    }
    
    .navbar-collapse {
        background-color: rgba(26, 10, 10, 0.95);
        padding: 1rem;
        border-radius: 5px;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    /* Hero section */
    .overlay {
        background: linear-gradient(90deg, rgba(26, 10, 10, 0.95) 0%, rgba(58, 10, 10, 0.9) 100%);
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    /* About section */
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-image-container {
        padding-left: 0;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2.8rem;
    }
    
    /* Services section */
    .services-section {
        padding: 80px 0;
    }
    
    /* Resume section */
    .resume-section {
        padding: 80px 0;
    }
    
    .resume-nav {
        flex-wrap: wrap;
    }
    
    .resume-nav-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .resume-nav-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Portfolio section */
    .portfolio-section {
        padding: 80px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    /* Modal */
    .modal-container {
        width: 95%;
        margin: 30px auto;
    }
    
    /* Contact section */
    .contact-container {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .contact-form-side {
        padding: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .contact-info-side {
        width: 100%;
    }
    
    .contact-info-boxes {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contact-info-box {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 200px;
    }
    
    .contact-social {
        margin-top: 30px;
    }
    
    /* Footer section */
    .footer-brand {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-top {
        padding: 70px 0 50px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-wrapper {
        flex: 0 0 100%;
    }
    
    .social-links {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    /* Global styles for small screens */
    .container {
        max-width: 540px;
    }
    
    /* Contact section */
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-info-header h3 {
        font-size: 1.3rem;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-title-break {
        margin-left: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    

    .hero-content{
        justify-content: flex-start;
padding-top: 40px;
    }
    
    .episode {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .social-icons {
        right: 1rem;
    }
    
    /* About section */
    .about-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-stats .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Services section */
    .services-section {
        padding: 70px 0;
    }
    
    .service-item {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .services-cta {
        padding: 30px;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
    
    /* Resume section */
    .resume-section {
        padding: 70px 0;
    }
    
    .resume-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .resume-nav-item {
        padding: 8px 15px;
        font-size: 0.85rem;
        flex: 1 0 calc(50% - 10px);
        justify-content: center;
    }
    
    .resume-content-container {
        padding: 30px 20px;
    }
    
    .timeline-title {
        font-size: 1.3rem;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .award-item {
        padding: 20px;
    }
    
    .award-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }
    
    .award-title {
        font-size: 1.2rem;
    }
    
    /* Portfolio section */
    .portfolio-section {
        padding: 70px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .filter-nav {
        gap: 10px;
    }
    
    .filter-nav-item {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .portfolio-title {
        font-size: 1.2rem;
    }
    
    .portfolio-info {
        padding: 20px;
    }
    
    /* Modal */
    .modal-container {
        margin: 30px auto;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 1.7rem;
    }
    
    .thumbnail-images img {
        height: 60px;
    }

    .form-group {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-bg-element-1 {
        width: 250px;
        height: 250px;
    }
    
    .contact-bg-element-2 {
        width: 200px;
        height: 200px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Global styles for extra small screens */
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Contact section */
    .contact-form-side, 
    .contact-info-side {
        padding: 25px 20px;
    }

    .hero-title-break{
        top: -5px;
    }
    .hero-content {
        height: 450px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-container {
        margin-top: 40px;
    }
    
    .submit-button {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Hero section */
    .hero-content {
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-break {
        margin-left: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* About section */
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .about-stats .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .tech-stack {
        flex-wrap: wrap;
    }
    
    .tech-item {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Services section */
    .services-section {
        padding: 50px 0;
    }
    
    .services-container {
        margin-top: 40px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .services-cta {
        padding: 25px;
    }
    
    .services-cta p {
        font-size: 1rem;
    }
    
    /* Resume section */
    .resume-section {
        padding: 60px 0;
    }
    
    .resume-nav-item {
        flex: 1 0 100%;
        margin-bottom: 10px;
    }
    
    .resume-content-container {
        padding: 25px 15px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    .timeline-period {
        font-size: 0.8rem;
    }
    
    .timeline-description {
        font-size: 0.9rem;
    }
    
    .award-item {
        padding: 15px;
    }
    
    .award-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .award-title {
        font-size: 1.1rem;
    }
    
    .award-description {
        font-size: 0.9rem;
    }
    
    /* Portfolio section */
    .portfolio-section {
        padding: 60px 0;
    }
    
    .filter-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-nav-item {
        margin-bottom: 10px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Modal */
    .modal-container {
        width: 100%;
        margin: 20px auto;
    }
    
    .modal-content {
        padding: 15px;
    }
    
    .project-images {
        grid-template-columns: 1fr;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .thumbnail-images {
        gap: 10px;
    }
    
    .thumbnail-images img {
        height: 50px;
    }
    
    .project-features h4 {
        font-size: 1.1rem;
    }
    
    .project-features li {
        font-size: 0.85rem;
    }
    
    /* Contact section */
    .contact-form-side,
    .contact-info-side {
        padding: 20px;
    }
    
    .contact-info-box {
        flex: 1 0 100%;
    }
    
    /* Footer */
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-card-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 450px) {
    .hero-bottom{
        display: none;
    }

    .hero-content {
        height: 340px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .back-to-top,
    .page-loader,
    .footer-section {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section-title {
        color: #000;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
}
