@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
    --bg-black-900: #f2f2fc;
    --bg-black-100: #fdf9ff;
    --bg-black-50: #e8dfec;
    --text-black-900: #302e4d;
    --text-black-700: #504e70;
    --skin-color: #ec1839;
}

body.dark {
    --bg-black-900: #151515;
    --bg-black-100: #222222;
    --bg-black-50: #393939;
    --text-black-900: #ffffff;
    --text-black-700: #e9e9e9;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

::before, ::after {
    box-sizing: border-box;
}

/* Main Layout */
.section {
    background: var(--bg-black-900);
    min-height: 100vh;
    display: block;
    padding: 0 30px;
    position: relative;
    z-index: 0;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.section.back-section {
    z-index: 1;
}

.section.active {
    z-index: 2;
    opacity: 1;
    animation: slideSection 1s ease;
}

@keyframes slideSection {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0%); }
}

.main-content {
    margin-left: 270px;
    width: calc(100% - 270px);
    transition: margin-left 0.3s ease-in-out;
}

.padd-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: auto;
}

.section .container {
    padding-top: 60px;
    padding-bottom: 70px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}

/* Typography */
.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--text-black-900);
    font-weight: 700;
    position: relative;
}

.section-title h2::before {
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}

.section-title h2::after {
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}

/* Buttons */
.btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border-radius: 40px;
    display: inline-block;
    white-space: nowrap;
    border: none;
    background: var(--skin-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(236, 24, 57, 0.3);
}

.btn-view {
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 15px;
}

.btn-link {
    color: var(--skin-color);
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

.btn-link i {
    margin-right: 5px;
}

/* Sidebar */
.aside {
    width: 270px;
    background: var(--bg-black-100);
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    padding: 30px;
    z-index: 10;
    border-right: 1px solid var(--bg-black-50);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.aside .logo {
    position: absolute;
    top: 50px;
    font-size: 30px;
    text-transform: capitalize;
}

.aside .logo a {
    color: var(--text-black-900);
    font-weight: 700;
    padding: 15px 20px;
    font-size: 30px;
    letter-spacing: 5px;
    position: relative;
}

.aside .logo a span {
    font-family: 'Clicker Script', cursive;
    font-size: 40px;
}

.aside .logo a::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--skin-color);
    border-left: 5px solid var(--skin-color);
    bottom: 0;
    left: 0;
}

.aside .logo a::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 5px solid var(--skin-color);
    border-right: 5px solid var(--skin-color);
    top: 0;
    right: 0;
}

.aside .nav-toggler {
    height: 40px;
    width: 45px;
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    position: fixed;
    left: 300px;
    top: 20px;
    border-radius: 5px;
    background: var(--bg-black-100);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aside .nav-toggler.open span {
    background-color: transparent;
}

.aside .nav-toggler span {
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    display: inline-block;
    position: relative;
}

.aside .nav-toggler span::before {
    content: '';
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    position: absolute;
    top: -6px;
    left: 0;
}

.aside .nav-toggler.open span::before {
    transform: rotate(45deg);
    top: 0;
}

.aside .nav-toggler span::after {
    content: '';
    height: 2px;
    width: 18px;
    background: var(--skin-color);
    position: absolute;
    top: 6px;
    left: 0;
}

.aside .nav-toggler.open span::after {
    transform: rotate(-45deg);
    top: 0;
}

.aside .nav {
    margin-top: 50px;
}

.aside .nav li {
    margin-bottom: 20px;
    display: block;
}

.aside .nav li a {
    font-size: 16px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid var(--bg-black-50);
    color: var(--text-black-900);
    padding: 5px 15px;
    transition: all 0.3s ease;
}

.aside .nav li a:hover {
    color: var(--skin-color);
}

.aside .nav li a.active {
    color: var(--skin-color);
}

.aside .nav li a i {
    margin-right: 15px;
}

/* Home Section */
.home {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding-top: 160px;
    color: var(--text-black-900);
}

.home .home-info {
    flex: 0 0 60%;
    max-width: 60%;
    text-align: left;
}

h3.hello {
    font-size: 28px;
    margin: 15px 0;
}

h3.hello span {
    font-family: 'Clicker Script', cursive;
    font-size: 30px;
    font-weight: 700;
    color: var(--skin-color);
}

h3.my-profession {
    font-size: 30px;
    margin: 15px 0;
}

.typing {
    color: var(--skin-color);
}

.home-info p {
    margin-bottom: 40px;
    font-size: 20px;
    color: var(--text-black-700);
}

.home .buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.home .home-img {
    flex: 0 0 40%;
    max-width: 40%;
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.home-img::before,
.home-img::after {
    content: '';
    position: absolute;
    width: 15%;
    height: 15%;
    max-width: 60px;
    max-height: 60px;
    box-sizing: border-box;
}

.home-img::before {
    border-top: 8px solid var(--skin-color);
    border-left: 8px solid var(--skin-color);
    left: -10px;
    top: -10px;
}

.home-img::after {
    border-bottom: 8px solid var(--skin-color);
    border-right: 8px solid var(--skin-color);
    right: -10px;
    bottom: -10px;
}

.home .home-img img {
    margin: auto;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    position: relative;
}

/* About Section */
.about .about-content {
    flex: 0 0 100%;
    max-width: 100%;
}

.about .about-content .about-text {
    flex: 0 0 100%;
    max-width: 100%;
}

.about .about-content .about-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-black-900);
}

