
    .navbar {
        position: fixed; 
        top: 0;
        width: 100%;
        z-index: 1000;
        padding-left:100px; 
        padding-right:100px;
        background-color: black !important;
    }

    body {
        padding-top: 70px;
        background-color: #000; 
    }

    .navbar-nav .nav-item .nav-link {
        color: #fff !important;
        border-radius: 4px;
        margin: 0 2px;
        padding: 8px 12px !important;
        transition: all 0.3s ease;
        position: relative; 
    }

    .navbar-nav .nav-item .nav-link:hover {
        background-color: #333 !important;
        color: #fff !important;
    }

    .navbar-nav .nav-item .nav-link::after {
        content: ''; 
        position: absolute;
        bottom: 0;
        left: 50%; 
        width: 0; 
        height: 2px; 
        background-color: white; 
        transition: all 0.3s ease-out; 
        transform: translateX(-50%); 
    }

    .navbar-nav .nav-item .nav-link:hover::after {
        width: 100%; 
    }

    #anasayfa {
        background-color: #000 !important;
        color: #fff !important;
        min-height: calc(100vh - 70px); 
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    #anasayfa h1 {
        font-size: 4rem; 
        font-weight: bold; 
    }
    #anasayfa p {
        font-size: 1.5rem; 
    }

    #hakkimda {
        padding: 100px 0;
        background-color: #f8f9fa; 
    }
    #hakkimda .container {
        border: 1px solid #dee2e6; 
        border-radius: 10px; 
        padding: 30px; 
        background-color: #ffffff; 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    }
    .about-text {
        text-align: justify;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 14px;
    }
    .profile-photo img {
        max-width: 100%;
        height: 300px;
        object-fit: cover;
        border: 3px solid #001f5b;
        border-radius: 50%;
    }
    .info-box {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        height: 300px;
        margin-bottom: 15px;
    }
    .box-title {
        color: #001f5b;
        font-weight: bold;
        margin-bottom: 15px;
        font-size: 16px;
        text-align: center;
    }
    .personal-info {
        background-color: white;
        padding: 15px;
        border-radius: 8px;
        height: calc(100% - 50px);
    }
    .info-item {
        margin-bottom: 12px;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        font-size: 13px;
        display: flex;
        justify-content: space-between;
    }
    .info-item:last-child {
        border-bottom: none;
    }
    .info-item strong {
        color: #001f5b;
        font-size: 12px;
        font-weight: bold;
        margin-right: 10px;
    }
    .info-item span {
        text-align: right;
    }
    .skills-section {
        background-color: white;
        padding: 15px;
        border-radius: 8px;
        height: calc(100% - 50px);
    }
    .skill-item {
        margin-bottom: 15px;
    }
    .skill-name {
        font-size: 12px;
        font-weight: 500;
        color: #333;
        display: block;
        margin-bottom: 6px;
    }
    .skill-bar {
        background-color: #e9ecef;
        height: 8px;
        border-radius: 4px;
        overflow: hidden;
    }
    .skill-progress {
        background: linear-gradient(90deg, #001f5b 0%, #0066cc 100%);
        height: 100%;
        border-radius: 4px;
        transition: width 1s ease-in-out;
        width: 0;
    }
    .skills-section.animate .skill-progress {
        animation: fill-progress 1s ease-in-out forwards;
    }
    @keyframes fill-progress {
        from {
            width: 0;
        }
        to {
            width: var(--skill-width);
        }
    }
    .experience-block {
        margin-top: 50px;
        background-color: #f8f9fa; 
        padding: 20px 0; 
    }
    .experience-block h2 {
        text-align: center;
    }
    .experience-item {
        background-color: #fff; 
        border-left: 3px solid #001f5b; 
        padding: 20px;
        margin-bottom: 25px;
        border-radius: 8px;
        position: relative;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        margin-left: 20px; 
        margin-right: 20px; 
    }
    .experience-item h4 {
        color: #000;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .experience-item .job-title {
        font-size: 16px;
        color: #333;
        font-weight: 600;
    }
    .experience-item .job-date {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
    }
    .experience-item ul {
        margin: 0;
        padding-left: 20px;
        color: #555;
    }
    .experience-item ul li {
        margin-bottom: 5px;
        font-size: 14px;
    }

    
    #projeler {
        padding: 100px 0;
        background-color: #f8f9fa; 
    }
    #projeler .container {
        border: 1px solid #dee2e6; 
        border-radius: 10px; 
        padding: 30px; 
        background-color: #ffffff; 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    }
    #projeler h2 {
        text-align: center;
    }
    .social-icons a {
        transition: transform 0.2s, box-shadow 0.2s; 
        display: inline-block; 
    }
    .social-icons a:hover {
        transform: translateY(-3px); 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    }

    
    #club {
        padding: 100px 0;
        background-color: #f8f9fa; 
    }
    #club .container {
        border: 1px solid #dee2e6;
        border-radius: 10px;
        padding: 30px;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    #club h1, #club h2, #club p, #club ul {
        color: #333;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    #club h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 30px;
        color: #001f5b;
    }
    #club h2 {
        font-size: 1.8rem;
        color: #003366;
    }
    #club ul {
        list-style-type: disc;
        padding-left: 30px;
    }
    #club li strong {
        font-weight: bold;
        color: #001f5b;
    }
    #club .mt-4.p-3.fw-bold {
        background-color: #e3f2fd;
        border-left: 5px solid #007bff;
        font-size: 1rem;
    }

    
    #iletisim {
        padding: 100px 0;
        background-color: #f8f9fa;
        text-align: center;
    }
    #iletisim h2 {
        margin-bottom: 50px;
        color: #001f5b;
    }
    .kulup-form, .contact-form {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
    .kulüpİmg{
        text-align: center;
        margin: 20px;
    }
    .form-title {
        color: #001f5b;
        margin-bottom: 20px;
        text-align: center;
    }
    .kulup-form .form-group, .contact-form .form-group {
        margin-bottom: 15px;
    }
    .kulup-form label, .contact-form label {
        font-weight: bold;
        color: #001f5b;
    }
    .kulup-form input[type="text"], 
    .kulup-form input[type="email"], 
    .kulup-form input[type="tel"],
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-top: 5px;
    }
    .kulup-form .radio-group {
        margin: 15px 0;
    }
    .kulup-form .radio-group label {
        margin-left: 5px;
        margin-right: 15px;
        font-weight: normal;
    }
    .kulup-form button, .contact-form button {
        background-color: #001f5b;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        width: 100%;
        margin-top: auto; 
    }
    .kulup-form form, .contact-form form {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .kulup-form button:hover, .contact-form button:hover {
        background-color: #003366;
    }
    .contact-form textarea {
        height: 150px;
    }
    .contact-info-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #f0f8ff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .contact-item {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 10px;
        border-radius: 8px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .contact-item:hover {
        background-color: #e3f2fd;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .contact-item i {
        font-size: 2rem;
        color: #001f5b;
        margin-right: 15px;
    }

    .contact-item .info-text h4 {
        font-size: 1rem;
        font-weight: bold;
        color: #001f5b;
        margin: 0;
    }

    .contact-item .info-text p {
        font-size: 0.9rem;
        color: #555;
        margin: 0;
    }
    @media (max-width: 768px) {
        .navbar {
        padding-left:30px!important; 
        padding-right:30px!important;
    }
     .about-content {
            padding-right: 0;
            margin-bottom: 30px;
        }
        .profile-photo img {
            height: 250px;
        }
        .info-box {
            margin-bottom: 20px;
            height: auto;
        }
        .personal-info,
        .skills-section {
            height: auto;
        }
        .experience-item {
            padding: 15px;
        }
        .kulup-form, .contact-form {
            max-width: 100%;
        }
        #iletisim .col-md-6 {
            margin-bottom: 30px; 
        }
    }