/* Color Variables */
:root {
    --isabelline: #F2EEEB;
    --bone: #D5CABC;
    --brown: #7A3725;
    --black: #3E3A33;
    --grey: #7A7266;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--isabelline);
    color: var(--black);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--brown);
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
}

.btn:hover {
    background-color: var(--black);
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--brown);
}

.section-subtitle {
    text-align: center;
    color: var(--grey);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--isabelline); /* <<< Solid background by default */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

body.home header {
    background-color: transparent;
    box-shadow: none;
}

body.home header.scrolled {
    background-color: var(--isabelline);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: rgba(242, 238, 235, 0.95); /* match your site color */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo img {
    height: 150px; /* or even 140px if you want more impact */
    margin-bottom: 5px;
    margin-top: -10px;
}

.logo span {
    font-size: 1.4rem;
    color: var(--brown);
    margin-top: -100px; /* pull it closer */
    line-height: 1;
}

header.scrolled .logo span {
    margin-top: -130px;
    padding-bottom: 5px;
}

header.scrolled .logo img {
    height: 150px; /* shrink a bit when scrolling for elegance */
    margin-top: -10px;
}



.handwritten {
    font-family: 'Dancing Script', cursive; /* Example: looks like handwritten! */
    font-style: normal;
    font-weight: 400;
    font-size: 1.2em; /* slightly bigger */
}



nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 20px;
    margin-left: 50px;
    margin-right: -20px;
}

nav ul li a {
    position: relative;
    padding: 5px 0;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1rem;
    color: white;
}

header.scrolled nav ul li a {
    color: var(--black); /* <<< or var(--brown) if you prefer the brown */
}


nav ul li a.active {
    color: var(--brown);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brown);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 0;
    padding-top: 150px;
    z-index: 1;
}

/* New: Video background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* New: Dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.1)); /* darker overlay */
    z-index: -1;
}