.about .about-content .about-text h3 span {
    color: var(--skin-color);
}

.about .about-content .about-text p {
    font-size: 16px;
    line-height: 35px;
    color: var(--text-black-700);
}

.about .about-content .personal-info {
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 40px;
}

.about .about-content .personal-info .info-item {
    flex: 0 0 50%;
    max-width: 50%;
}

.about .about-content .personal-info .info-item p {
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-black-900);
    border-bottom: 1px solid var(--bg-black-50);
}

.about .about-content .personal-info .info-item p span {
    font-weight: 400;
    color: var(--text-black-700);
    margin-left: 4px;
    display: inline-block;
}

/* Strengths Section */
.strengths {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 40px;
}

.strength-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.strength-item {
    background: var(--bg-black-100);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 200px;
    text-align: center;
    border: 1px solid var(--bg-black-50);
    transition: all 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.strength-item i {
    font-size: 30px;
    color: var(--skin-color);
    margin-bottom: 10px;
}

.strength-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black-900);
}

/* Skills Section */
.skills-content {
    flex: 0 0 100%;
    max-width: 100%;
}

.skill-category {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
}

.skill-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-black-900);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--skin-color);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-item h5 {
    line-height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-black-900);
    text-transform: capitalize;
}

.progress {
    background-color: var(--bg-black-50);
    height: 10px;
    border-radius: 5px;
    width: 100%;
    position: relative;
}

.progress-in {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 5px;
    background-color: var(--skin-color);
}

.skill-percent {
    position: absolute;
    right: 0;
    color: var(--text-black-900);
    top: -40px;
    font-weight: 400;
    line-height: 40px;
}

/* Experience Section */
.experience-content {
    flex: 0 0 100%;
    max-width: 100%;
}

.timeline-box {
    flex: 0 0 100%;
    max-width: 100%;
}

.timeline {
    background-color: var(--bg-black-100);
    padding: 30px 15px;
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    width: 100%;
    position: relative;
}

.timeline .timeline-item {
    position: relative;
    padding-left: 37px;
    padding-bottom: 50px;
}

.timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.timeline .timeline-item::before {
    content: '';
    width: 1px;
    position: absolute;
    height: 100%;
    left: 7px;
    top: 0;
    background-color: var(--skin-color);
}

.timeline .circle-dot {
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--skin-color);
}

.timeline .timeline-date {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-black-700);
}

.timeline .timeline-date .fa {
    margin-right: 5px;
}

.timeline .timeline-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--text-black-900);
}

.timeline .timeline-text {
    line-height: 25px;
    font-size: 16px;
    text-align: justify;
    color: var(--text-black-700);
}

.timeline .timeline-text strong {
    color: var(--skin-color);
}

/* Academics Section */
.academics-content {
    flex: 0 0 100%;
    max-width: 100%;
}

.education {
    flex: 0 0 60%;
    max-width: 60%;
}

.certifications {
    flex: 0 0 40%;
    max-width: 40%;
}

.certification-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.certification-inner {
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.certification-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.certification-inner .icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(236, 24, 57, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.certification-inner .icon i {
    font-size: 20px;
    color: var(--skin-color);
}

.certification-inner h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-black-900);
    font-weight: 600;
}

.certification-inner p {
    font-size: 14px;
    color: var(--text-black-700);
}

/* Portfolio Section */
.portfolio-heading {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.portfolio-heading h2 {
    color: var(--text-black-900);
    font-weight: 500;
}

.portfolio-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.portfolio-item-inner {
    border: 6px solid var(--bg-black-100);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-img {
    position: relative;
}

.portfolio-img img {
    width: 100%;
    display: block;
    transition: all 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.portfolio-item-inner:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.portfolio-tech span {
    background: var(--skin-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 3px;
    font-size: 12px;
}

.portfolio-details {
    padding: 20px;
    background: var(--bg-black-100);
}

.portfolio-details h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-black-900);
}

.feature-list {
    list-style-type: none;
    margin-bottom: 15px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-black-700);
}

.feature-list li:before {
    content: '•';
    color: var(--skin-color);
    position: absolute;
    left: 0;
}

/* Achievements Section */
.achievement-content {
    flex: 0 0 100%;
    max-width: 100%;
}

.achievement-item {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
}

.achievement-inner {
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.achievement-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.achievement-inner .icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(236, 24, 57, 0.1);
    line-height: 60px;
}

.achievement-inner .icon i {
    font-size: 25px;
    color: var(--skin-color);
    line-height: 60px;
}

.achievement-inner h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-black-900);
    font-weight: 700;
}

