/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9; /* Off-white background from image */
    color: #333;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    padding: 20px 10%;
    display: flex;
    justify-content: center;
}

nav {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border: 2px solid #000;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* Organic shape */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.dot {
    color: #4ade80; /* The teal/green accent color */
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 70px;
}
.name-highlight {
    color: #3490f3; /* This is a professional "Google" blue */
    font-weight: bold; /* Optional: makes the name pop more */
}

/* Button */
.btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}
/* Social Media Icons */

.social-container {
    display: flex;             /* Enables Flexbox */
    justify-content: center;   /* Centers horizontally */
    align-items: center;       /* Centers vertically */
    gap: 30px;                /* Space between icons */
    
}

.social-icon {
    font-size: 40px;           /* Size of the icons */
    color: #333;               /* Initial dark color */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color change */
}

.social-icon:hover {
    color: #90ee90;            /* Light green on hover */
}

/* Section2 */

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 211px;
        font-family: 'Inter', sans-serif;
    font-size: 2rem;
}

/* Flexbox Container */
.projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows cards to stack on mobile */
    gap: 25px;       /* Space between cards */
    padding: 20px;
}

/* The Project Cards */
.project-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    width: 350px;
    
    /* Slightly curved edges */
    border-radius: 8px; 
    
    /* Subtle shadow to make them pop */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-5px); /* Moves up slightly on hover */
}

/* Tags Styling */
.tags {
    margin: 15px 0;
}

.tags span {
    background: #f0f0f0;
    color: #555;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 5px;
}

/* Link Styling */
.project-link {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

/* Skills Section Styling */
.skills-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Subtle contrast from the projects section */
}

.skills-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-category {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 12px; /* Matching the slight curve */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.skill-category h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #90ee90; /* That light green for consistency */
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* List styling */
.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #444;
}

/* Contact Footer Styling */
.contact-footer {
    text-align: center;
    padding: 80px 20px;
    background: #2d3436; /* Dark background for a strong finish */
    color: white;
}

.contact-footer .btn {
    background-color: #90ee90; /* Your light green theme */
    color: #2d3436;
    padding: 15px 40px;
    font-weight: bold;
    border-radius: 30px; /* Fully rounded button for contrast */
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.contact-footer .btn:hover {
    background-color: #76c776;
    transform: scale(1.05);
}