/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 30px 0;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-right: 10px;
    font-size: 16px;
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-links a:hover {
    color: #555;
}

.location {
    display: flex;
    align-items: center;
    gap: 30px;
}

.location-text {
    text-align: right;
}

.slot-booked {
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

.add-button {
    background-color: #1a1a1a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: background-color 0.3s;
}

.add-button:hover {
    background-color: #333;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    display: flex;
    gap: 60px;
    position: relative;
    min-height: calc(100vh - 200px);
}

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subheading {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
}

/* Experience Section */
.experience-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px;
}

.experience-column {
    width: 48%;
}

.experience-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.experience-icon {
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 20px;
    color: #1a1a1a;
}

.experience-content h3 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 20px;
}

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

/* Project Section */
.project-section {
    padding: 50px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-image {
    height: 200px;
    background-color: #f0f0f0;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.project-tag {
    background-color: #f0f0f0;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #1a1a1a;
    transition: color 0.3s;
}

.project-link:hover {
    color: #555;
}

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

/* Project Filter */
.project-filter {
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Page Header */
.page-header {
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 50px 0;
}

.about-container {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 60px 0 30px;
    margin-top: 100px;
    border-top: 1px solid #eee;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-newsletter {
    grid-column: span 1;
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-newsletter {
        grid-column: span 2;
        order: -1;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-newsletter {
        grid-column: span 1;
    }
}

.footer-column h3, .footer-column h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-column a {
    color: #555;
    font-size: 15px;
    transition: color 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-links a:hover, .footer-column a:hover {
    color: #1a1a1a;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

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

.footer-social a {
    color: #333;
    font-size: 20px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #1a1a1a;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.newsletter-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.newsletter-input {
    display: flex;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
    font-size: 14px;
}

.newsletter-input button {
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-note {
    font-size: 13px;
    color: #777;
    margin-top: 15px;
}

.privacy-note a {
    color: #555;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #777;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-copyright a {
    color: #555;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}