.achievement-inner p {
    font-size: 16px;
    color: var(--text-black-700);
    line-height: 25px;
}

/* Contact Section */
.contact-title {
    color: var(--skin-color);
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.contact-sub-title {
    color: var(--text-black-900);
    text-align: center;
    font-size: 15px;
    margin-bottom: 60px;
}

.contact-info-item {
    flex: 0 0 25%;
    max-width: 25%;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-item .icon {
    display: inline-block;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: rgba(236, 24, 57, 0.1);
    line-height: 60px;
    text-align: center;
    margin-bottom: 15px;
}

.contact-info-item .icon .fa {
    font-size: 25px;
    color: var(--skin-color);
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black-900);
    text-transform: capitalize;
    margin: 15px 0 5px;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-700);
    font-weight: 400;
}

.contact-info-item p a {
    color: var(--skin-color);
}

.contact-form {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.form-item {
    margin-bottom: 30px;
}

.form-control {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    padding: 10px 25px;
    font-size: 16px;
    color: var(--text-black-700);
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

textarea.form-control {
    height: 140px;
    resize: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--skin-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Style Switcher */
.style-switcher {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 15px;
    width: 200px;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    z-index: 101;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform: translateX(100%);
}

.style-switcher.open {
    transform: translateX(-25px);
}

.style-switcher .s-icon {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%;
    border: 1px solid var(--bg-black-50);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.style-switcher .s-icon i {
    line-height: 40px;
}

.style-switcher .day-night {
    top: 55px;
}

.style-switcher h4 {
    margin: 0 0 10px;
    color: var(--text-black-700);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.style-switcher .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.style-switcher .colors span {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.style-switcher .color-1 {
    background: #ec1839;
}

.style-switcher .color-2 {
    background: #fa5b0f;
}

.style-switcher .color-3 {
    background: #37b182;
}

.style-switcher .color-4 {
    background: #1854b4;
}

.style-switcher .color-5 {
    background: #f021b2;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .section .container {
        padding-top: 70px;
    }
    
    .aside {
        left: -270px;
        width: 270px;
    }
    
    .aside.open {
        left: 0;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .aside .nav-toggler {
        display: flex;
        left: 30px;
    }
    
    .aside .nav-toggler.open {
        left: 300px;
    }
    
    .section {
        left: 0;
    }
    
    .section.open {
        left: 270px;
    }
    
    .about .about-content .personal-info .info-item p span {
        display: block;
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .contact-info-item,
    .portfolio-item,
    .service-item,
    .achievement-item,
    .education,
    .certifications {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .home .home-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .home .home-img {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 30px;
    }
    
    .home .home-img img {
        max-width: 250px;
    }
    
    .home-img::before,
    .home-img::after {
        width: 12%;
        height: 12%;
        max-width: 50px;
        max-height: 50px;
        border-width: 6px;
    }
    
    .skill-category {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .contact-form .col-6,
    .contact-info-item,
    .portfolio-item,
    .service-item,
    .achievement-item,
    .about .about-content .experience,
    .about .about-content .education,
    .about .about-content .skills,
    .about .about-content .personal-info,
    .personal-info .info-item,
    .education,
    .certifications,
    .certification-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .home .buttons {
        flex-direction: column;
    }
    
    .home .btn {
        width: 100%;
        text-align: center;
    }
    
    .portfolio-overlay h4 {
        font-size: 18px;
    }
    
    .portfolio-tech span {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .btn-view {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .certifications {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .section .container {
        padding-top: 50px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .home .home-info {
        text-align: center;
    }
    
    h3.hello {
        font-size: 24px;
    }
    
    h3.my-profession {
        font-size: 26px;
    }
    
    .home-info p {
        font-size: 16px;
    }
    
    .home .home-img img {
        max-width: 200px;
    }
    
    .home-img::before,
    .home-img::after {
        width: 10%;
        height: 10%;
        max-width: 40px;
        max-height: 40px;
        border-width: 5px;
        left: -8px;
        top: -8px;
    }
    
    .home-img::after {
        right: -8px;
        bottom: -8px;
    }
    
    .strength-items {
        flex-direction: column;
    }
    
    .achievement-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Project Details Page */
.project-details .back-btn {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.project-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.project-main-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.project-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
}

.project-meta {
    flex: 1;
    min-width: 300px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.project-tech span {
    background: var(--skin-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
}

.specs-container {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.spec-item {
    background: white;
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.spec-key {
    font-weight: 600;
    color: var(--skin-color);
    margin-right: 5px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-caption {
    padding: 10px;
    background: #f5f5f5;
    font-size: 14px;
    text-align: center;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.video-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-desc {
    padding: 15px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .project-header {
        flex-direction: column;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
}