/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #00bcd4;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    border: none;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
}

.navbar-nav li a {
    color: #ffffff !important;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-nav li a:hover {
    color: #00bcd4 !important;
}

/* Home Section */
.home-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.home-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.home-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.home-content span {
    color: #00bcd4;
}

.social-links a {
    color: #ffffff;
    font-size: 24px;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00bcd4;
}

.home-photo img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    border: 5px solid #00bcd4;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #2a2a2a;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
}

.skills {
    margin-top: 30px;
}

.skill-tags span {
    display: inline-block;
    background: rgba(0, 188, 212, 0.2);
    color: #00bcd4;
    padding: 8px 16px;
    border-radius: 5px;
    margin: 5px;
    font-size: 14px;
}

/* Coding Section */
.coding-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.profile-card {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

.profile-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.profile-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.profile-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: #2a2a2a;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.timeline-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00bcd4;
}

.timeline-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.project-card {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    /* Add margin-bottom to create gap between rows */
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-details {
    padding: 20px;
}

.project-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-details p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-primary {
    background: #00bcd4;
    border: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0097a7;
}

/* Footer */
footer {
    background: #000000;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
    margin: 0;
}