/* Global Styles */
:root {
    --primary-color: #6F4E37; /* Timber Brown */
    --secondary-color: #F5F5DC; /* Beige */
    --accent-orange: #E67E22;
    --accent-blue: #2C3E50;
    --text-dark: #333;
    --text-light: #fff;
    --light-gray: #f9f9f9;
    --medium-gray: #e0e0e0;
    --dark-gray: #777;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-orange);
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-blue);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--accent-blue);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    margin-left: 5px;
}

.btn-link:hover {
    color: var(--accent-orange);
}

.section-padding {
    padding: 80px 0;
}

/* Header Styles */
header {
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
}
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #E67E22;
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li.active a::after {
    width: 100%;
}

nav ul li.active a {
    color: #E67E22;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 400px;      /* Lowered for small screens */
    max-height: 900px;      /* Prevents it from being too tall on large screens */
    margin-left: 3vw;       /* Use vw for proportional margins */
    margin-right: 3vw;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    transition: height 0.3s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.hero p {
    font-size: 1.2rem;
    max-width: 400px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 2%;
}

/* Position hero content 5% from left and bottom of the hero image */
.hero .container {
    position: absolute;
    left: 5%;
    bottom: 5%;
    top: auto;
    right: auto;
    transform: none;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;       /* Reduce height on tablets */
        min-height: 300px;
        margin-left: 0;
        margin-right: 0;
    }
    .hero .container {
        left: 5vw;
        right: 5vw;
        width: 90vw;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 45vh;       /* Even smaller on phones */
        min-height: 200px;
        margin-left: 0;
        margin-right: 0;
    }
    .hero .container {
        left: 5vw;
        right: 5vw;
        width: 90vw;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.services-preview h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

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

.service-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Featured Projects */
.featured-projects {
    padding: 80px 0;
    background-color: var(--text-light);
}

.featured-projects h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.featured-projects h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    margin-bottom: 5px;
}

.project-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Testimonials Horizontal Rotating Slider - Card Style */
.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 320px;
    gap: 24px;
}

.testimonial {
    flex: 0 0 32%;
    max-width: 32%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(191,161,106,0.10);
    padding: 32px 24px;
    margin: 0;
    opacity: 0.5;
    filter: blur(2px);
    transform: scale(0.95);
    transition:
        opacity 0.5s cubic-bezier(.77,0,.18,1),
        filter 0.5s cubic-bezier(.77,0,.18,1),
        transform 0.5s cubic-bezier(.77,0,.18,1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.04);
    pointer-events: auto;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(191,161,106,0.15);
}

.testimonial.left,
.testimonial.right {
    opacity: 0.7;
    filter: blur(2.5px);
    transform: scale(0.97);
    z-index: 1;
}

/* Testimonial Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
}

.slider-prev,
.slider-next {
    background: #fff;
    border: 2px solid #bfa16a;
    color: #bfa16a;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(191,161,106,0.08);
}

.slider-prev:hover,
.slider-next:hover {
    background: #bfa16a;
    color: #fff;
    border-color: #bfa16a;
    transform: translateY(-3px) scale(1.08);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: #e0cfa0;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #bfa16a;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .testimonial-slider {
        gap: 12px;
        min-height: 220px;
    }
    .testimonial {
        flex-basis: 90%;
        max-width: 90%;
        padding: 20px 8px;
    }
}

/* Responsive Testimonials - Always Centered on Small Screens */
@media (max-width: 700px) {
    .testimonials .container {
        padding: 0 4px;
    }
    .testimonial-slider {
        flex-direction: column;
        gap: 0;
        min-height: 0;
        max-width: 100%;
        overflow: visible;
        align-items: center;           /* Ensure centering */
        justify-content: center;       /* Ensure centering */
    }
    .testimonial {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0 0 18px 0;
        padding: 18px 8px;
        border-radius: 10px;
        font-size: 0.98rem;
        box-shadow: 0 1px 6px rgba(191,161,106,0.08);
        display: flex;
        flex-direction: column;
        align-items: center;           /* Center content inside card */
        justify-content: center;
    }
    .testimonial.left,
    .testimonial.right {
        display: none;
    }
    .testimonial.active {
        opacity: 1;
        filter: none;
        transform: scale(1);
        z-index: 2;
        box-shadow: 0 2px 12px rgba(191,161,106,0.12);
        margin-left: auto;
        margin-right: auto;
    }
    .slider-controls {
        margin-top: 18px;
        gap: 10px;
        justify-content: center;
    }
    .slider-prev,
    .slider-next {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: var(--accent-blue);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
    bottom: 0;
    left: 0;
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-col p {
    margin-bottom: 20px;
}

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

.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%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 15px;
    color: var(--accent-orange);
}

.contact-info a {
    color: var(--medium-gray);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-orange);
    color: var(--text-light);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.team-section h2 {
    margin-bottom: 15px;
}

.team-section p {
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.team-member {
    background-color: var(--text-light);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--secondary-color);
}

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

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background-color: var(--text-light);
}

