.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 48px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #F26A1B;
    --white: #FFFFFF;
    --charcoal: #2C2C2C;
    --light-gray: #F5F5F5;
    --dark-orange: #D95C17;
    --dark-gray: #555555;
}

body {
    font-family: 'Lato', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

h2 {
    font-size: 2.2rem;
    position: relative;
    margin-bottom: 1.5rem;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--orange);
    margin-top: 0.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--orange);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-orange);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Exo 2', 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background-color: var(--dark-orange);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
header {
    background-color: var(--charcoal);
    color: var(--white);
    position: relative;
}

nav {
    padding: 20px 0;
    background-color: var(--charcoal);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 8px 0;
    background-color: rgba(44, 44, 44, 0.95);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo h1:after {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn-primary):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover:after {
    width: 100%;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--orange);
}

.nav-links .btn-primary {
    margin-left: 15px;
    color: var(--white);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    color: var(--white);
}

.hero {
    padding: 180px 0 100px;
    background-image: linear-gradient(rgba(44, 44, 44, 0.8), rgba(44, 44, 44, 0.8)), url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h2:after {
    margin: 0.5rem auto 0;
    background-color: var(--orange);
}

.hero p {
    color: var(--light-gray);
    font-size: 1.75rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.phone-number a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    margin-left: 10px;
}

.phone-number span {
    color: var(--orange);
}

/* Services Section */
.services-section, .contact-section {
    background-color: var(--white);
    text-align: center;
}

.services-section h2:after, .contact-section h2:after {
    margin: 0.5rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    border: 1px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    border: 1px solid var(--orange);
}

.service-item span.material-icons {
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-item h3 {
    margin-bottom: 15px;
    color: var(--charcoal);
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item p {
    color: var(--dark-gray);
    transition: all 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Our Projects Section */
.projects-section {
    background-color: var(--light-gray);
    text-align: center;
}

.projects-section h2:after {
    margin: 0.5rem auto 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image.loaded {
    opacity: 1;
}

.project-item:nth-child(1) .project-image {
    background-image: url('project1.png');
}

.project-item:nth-child(2) .project-image {
    background-image: url('project2.png');
}

.project-item:nth-child(3) .project-image {
    background-image: url('project3.png');
}

.project-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(242, 106, 27, 0.3), transparent);
}

.project-info {
    padding: 25px 20px;
    text-align: left;
}

.project-info h3 {
    color: var(--charcoal);
    margin-bottom: 10px;
}

.project-info p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.project-type {
    background-color: var(--orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-location {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.projects-cta {
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    text-align: center;
}

.testimonials-section h2:after {
    margin: 0.5rem auto 0;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
    padding: 0 20px;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background-color: var(--light-gray);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--light-gray);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars .material-icons {
    color: var(--orange);
    font-size: 20px;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author h4 {
    color: var(--charcoal);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background-color: var(--orange);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--dark-orange);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--orange);
    transform: scale(1.2);
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 400px;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-features li span.material-icons {
    color: var(--orange);
    margin-right: 10px;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    text-align: center;
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item span.material-icons {
    font-size: 24px;
    color: var(--orange);
    margin-right: 15px;
}

.info-item h3 {
    margin-bottom: 5px;
}

.contact-form {
    flex: 2;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--white);
    font-family: 'Lato', 'Open Sans', sans-serif;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(242, 106, 27, 0.2);
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--white);
    font-size: 1.8rem;
}

.footer-logo h2:after {
    display: none;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links h3,
.footer-areas h3,
.footer-contact h3 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li,
.footer-areas ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-areas ul li {
    color: var(--light-gray);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact span.material-icons {
    margin-right: 10px;
    color: var(--orange);
}

.footer-contact a {
    color: var(--light-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--dark-orange);
    transform: translateY(-3px);
}

/* Animation Styles */
.animate {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.4rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
        flex: none;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .testimonial-nav {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
	
	.logo h1 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0;
	}
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--charcoal);
        flex-direction: column;
        padding: 20px 0;
        transition: all 0.4s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-nav {
        gap: 15px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }
	
	.footer-logo h2 {
    color: var(--white);
    font-size: 1.25rem;
}
	
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
	
	.logo h1 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0;
	}
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .phone-number {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .phone-number a {
        font-size: 1.1rem;
        margin-left: 10px;
    }
    
    .project-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-form {
        padding: 20px 15px;
        margin: 0;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
	
	.footer-logo h2 {
    color: var(--white);
    font-size: 1.25rem;
}