/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #fc0505;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #333;
    padding: 20px 0;
    color: rgb(250, 3, 3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2rem;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #00f5ff;
}

/* Project Details Section */
.project-details {
    padding: 50px 0;
    background-color: white;
    text-align: center;
}

.project-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.project-info .project-text {
    flex: 1;
    text-align: left;
}

.project-info .project-image {
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.project-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.project-links {
    margin-top: 20px;
}

.project-links .btn {
    display: inline-block;
    padding: 12px 30px;
    margin-right: 15px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-links .btn:hover {
    background-color: #d82020;
    transform: scale(1.1);
}

/* Glowing Button Effect */
.glow-on-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(rgb(167, 20, 20));
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.glow-on-hover:hover:before {
    width: 0;
    height: 0;
}

.glow-on-hover:hover {
    color: #fff;
}

.glow-on-hover span {
    position: relative;
    z-index: 1;
}

/* About Project Section */
.about-project {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.about-project h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.about-project h3 {
    font-size: 20px;
    background-color: #d82020;
    color: #fff;
    margin-bottom: 15px;

}

.about-project p {
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Responsive Design */
@media (max-width: 768px) {
    .project-info {
        flex-direction: column;
        text-align: center;
    }

    .project-info .project-text {
        text-align: center;
    }

    .project-info .project-image {
        margin-bottom: 20px;
    }

    .project-links .btn {
        width: 100%;
        margin-top: 10px;
        padding: 12px;
    }
}