.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service:last-child {
    margin-bottom: 0;
}

.service h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-features {
    margin: 20px 0 30px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--accent-orange);
    margin-right: 10px;
    margin-top: 3px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.process-section h2 {
    margin-bottom: 15px;
}

.process-section p {
    max-width: 700px;
    margin: 0 auto 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.step {
    position: relative;
    padding: 30px 20px;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
}

.step-number::before {
    counter-increment: step-counter;
    content: counter(step-counter);
}

.step h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--text-light);
}

.portfolio-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.portfolio-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.portfolio-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fffbe7;
    border: 1.5px solid #bfa16a;
    color: #bfa16a;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #bfa16a;
    color: #fff;
    border-color: #bfa16a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin-bottom: 5px;
}

.portfolio-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
    text-align: left;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-right: 20px;
    margin-top: 5px;
}

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

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form-section p {
    text-align: center;
    margin-bottom: 30px;
}

#contactForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#contactForm .form-group:last-child {
    grid-column: 1 / -1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(111, 78, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.whatsapp-alternative a {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Mission, Vision & Core Values Section */
.mission-vision-values {
    background: #f9f6f2;
    padding: 64px 0 48px 0;
    border-top: 1.5px solid #e8e2d3;
    border-bottom: 1.5px solid #e8e2d3;
}
.mission-vision-values .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.mission-vision-values h2 {
    color: #bfa16a;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}
.mission-vision-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.mission-vision-grid > div {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(191,161,106,0.08);
    padding: 32px 24px 28px 24px;
    flex: 1 1 280px;
    min-width: 260px;
    max-width: 340px;
    margin-bottom: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mission-vision-grid h3 {
    color: #bfa16a;
    font-size: 1.25rem;
    margin-bottom: 14px;
    font-family: 'Merriweather', serif;
}
.mission-vision-grid p,
.mission-vision-grid li {
    color: #4a3c28;
    font-size: 1.05rem;
    line-height: 1.7;
}
.core-values ul {
    padding-left: 18px;
    margin: 0;
}
.core-values li {
    margin-bottom: 10px;
    list-style: disc inside;
}
@media (max-width: 900px) {
    .mission-vision-grid {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .mission-vision-grid > div {
        max-width: 100%;
        min-width: 0;
        align-items: flex-start;
        text-align: left;
    }
    .mission-vision-values h2 {
        font-size: 1.3rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f9f6f2;
    padding: 64px 0 48px 0;
    border-top: 1.5px solid #e8e2d3;
    border-bottom: 1.5px solid #e8e2d3;
}
.why-choose-us .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.why-choose-us h2 {
    color: #bfa16a;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 22px;
}
.why-choose-us .intro-text {
    color: #4a3c28;
    font-size: 1.13rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.features-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.feature-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(191,161,106,0.08);
    padding: 32px 24px 28px 24px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 260px;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
    box-shadow: 0 4px 24px rgba(191,161,106,0.14);
    transform: translateY(-4px) scale(1.03);
}
.feature-icon {
    font-size: 2.2rem;
    color: #bfa16a;
    margin-bottom: 16px;
    background: #fffbe7;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px rgba(191,161,106,0.08);
}
.feature-card h3 {
    color: #4a3c28;
    font-size: 1.18rem;
    font-family: 'Merriweather', serif;
    margin-bottom: 10px;
    margin-top: 8px;
}
.feature-card p {
    color: #6d5c36;
    font-size: 1.01rem;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .features-grid {
        gap: 18px;
    }
    .feature-card {
        min-width: 180px;
        max-width: 100%;
        padding: 22px 10px 18px 10px;
    }
}
@media (max-width: 700px) {
    .why-choose-us {
        padding: 32px 0 18px 0;
    }
    .why-choose-us h2 {
        font-size: 1.2rem;
    }
    .why-choose-us .intro-text {
        font-size: 1rem;
        margin-bottom: 18px;
        padding: 0 6px;
    }
    .features-grid {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    .feature-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .service,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image,
    .about-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Responsive Navigation */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--text-light);
        width: 200px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    nav ul.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    nav {
        position: relative;
    }
    nav ul li {
        margin: 0;
        border-bottom: 1px solid var(--medium-gray);
        text-align: right;
        padding: 10px 20px;
    }
    nav ul li:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;       /* Reduce height on tablets */
        min-height: 300px;
        margin-left: 0;
        margin-right: 0;
    }
    .hero .container {
        left: 5vw;
        right: 5vw;
        width: 90vw;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 45vh;       /* Even smaller on phones */
        min-height: 200px;
        margin-left: 0;
        margin-right: 0;
    }
    .hero .container {
        left: 5vw;
        right: 5vw;
        width: 90vw;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .projects-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* Section 1 – Intro */
.services-intro1 {
    background-color: #f8f8f8;
    padding: 60px 20px;
    border-bottom: 1px solid #ddd;
}

.container1 {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-intro1 h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-intro1 p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Section 2 – Offerings */
.services-overview2 {
    background-color: #ffffff;
    padding: 60px 20px;
}

.container2 {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-overview2 h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-overview2 p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Service List */
.service-list2 {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-list2 li {
    background-color: #f0f0f0;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.service-list2 li:hover {
    background-color: #ddd;
}

.service-list2 li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
}
.service-list2 li a:hover {
    color: #e67e22;
}

/* Google Rating Section - Horizontal 3-Column Layout & Animated Progress Bar */
.google-rating-section {
    background: #f9f6f2;
    padding: 64px 0 48px 0;
    border-top: 1.5px solid #e8e2d3;
    border-bottom: 1.5px solid #e8e2d3;
}
.google-rating-section .container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(191,161,106,0.08);
    padding: 40px 32px 32px 32px;
    text-align: center;
}
.google-rating-section .section-title {
    color: #bfa16a;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 18px;
}
.google-rating-section .intro-text {
    color: #4a3c28;
    font-size: 1.08rem;
    margin-bottom: 22px;
}
.google-rating-summary {
    background: #fffbe7;
    border: 1.5px solid #ffe08a;
    border-radius: 8px;
    padding: 12px 0;
    margin: 0 auto 22px auto;
    font-size: 1.1rem;
    color: #bfa16a;
    font-weight: 600;
    max-width: 320px;
}
.google-rating-summary strong {
    color: #fbbc04;
    font-size: 1.2rem;
}
.rating-flex-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    align-items: stretch;
    margin: 28px 0 24px 0;
}
.google-rating-qr,
.google-rating-button {
    background: #fffbe7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(191,161,106,0.07);
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.google-rating-qr p,
.google-rating-button p {
    margin-bottom: 10px;
    color: #6d5c36;
    font-size: 1rem;
}
.google-rating-qr img {
    border-radius: 8px;
    border: 1.5px solid #ffe08a;
    background: #fff;
    box-shadow: 0 2px 8px rgba(191,161,106,0.07);
    width: 120px;
    height: auto;
}
.google-rating-button .btn.btn-primary {
    background: #fbbc04;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    box-shadow: 0 1px 4px rgba(251, 188, 4, 0.12);
    margin-top: 8px;
}
.google-rating-button .btn.btn-primary:hover {
    background: #e2a800;
    color: #fff;
}
.google-rating-button .fa-star {
    color: #ffd600;
    margin-right: 6px;
}
.review-progress {
    margin: 28px 0 0 0;
    text-align: left;
}
.review-progress p {
    font-size: 1rem;
    color: #4a3c28;
    margin-bottom: 8px;
    font-weight: 600;
}
.progress-bar {
    background: #e0e0e0;
    border-radius: 5px;
    height: 10px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}
.progress-fill {
    background: #4CAF50;
    height: 10px;
    border-radius: 5px;
    width: 0;
    transition: width 1.2s cubic-bezier(.77,0,.18,1);
}
.review-safety-info {
    margin-top: 18px;
    color: #7a6a4f;
    font-size: 0.97rem;
    text-align: left;
}
.review-safety-info i {
    color: #bfa16a;
    margin-right: 6px;
}
@media (max-width: 900px) {
    .rating-flex-group {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .google-rating-section .container {
        padding: 18px 6px 14px 6px;
    }
}

/* Blog Page Styles */
.blog-intro {
    padding: 60px 0 40px;
    text-align: center;
    background-color: var(--light-gray);
}

.blog-intro h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.blog-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.blog-categories {
    margin-bottom: 40px;
    text-align: center;
}

.blog-categories h3 {
    display: inline-block;
    margin-right: 15px;
    color: var(--primary-color);
}

.blog-categories ul {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.blog-categories li {
    display: inline-block;
}

.blog-categories a {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.blog-categories a:hover,
.blog-categories a.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.blog-card {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-orange);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.blog-meta .category {
    color: var(--accent-orange);
    font-weight: 600;
}

.blog-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.blog-card h3 a {
    color: inherit;
}

.blog-card p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-orange);
}

.read-more:hover i {
    transform: translateX(3px);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-card.featured .blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.newsletter-section {
    padding: 70px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

.privacy-note {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.8;
}

.popular-topics {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.popular-topics h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.topic-card {
    background-color: var(--text-light);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text-dark);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.topic-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.topic-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.topic-card p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

@media (max-width: 992px) {
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
        width: 100%;
    }
}

/* Add to assets/css/style.css */
.portfolio-pagination {
    text-align: center;
    margin: 2em 0;
}
.pagination-btn {
    background: #eee;
    border: none;
    margin: 0 2px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 4px;
}
.pagination-btn.active {
    background: #25D366;
    color: #fff;
    font-weight: bold;
}