.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content .italic {
    font-style: italic;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn {
    animation: fadeIn 1s ease 0.6s both;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Featured Projects */
.featured {
    padding: 100px 0;
    background-color: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.featured-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-img {
    height: 250px;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-img img {
    transform: scale(1.05);
}

.featured-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-content h3 {
    margin-bottom: 15px;
}

.featured-content p {
    margin-bottom: 20px;
    color: var(--grey);
}

.featured-content .btn {
    width: auto; /* <<< force it back to natural size */
    align-self: flex-start; /* <<< make it stay at start */
    margin-top: 20px; /* <<< small spacing if needed */
}


/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.about-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-images img:first-child {
    margin-top: 40px;
}

/* Services Highlights */
.services-highlights {
    padding: 100px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--grey);
}




/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background-color: var(--bone);
    color: var(--black);
    margin-top: 100px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background-color: white;
}

.values-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.values-image {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.values-image:hover img {
    transform: scale(1.05);
}

.values-text {
    flex: 1;
}

.values-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.values-text p {
    margin-bottom: 1.5rem;
    color: var(--grey);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .values-content {
        flex-direction: column;
    }
    
    .values-image {
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .values-text h3 {
        font-size: 1.5rem;
    }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background-color: white;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Our Approach Grid */
.our-approach {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.approach-card {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    font-size: 40px;
    color: var(--brown);
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.approach-card p {
    color: var(--grey);
}

/* Team Preview Section */
.team-preview {
    padding: 100px 0;
    background-color: white;
}

.team-preview-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.team-text {
    flex: 1;
}

.team-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.team-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-images img:first-child {
    margin-top: 40px;
}

/* Team Grid Section */
.team-grid-section {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.social-links {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .social-links {
    opacity: 1;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin: 0 5px;
    color: var(--black);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--brown);
    color: white;
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--black);
}

.member-info .position {
    color: var(--brown);
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info .bio {
    color: var(--grey);
    line-height: 1.6;
}

/* Team Philosophy Section */
.team-philosophy {
    padding: 100px 0;
    background-color: white;
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.philosophy-text {
    flex: 1;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Services Intro */
.services-intro {
    padding: 100px 0;
    background-color: white;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.intro-text p {
    margin-bottom: 1.5rem;
    color: var(--grey);
}

.intro-image {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* Sector Specializations */
.sectors-section {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sector-card {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sector-icon {
    font-size: 40px;
    color: var(--brown);
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.sector-card p {
    color: var(--grey);
    font-size: 0.95rem;
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background-color: white;
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.approach-image {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.approach-image:hover img {
    transform: scale(1.05);
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.approach-text p {
    margin-bottom: 1.5rem;
    color: var(--grey);
}

.btn-link {
    color: var(--brown);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--black);
}

.btn-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    background-color: white;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--black);
}

.process-step ul {
    list-style: none;
}

.process-step li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--grey);
}

.process-step li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brown);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .intro-content,
    .approach-content {
        flex-direction: column;
    }
    
    .intro-image,
    .approach-image {
        margin-top: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-text h2,
    .approach-text h2 {
        font-size: 1.8rem;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.service-card {
    display: flex;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    flex: 1;
    overflow: hidden;
    width: 100%;
  height: 300px;
  object-fit: contain;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.service-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 10px;
    color: var(--grey);
    list-style-type: disc;
}

/* Our Process Section */
.our-process {
    padding: 100px 0;
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--bone);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    font-weight: bold;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.process-step p {
    color: var(--grey);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--brown);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.cta-section .btn {
    background-color: white;
    color: var(--brown);
}

.cta-section .btn:hover {
    background-color: var(--black);
    color: white;
}

/* Projects Filter */
.projects-filter {
    padding: 30px 0;
    background-color: var(--isabelline);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--brown);
    background-color: rgba(122, 55, 37, 0.1);
}

/* Projects Grid Section */
.projects-grid-section {
    padding: 50px 0 100px;
    background-color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(122, 55, 37, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-overlay p {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.project-item:hover .project-overlay h3,
.project-item:hover .project-overlay p {
    transform: translateY(0);
}




/* Sustainability Commitment Section */
.commitment-section {
    padding: 100px 0;
    background-color: white;
}

.commitment-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.commitment-text {
    flex: 1;
}

.commitment-image {
    flex: 1;
}

.commitment-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.commitment-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.commitment-text p {
    margin-bottom: 1.5rem;
    color: var(--grey);
}

.commitment-text blockquote {
    font-style: italic;
    padding: 20px;
    border-left: 3px solid var(--brown);
    background-color: var(--isabelline);
    margin: 30px 0;
    color: var(--black);
}

/* Sustainability Practices */
.sustainability-practices {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.practice-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.practice-card:hover {
    transform: translateY(-10px);
}

.practice-icon {
    font-size: 40px;
    color: var(--brown);
    margin-bottom: 20px;
}

.practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.practice-card ul {
    list-style: none;
}

.practice-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--grey);
}

.practice-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brown);
}

/* Key Principles Section */
.principles-section {
    padding: 100px 0;
    background-color: white;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--isabelline);
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.principle:hover {
    transform: translateY(-10px);
}

.principle i {
    font-size: 40px;
    color: var(--brown);
    margin-bottom: 20px;
}

.principle h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.principle p {
    color: var(--grey);
    font-size: 0.95rem;
}

/* Sustainable Projects Section */
.sustainable-projects {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.project-info p {
    margin-bottom: 20px;
}

/* Sustainability CTA Section */
.sustainability-cta {
    padding: 100px 0;
    background-color: var(--brown);
    color: white;
    text-align: center;
}

.sustainability-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sustainability-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.sustainability-cta .btn-light {
    background-color: white;
    color: var(--brown);
}

.sustainability-cta .btn-light:hover {
    background-color: var(--black);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .commitment-content {
        flex-direction: column;
    }
    
    .commitment-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .projects-showcase {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .sustainability-cta h2 {
        font-size: 2rem;
    }
    
    .commitment-text h2,
    .practice-card h3,
    .principle h3 {
        font-size: 1.5rem;
    }
}

/* Sustainability Intro */
.sustainability-intro {
    padding: 100px 0;
    background-color: white;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sustainability Practices */
.sustainability-practices {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.practice-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.practice-card:hover {
    transform: translateY(-10px);
}

.practice-icon {
    font-size: 40px;
    color: var(--brown);
    margin-bottom: 20px;
}

.practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.practice-card ul {
    list-style: none;
}

.practice-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--grey);
}

.practice-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brown);
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background-color: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    justify-items: center;
    align-items: center;
}

.certification {
    text-align: center;
}

.certification img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.certification:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.certification p {
    color: var(--grey);
}

/* Sustainable Projects */
.sustainable-projects {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.projects-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.project-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.project-info p {
    margin-bottom: 20px;
}

/* Clients Showcase */
.clients-showcase {
    padding: 100px 0;
    background-color: white;
}

.clients-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partnerships */
.partnerships {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.partnerships-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.partnerships-text {
    flex: 1;
}

.partnerships-logos {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}




/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--black);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    color: var(--brown);
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--bone);
    background-color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
    border-radius: 5px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brown);
}

/* Map Section */
.map-section {
    padding: 0 0 100px;
    background-color: var(--isabelline);
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */

:root {
    --footer-bg: #e8e1db; /* Soft warm beige, a little darker */
  }
footer {
    background-color:var(--footer-bg);
    color: var(--black);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo {
    height: 100px; /* or even 150px */
    margin-bottom: 20px;
}

.footer-col:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}


.footer-col h3 {
    color: var(--brown);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a,
.footer-col address a {
    color: var(--grey);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--brown);
}

.footer-col address {
    font-style: normal;
    line-height: 1.6;
}

.footer-col a {
    color: var(--bone);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--brown);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background-color: var(--brown);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--bone);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-img {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .about-content,
    .story-content,
    .philosophy-content,
    .partnerships-content,
    .contact-grid,
    .intro-content {
        flex-direction: column;
    }
    
    .about-images,
    .team-images {
        margin-top: 40px;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
    }
    

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--isabelline);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .page-hero {
        padding: 150px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }

    .clients-slider {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero {
        margin-top: 70px;
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }
}



.testimonials {
    padding: 100px 0;
    background-color: var(--isabelline);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background: var(--isabelline);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from center to flex-start */
    align-items: center;
    text-align: center;
    min-height: 650px;
    position: relative;
}

.short-testimonial .testimonial-content {
    position: absolute;
    bottom: 220px; /* Adjust this value to move content up/down */
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .short-testimonial .testimonial-content {
        position: static;
        transform: none;
        bottom: auto;
        width: 100%;
    }
}


.testimonial-slide blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--black);
    margin: 0 0 25px;
    position: relative;
}

.testimonial-slide blockquote:before,
.testimonial-slide blockquote:after {
    content: '"';
    font-size: 60px;
    color: var(--bone);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
}

.testimonial-slide blockquote:before {
    top: -30px;
    left: -10px;
}

.testimonial-slide blockquote:after {
    bottom: -30px;
    right: -10px;
}

.client-info {
    text-align: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-top: 10px;
}

.client-info p {
    font-size: 0.9rem;
    color: var(--grey);
}

/* Slick Arrows */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 2;
}

.slick-prev:before, .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 30px;
    color: var(--brown);
}

.slick-prev:before {
    content: '\f104'; /* Left arrow */
}

.slick-next:before {
    content: '\f105'; /* Right arrow */
}

/* Slick Dots */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--brown);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--brown);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slide {
        padding: 30px 15px;
        min-height: 400px;
    }

    .testimonial-slide blockquote {
        font-size: 1rem;
    }

    .slick-prev, .slick-next {
        display: none !important;
    }
}
