@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

body {
    /* overflow: hidden; Bu satırı kaldırın */
    background-color: #000;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    height: 100%;
    /* Sayfa yüksekliği 100% yapılıyor */
    overflow: auto;
    /* Kaydırma çubuğunu aktif hale getiriyoruz */
}

html {
    height: 100%;
    /* Sayfanın tamamı için yüksekliği 100% yapıyoruz */
}

header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 960px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 3;
    text-align: right;
}

.logo img {
    height: 40px;
}

nav {
    margin-left: auto;
    margin-right: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    font-size: 16px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s, border-bottom 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #4fc3f7;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4fc3f7;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.contact-btn {
    padding: 10px 25px;
    border: 1px solid #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
}

.contact-btn:hover {
    background: rgba(79, 195, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(79, 195, 247, 0.4);
}

.slider {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#backgroundCanvas {
    z-index: 1;
}

#textCanvas {
    z-index: 2;
}

/* Banner Bölümü Stilleri */
.banner-section {
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1920/300');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(79, 195, 247, 0.3);
    border-bottom: 1px solid rgba(79, 195, 247, 0.3);
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(79, 195, 247, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #4fc3f7;
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.8);
}

.banner-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.skills-section {
    background-color: #0a0a0a;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.skills-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.skills-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4fc3f7;
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

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

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.skill-item {
    background-color: rgba(25, 25, 25, 0.8);
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(79, 195, 247, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(79, 195, 247, 0.2);
    border-color: rgba(79, 195, 247, 0.3);
}

.skill-icon {
    text-align: center;
    margin-bottom: 25px;
}

.skill-icon i {
    font-size: 50px;
    color: #4fc3f7;
    filter: drop-shadow(0 0 8px rgba(79, 195, 247, 0.6));
    transition: transform 0.3s ease, color 0.3s ease;
}

.skill-item:hover .skill-icon i {
    transform: scale(1.15);
    color: #81d4fa;
}

.skill-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.skill-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4fc3f7 0%, #03a9f4 100%);
    border-radius: 4px;
    width: 0%;
    position: relative;
    transition: width 1.5s ease-in-out;
    box-shadow: 0 0 8px rgba(79, 195, 247, 0.5);
}

.skill-percent {
    color: #4fc3f7;
    font-size: 16px;
    font-weight: 700;
}

/* Mobile responsive styles */
@media screen and (max-width: 767px) {
    .skills-section {
        padding: 60px 15px;
    }

    .skills-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    /* Clear previous layout */
    .skills-list {
        display: block;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Create top row with 3 items */
    .skills-list:after {
        content: "";
        display: table;
        clear: both;
    }

    /* Top row items - 3 columns */
    .skill-item:nth-child(1),
    .skill-item:nth-child(2),
    .skill-item:nth-child(3) {
        float: left;
        width: 30%;
        padding: 10px;
        margin-bottom: 15px;
        margin-right: 5px;
        margin-left: 5px;
    }

    /* Bottom row - 2 items centered */
    .skill-item:nth-child(4),
    .skill-item:nth-child(5) {
        display: inline-block;
        width: 30%;
        padding: 10px;
        margin: 0 5px;
    }

    .skill-icon {
        margin-bottom: 15px;
    }

    .skill-icon i {
        font-size: 30px;
    }

    .skill-info h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .skill-bar {
        height: 6px;
        margin-bottom: 5px;
    }

    .skill-percent {
        font-size: 14px;
    }
}

/* Very small screens */
@media screen and (max-width: 480px) {
    .skill-icon i {
        font-size: 24px;
    }

    .skill-info h3 {
        font-size: 14px;
    }

    .skill-percent {
        font-size: 12px;
    }
}

/* Projects Section Styles */
.projects-section {
    background-color: #0a0a0a;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.projects-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.projects-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4fc3f7;
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

.projects-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 40px;
}

.projects-container {
    width: 100%;
    overflow: hidden;
}

.projects-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100% !important;
}

.project-card {
    min-width: calc(25% - 30px);
    margin: 0 15px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .project-card {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 35px rgba(79, 195, 247, 0.2);
    }

    .project-card .project-image {
        filter: brightness(0.3);
        transform: scale(1.1);
    }

    .project-card .project-overlay {
        opacity: 1;
    }

    .project-card .project-title {
        transform: translateY(0);
    }

    .project-card .project-description {
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(79, 195, 247, 0.2);
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: filter 0.3s ease, transform 0.5s ease;
}

.project-card:hover .project-image {
    filter: brightness(0.3);
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.project-card:hover .project-title {
    transform: translateY(0);
}

.project-description {
    font-size: 14px;
    color: #e0e0e0;
    text-align: center;
    max-width: 100%;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.project-card:hover .project-description {
    transform: translateY(0);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(25, 25, 25, 0.7);
    border: 1px solid rgba(79, 195, 247, 0.3);
    color: #4fc3f7;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.slider-btn:hover {
    background: rgba(79, 195, 247, 0.2);
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #4fc3f7;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.8);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .project-card {
        min-width: calc(33.333% - 30px);
    }
}

@media (max-width: 768px) {
    .project-card {
        min-width: calc(50% - 30px);
    }

    .skills-list {
        flex-direction: column;
        align-items: center;
    }

    .skill-item {
        width: 100%;
        max-width: 350px;
    }

    .skills-section h2,
    .projects-section h2 {
        font-size: 32px;
    }

    .banner-section h2 {
        font-size: 28px;
    }

    .banner-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .project-card {
        min-width: calc(100% - 30px);
    }
}

.about-section {
    background-color: #0a0a0a;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4fc3f7;
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

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

.about-content {
    flex: 1;
    padding-right: 50px;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
}

.about-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #4fc3f7;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(79, 195, 247, 0.6);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4fc3f7;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

.stat-label {
    font-size: 14px;
    color: #bbbbbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    flex: 0 0 40%;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(79, 195, 247, 0.3);
    z-index: 1;
    pointer-events: none;
}

.image-pattern {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(79, 195, 247, 0.2) 0%, rgba(79, 195, 247, 0) 70%);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: 2;
    pointer-events: none;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .about-image {
        flex: none;
    }

    .image-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section h2 {
        font-size: 32px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .stat-item {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        height: 300px;
    }
}

.blog-section {
    background-color: #0a0a0a;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.blog-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.blog-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4fc3f7;
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background-color: rgba(25, 25, 25, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(79, 195, 247, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(79, 195, 247, 0.2);
    border-color: rgba(79, 195, 247, 0.3);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(79, 195, 247, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: #bbbbbb;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #4fc3f7;
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: #4fc3f7;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.blog-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: #81d4fa;
}

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

.blog-action {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid #4fc3f7;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
}

.view-all-btn:hover {
    background: rgba(79, 195, 247, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(79, 195, 247, 0.4);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 0;
    }

    .blog-section h2 {
        font-size: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-excerpt {
        font-size: 14px;
    }
}

/* Footer Section Styles */
.footer-section {
    background-color: #050505;
    position: relative;
    padding: 80px 0 30px;
    overflow: hidden;
    border-top: 1px solid rgba(79, 195, 247, 0.2);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #bbbbbb;
    margin-bottom: 25px;
}

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

.social-icon {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 50%;
    color: #4fc3f7;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(79, 195, 247, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.3);
    color: #81d4fa;
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #4fc3f7;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(79, 195, 247, 0.6);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #bbbbbb;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links ul li a::before,
.footer-services ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #4fc3f7;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #4fc3f7;
    transform: translateX(5px);
}

.footer-links ul li a:hover::before,
.footer-services ul li a:hover::before {
    transform: translateX(3px);
}

.footer-newsletter p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbbbbb;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 30px 0 0 30px;
    padding: 12px 20px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.2);
}

.newsletter-form button {
    background: linear-gradient(90deg, #4fc3f7 0%, #03a9f4 100%);
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 20px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(90deg, #03a9f4 0%, #0288d1 100%);
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
}

.footer-contact {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bbbbbb;
    font-size: 14px;
}
.contact-item a{
    text-decoration: none;
    color: #bbbbbb;
}
.contact-item a:hover{
    color: #4fc3f7;
}
.contact-item i {
    color: #4fc3f7;
    margin-right: 15px;
    font-size: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(79, 195, 247, 0.1);
}

.copyright p {
    font-size: 14px;
    color: #777777;
}

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

.footer-menu a {
    font-size: 14px;
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #4fc3f7;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle, #4fc3f7 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .copyright {
        margin-bottom: 15px;
    }

    .footer-menu {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-menu {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

html {
    scroll-behavior: smooth;
}

nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

nav ul li.dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(10, 10, 10, 0.95);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

nav ul li.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: #fff;
    padding: 12px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-content a:hover {
    background-color: rgba(79, 195, 247, 0.1);
    color: #4fc3f7;
    padding-left: 25px;
}

.dropdown-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background-color: rgba(79, 195, 247, 0.1);
}

.dropdown-content a:last-child::after {
    display: none;
}

/* Add responsiveness for mobile */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        padding: 20px;
        gap: 15px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        display: none;
    }

    nav.active ul {
        display: flex;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    nav ul li.dropdown.active .dropdown-content {
        max-height: 500px;
        padding: 10px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(79, 195, 247, 0.2);
        border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    }

    .dropdown-content a {
        padding-left: 30px;
    }

}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 5px;
    color: #4fc3f7;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover {
    background-color: rgba(79, 195, 247, 0.2);
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    header {
        padding: 15px 20px;
    }

    nav {
        margin-right: 0;
    }

    nav ul {
        position: fixed;
        top: -600%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        padding: 20px 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid rgba(79, 195, 247, 0.3);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transition: top 0.5s ease-in-out;
        z-index: 999;
        display: flex;
    }

    nav:not(.active) {
        .dropdown-content {
            display: none;
        }
    }

    nav.active ul {
        top: 0;
    }

    nav ul li {
        width: 90%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
    }

    nav ul li.dropdown {
        width: 90%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin-top: 5px;
        background-color: rgba(15, 15, 15, 0.95);

    }

    nav ul li.dropdown.active .dropdown-content {
        max-height: 500px;
        padding: 10px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(79, 195, 247, 0.2);
        border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    }

    .dropdown-content a {
        padding: 10px 20px;
    }

    .contact-btn {
        display: none;
    }
}
#project-title-2{
    font-size: 40px;
}
.project-hero {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 40px 0;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.06;
        }

        .hex-shape {
            position: absolute;
            border: 1px solid #333;
            background: transparent;
            animation: float 10s ease-in-out infinite;
        }

        .hex-1 {
            width: 120px;
            height: 120px;
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            top: 5%;
            left: 5%;
            animation-delay: 0s;
        }

        .hex-2 {
            width: 80px;
            height: 80px;
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            top: 15%;
            right: 8%;
            animation-delay: 4s;
        }

        .hex-3 {
            width: 60px;
            height: 60px;
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            bottom: 20%;
            left: 12%;
            animation-delay: 8s;
        }

        .hex-4 {
            width: 100px;
            height: 100px;
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            top: 50%;
            right: 15%;
            animation-delay: 2s;
        }

        .hex-5 {
            width: 40px;
            height: 40px;
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            bottom: 10%;
            right: 25%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.15;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 0.3;
            }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;

            z-index: 1;
            position: relative;
        }

        .project-info {
            z-index: 10;
        }

        .breadcrumb {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.2s forwards;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #fff;
        }

        .breadcrumb span {
            margin: 0 8px;
        }

        .project-category {
            display: inline-block;
            background: linear-gradient(45deg, #222, #333);
            color: #fff;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
            border: 1px solid #444;
        }

        .project-title {
            font-size: 3.2rem;
            font-weight: 300;
            color: #fff;
            margin-bottom: 25px;
            line-height: 1.1;
            opacity: 0;
            animation: fadeInUp 1s ease 0.4s forwards;
        }

        .project-description {
            font-size: 1.2rem;
            color: #bbb;
            line-height: 1.7;
            margin-bottom: 35px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .project-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }

        .detail-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .detail-label {
            color: #666;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .detail-value {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
        }

        .project-links {
            display: flex;
            gap: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease 1s forwards;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: transparent;
            color: #fff;
            text-decoration: none;
            border: 2px solid #333;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-link:hover {
            background: #fff;
            color: #000;
            transform: translateY(-2px);
        }

        .project-link.primary {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

        .project-link.primary:hover {
            background: transparent;
            color: #fff;
        }

        .project-showcase {
            position: relative;
            z-index: 10;
        }

        .project-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border-radius: 15px;
            border: 1px solid #333;
            overflow: hidden;
            position: relative;
            opacity: 0;
            animation: fadeInRight 1s ease 0.5s forwards;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #666;
            font-size: 18px;
        }

        .project-tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            opacity: 0;
            animation: fadeInRight 1s ease 0.7s forwards;
        }

        .tech-tag {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .particle {
            position: absolute;
            width: 1px;
            height: 1px;
            background: #fff;
            border-radius: 50%;
            opacity: 0;
            animation: particle-float 12s linear infinite;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            5% {
                opacity: 0.5;
            }
            95% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-90vh) translateX(40px);
                opacity: 0;
            }
        }

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

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

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .project-image {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .project-hero {
                min-height: 70vh;
                padding: 30px 0;
            }
            
            .project-title {
                font-size: 2.5rem;
            }
            
            .project-details {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .project-links {
                flex-direction: column;
                align-items: center;
            }
            
            .hex-shape {
                opacity: 0.03;
            }
        }

        @media (max-width: 480px) {
            .project-title {
                font-size: 2rem;
            }
            
            .project-description {
                font-size: 1.1rem;
            }
            
            .hero-container {
                padding: 0 15px;
            }
        }