:root {
    --primary: #9f9f9f;
    --primary-light: #9f9f9f;
    --accent: #728356;
    --accent-dark: #98a479;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fafafa;
    --border: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(37, 180, 30, 0.378);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 15px;
    background-color: #fff;
    font-weight: 400;
}

header {
    background-color: #9f9f9fee;
    color: black;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.01rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: inherit;
}

.logo img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
    align-self: center;
}

.logo span {
    display: inline-block;
}

ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

a {
    color: black;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

a:hover {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Active State for Menu Toggle */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: parallax 20s ease-in-out infinite;
}

.hero-bg.active {
    opacity: 1;
}



.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes parallax {
    0%, 100% {
        background-position: center 0;
    }
    50% {
        background-position: center -30px;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.learn-more {
    background-color: var(--accent);
    color: #ffffff;
    border: 2px solid var(--accent);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    animation: slideInButton 0.8s ease-out 0.2s both;
}

.what-we-do {
    background-color: #f5f7fa;
}

.what-we-do-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.what-we-do-intro p {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 1.25rem;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.what-we-do-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.what-we-do-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.what-we-do-card:nth-child(1) {
    border-color: #728356;
}

.what-we-do-card:nth-child(2) {
    border-color: #859566;
}

.what-we-do-card:nth-child(3) {
    border-color: #98a479;
}

.what-we-do-icon {
    background: linear-gradient(135deg, rgba(114, 131, 86, 0.18), rgba(83, 95, 59, 0.08));
    border-radius: 50%;
    padding: 1.25rem;
    color: #53603b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.what-we-do-card:nth-child(2) .what-we-do-icon {
    background: linear-gradient(135deg, rgba(244, 241, 241, 0.2), rgba(96, 109, 71, 0.08));
    color: #5c6a43;
}

.what-we-do-card:nth-child(3) .what-we-do-icon {
    background: linear-gradient(135deg, rgba(152, 164, 121, 0.2), rgba(110, 123, 85, 0.08));
    color: #687646;
}

.what-we-do-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.what-we-do-card h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.2px;
}

.what-we-do-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.what-we-do-cta {
    margin-top: 3rem;
    text-align: center;
}

.what-we-do-button {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent);
}

.what-we-do-button:hover {
    background-color: white;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(95, 107, 63, 0.3);
}

@keyframes slideInButton {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.learn-more:hover {
    background-color: transparent;
    color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(247, 248, 246, 0.4);
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

.about, .services, .projects, .contact {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.about-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.about-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    text-align: left;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-card.founder-note {
    border-color: #728356;
}

.about-card.vision-mission {
    border-color: #859566;
}

.about-icon {
    background: linear-gradient(135deg, rgba(114, 131, 86, 0.18), rgba(83, 95, 59, 0.08));
    border-radius: 50%;
    padding: 1.25rem;
    color: #53603b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
}

.about-card.vision-mission .about-icon {
    background: linear-gradient(135deg, rgba(244, 241, 241, 0.2), rgba(96, 109, 71, 0.08));
    color: #5c6a43;
}

.about-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.about-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.2px;
}

.about-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.founder-name {
    font-style: italic;
    color: #999;
    margin-top: 1rem !important;
    font-weight: 500;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.value-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service {
    background-color: #fff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    text-align: left;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service:nth-child(3n+1) {
    border-color: #728356;
}

.service:nth-child(3n+2) {
    border-color: #859566;
}

.service:nth-child(3n+3) {
    border-color: #98a479;
}

.service-icon {
    background: linear-gradient(135deg, rgba(114, 131, 86, 0.18), rgba(83, 95, 59, 0.08));
    border-radius: 50%;
    padding: 1.25rem;
    color: #53603b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
}

.service:nth-child(3n+1) .service-icon {
    background: linear-gradient(135deg, rgba(114, 131, 86, 0.18), rgba(83, 95, 59, 0.08));
    color: #53603b;
}

.service:nth-child(3n+2) .service-icon {
    background: linear-gradient(135deg, rgba(244, 241, 241, 0.2), rgba(96, 109, 71, 0.08));
    color: #5c6a43;
}

.service:nth-child(3n+3) .service-icon {
    background: linear-gradient(135deg, rgba(152, 164, 121, 0.2), rgba(110, 123, 85, 0.08));
    color: #687646;
}

.service-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.service h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.2px;
}

.service p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.projects-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.projects-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-button {
    background: none;
    border: none;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 20px;
    font-weight: 500;
}

.filter-button:hover, .filter-button.active {
    background-color: var(--accent);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

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

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

.project-card.hidden {
    display: none;
}

.project-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    opacity: 0;
}

.project-card-image:hover .prev,
.project-card-image:hover .next {
    opacity: 1;
}

.prev:hover, .next:hover {
    background-color: white;
}

.prev { left: 10px; }
.next { right: 10px; }

.project-card-content {
    padding: 1.5rem;
}

.project-card-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.project-card-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-line; /* This preserves line breaks */
}

.project-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.project-card-meta strong {
    color: black;
    font-weight: bold;
    margin-right: 4px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-content form {
    background-color: #fff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #728356;
    text-align: left;
}

.contact-content form:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background-color: #fff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #859566;
    text-align: left;
}

.contact-info:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.icon-wrapper {
    background: linear-gradient(135deg, rgba(114, 131, 86, 0.15), rgba(83, 95, 59, 0.05));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-text strong {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.detail-text span, .detail-text a {
    color: var(--text-light);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-text a:hover {
    color: var(--accent);
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Featured Projects Section */
.featured-projects {
    background-color: #fff;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
    cursor: pointer;
}

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

.featured-project-card:hover img {
    transform: scale(1.1);
}

.featured-project-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.featured-project-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: white;
}

.featured-project-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: pre-line;
    
    /* Animation properties */
    max-height: 0;
    opacity: 0;
    margin: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.featured-project-card:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.5rem;
    transform: translateY(0);
}

.view-all-cta {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent);
}

.view-all-btn:hover {
    background-color: white;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(95, 107, 63, 0.3);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.submit-btn {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent);
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.submit-btn:hover {
    background-color: white;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(95, 107, 63, 0.3);
}

.contact-preview {
    background-color: #f5f7fa;
    text-align: center;
}

.contact-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    text-align: left;
    align-items: center;
}

.contact-preview-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.info-item a {
    color: var(--text-light);
    font-weight: 400;
}

.info-item a:hover {
    color: var(--accent);
}

.contact-preview-cta iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

footer {
    background-color: #9f9f9fee;
    color: black;
    padding: 1rem 2rem;
    text-align: left;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: black;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-copyright p {
    color: #333;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 1rem;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .logo span {
        font-size: 1.4rem;
    }

    .menu-toggle {
        display: flex;
        margin-right: 1.5rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #9f9f9ffb;
        padding: 1rem 0;
        gap: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: none;
    }

    nav ul li a:hover {
        background-color: rgba(0,0,0,0.05);
        border-bottom: none;
    }

    .about-grid, .contact-container, .contact-content, .contact-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-preview-info {
        text-align: center;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .footer-content {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo img {
        height: 70px;
    }

    .contact-details {
        gap: 1.5rem;
    }
}
