/* Global Styles */
:root {
    --primary-color: #f26522;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-gray: #fef0e9;
    --white: #fef6f2;
    --accent-orange: #ff8a50;
    --light-orange: #fef1eb;
    --deep-orange: #e55a1c;
    --orange-gradient: linear-gradient(135deg, #f26522, #ff8a50);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fef1eb;
}

/* Header & Navigation */
header {
    background-color: #fef1eb;
    box-shadow: 0 2px 5px rgba(242, 101, 34, 0.15);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid rgba(242, 101, 34, 0.2);
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(242, 101, 34, 0.2);
}

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

.nav-links li a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.orange-text {
    color: var(--primary-color);
    font-weight: 600;
}

.foundation-text {
    margin: 1.5rem 0;
    color: var(--white);
}

.sliding-words {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.values-row {
    margin-top: 0.5rem;
}

.slide-word {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideWord 0.5s forwards;
    animation-delay: var(--word-delay);
}

/* Foundation words in orange */
.sliding-words:first-child .slide-word {
    color: var(--primary-color);
    font-weight: 600;
}

.slide-word.value {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
    position: relative;
    padding: 0 0.8rem;
}

.slide-word.value:not(:last-child):after {
    content: "•";
    position: absolute;
    right: -0.3rem;
    color: var(--white);
}

@keyframes slideWord {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide right animation */
.slide-right {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideRight 1.2s forwards;
    animation-delay: 0.3s;
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-button {
    display: inline-block;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #e55a1c, #f26522);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(242, 101, 34, 0.4);
}

.button-group {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.quote-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.quote-button:hover {
    background-color: rgba(242, 101, 34, 0.3);
    border-color: var(--accent-orange);
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 2.5rem;
    background: #fef6f2;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-color);
    min-width: 200px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: #fef0e9;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    color: var(--primary-color);
}

/* Services Preview */
.services-preview {
    background-color: #fef1eb;
    text-align: center;
    padding: 6rem 2rem;
    margin: 6rem 0;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.service-card {
    background: #fef6f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    color: #666;
    padding: 0 1.5rem;
}

/* Why Choose Us - Home Page */
.why-choose-us-home {
    background-color: #fef1eb;
    padding: 6rem 2rem;
    margin: 6rem 0 0;
}

.why-choose-us-home .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us-home h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.choose-us-item {
    background: #fef6f2;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.choose-us-item:hover {
    transform: translateY(-5px);
}

.choose-us-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: #fef0e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.choose-us-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.choose-us-item p {
    color: #666;
}

/* Mission Preview Section */
.mission-preview {
    padding: 6rem 2rem;
    background-color: #fef1eb;
    margin: 6rem 0;
}

.mission-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    flex: 1;
    max-width: 500px;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.mission-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-statement {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.mission-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-button {
    display: inline-block;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
}

.mission-button:hover {
    background: linear-gradient(135deg, #e55a1c, #f26522);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(242, 101, 34, 0.4);
}

/* Slide-in animation */
.slide-in {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideIn 1s forwards;
    animation-play-state: paused;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer */
footer {
    background-color: #fef1eb;
    color: #f26522;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info h3,
.footer-links h3 {
    margin-bottom: 1rem;
    color: #f26522;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #f26522;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #f26522;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #f26522;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #e55a1c;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 101, 34, 0.2);
    color: #f26522;
}

/* Services Page Styles */
.services-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://www.venkcon.co.za/images/25.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}



.services-hero {
    padding: 2rem;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-list {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    background: #fef6f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.service-item:hover {
    transform: translateY(-5px);
}

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

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-content ul li {
    padding: 0.5rem 1rem;
    background: #fef1eb;
    border-radius: 5px;
    color: var(--secondary-color);
    border-left: 3px solid var(--primary-color);
}

.service-content ul li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.cta-section {
    background-color: #fef1eb;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.cta-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #666;
}

.quotation-text {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(242, 101, 34, 0.1);
    border-radius: 5px;
    display: inline-block;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://dbnbuilders.co.za/wp-content/uploads/2014/08/4_DBN_Builders_Renovators.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}



.contact-hero {
    padding: 2rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero .sliding-tagline {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-hero .slide-word {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideWord 0.5s forwards;
    animation-delay: var(--word-delay);
}

.contact-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: #fef6f2;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border-top: 3px solid var(--primary-color);
}

.contact-details {
    padding: 2rem;
}

.contact-details h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
    background: #fef0e9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
}

.map {
    width: 100%;
    height: 300px;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.contact-form-container {
    background: #fef6f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-color);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-button {
    background: var(--orange-gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, #e55a1c, #f26522);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(242, 101, 34, 0.4);
}

/* About Page Styles */
.about-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}



.about-hero {
    padding: 2rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero .sliding-tagline {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.about-hero .slide-word {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideWord 0.5s forwards;
    animation-delay: var(--word-delay);
}

.about-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.company-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.company-overview h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.company-overview p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: #fef6f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--secondary-color);
    font-weight: 500;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission, .vision {
    background: #fef6f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.mission i, .vision i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission h2, .vision h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission p, .vision p {
    color: #666;
}

.values-section {
    margin-bottom: 4rem;
    text-align: center;
}

.values-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.value-item {
    background: #fef6f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 2rem;
    background-color: #fef0e9;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.testimonial:hover {
    transform: translateY(-3px);
}

.testimonial-content {
    margin-bottom: 1rem;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--secondary-color);
    font-size: 1rem;
}

.testimonial-author p {
    color: #777;
    font-size: 0.85rem;
}

/* Why Choose Us */
.why-choose-us {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-us h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature {
    background: #fef6f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
}

/* Projects Page Styles */
.projects-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}



.projects-hero {
    padding: 2rem;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sliding-tagline {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.projects-hero .slide-word {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideWord 0.5s forwards;
    animation-delay: var(--word-delay);
}

.projects-filter {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 3px 8px rgba(242, 101, 34, 0.3);
}

.projects-grid {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #fef6f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.project-card:hover {
    transform: translateY(-5px);
}

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

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #666;
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    justify-content: space-between;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-details i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-item img {
        height: 300px;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-container {
        flex-direction: column;
    }
    
    .mission-content {
        text-align: center;
    }
    
    .mission-image {
        margin-bottom: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .projects-hero h1 {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
} 