/* Banner Section Styles */
.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-image {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 20px;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-box {
    max-width: 600px;
}

.content-box h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-align: left;
}

.content-box p {
    font-size: 1.2rem;
    color: #fff;
    margin: 10px 0 20px;
    text-align: left;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
}

.call-button {
    background-color: #007bff;
}

.call-button:hover {
    background-color: #0056b3;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1DA851;
}

@media (max-width: 768px) {
    .banner-image {
        min-height: 400px;
        background-size: cover;
    }

    .content-box h1 {
        font-size: 2rem;
    }

    .content-box p {
        font-size: 1rem;
    }

    .contact-button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .button-group {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .banner-image {
        min-height: 300px;
        padding: 15px;
    }

    .content-box h1 {
        font-size: 1.5rem;
    }

    .content-box p {
        font-size: 0.9rem;
        margin: 8px 0 15px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .contact-button {
        font-size: 0.8rem;
        padding: 6px 12px;
        width: 100%;
    }
}
/* About Section Styles */
.about-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.about-section .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-section .sec-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333; /* Black color for "About" */
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-section .sec-title h3 span {
    margin-left: 0.3em;
    color: #e74c3c; /* Red color for "Lomas Plywood" */
}

.about-section .sec-title .text {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-section .content-box {
    margin-top: 30px;
    padding: 0 15px;
    text-align: left;
}

.about-section .content-box .text {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-section .link-box {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.about-section .theme-btn.btn-style-one {
    background-color: #e74c3c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
}

.about-section .theme-btn.btn-style-one:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.about-section .image-box {
    margin-top: 30px;
    padding: 0 15px;
}

.about-section .image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section .image-box img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-section .content-box {
        text-align: center;
    }

    .about-section .link-box {
        justify-content: center;
    }

    .about-section .image-box {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-section .sec-title h3 {
        font-size: 2rem;
    }

    .about-section .sec-title .text {
        font-size: 1rem;
    }

    .about-section .content-box .text {
        font-size: 0.95rem;
    }

    .about-section .link-box {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .about-section .theme-btn.btn-style-one {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 0;
    }

    .about-section .sec-title h3 {
        font-size: 1.8rem;
    }

    .about-section .sec-title .text {
        font-size: 0.9rem;
    }

    .about-section .content-box .text {
        font-size: 0.9rem;
    }

    .about-section .link-box {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .about-section .theme-btn.btn-style-one {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}
/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: url('images/background/3.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.services-section .auto-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-section .sec-title.text-center {
    text-align: center;
}

.services-section .sec-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services-section .sec-title h3 span {
    margin-left: 0.3em;
    color: #e74c3c;
}

.services-section .sec-title .text {
    font-size: 1.1rem;
    color: white;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-section .service-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.services-section .service-item:hover {
    transform: translateY(-5px);
}

.services-section .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.services-section .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.services-section .image-wrapper .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(231, 76, 60, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-section .service-item:hover .image-wrapper .gradient-overlay {
    opacity: 1;
}

.services-section .caption {
    padding: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 10px 10px;
    width: 100%;
    box-sizing: border-box;
}

.services-section .caption h3 a {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin: 0;
    padding: 0;
}

.services-section .caption h3 a:hover {
    color: #e74c3c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-section .sec-title h3 {
        font-size: 2rem;
    }
    .services-section .sec-title .text {
        font-size: 1rem;
    }
    .services-section .caption h3 a {
        font-size: 1.1rem;
    }
    .services-section .service-item {
        margin-bottom: 20px;
    }
    .services-section .image-wrapper img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .services-section .caption {
        padding: 8px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-section .sec-title h3 {
        font-size: 1.8rem;
    }
    .services-section .sec-title .text {
        font-size: 0.9rem;
    }
    .services-section .caption h3 a {
        font-size: 1rem;
    }
    .services-section .image-wrapper {
        max-width: 80%;
        margin: 0 auto;
    }
    .services-section .image-wrapper img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .services-section .caption {
        padding: 6px;
        width: 80%;
        margin: 0 auto;
    }
}
/* Dealership Section Styles */
.dealership-section {
    padding: 80px 0;
    background-color: #ffffff; /* Clean white background */
    border-top: 1px solid #e0e0e0; /* Subtle divider */
    border-bottom: 1px solid #e0e0e0; /* Subtle divider */
}

.dealership-section .sec-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.dealership-section .sec-title h3 span {
    color: #e74c3c; /* Red accent for brand identity */
}

.dealership-section .sec-title .text {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dealership-section .content-box .text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
}

.dealership-section .benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dealership-section .benefits-list ul li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.dealership-section .benefits-list ul li .icon {
    color: #e74c3c; /* Red checkmark for emphasis */
    margin-right: 10px;
    font-weight: bold;
}

.dealership-section .image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dealership-section .image-box img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dealership-section .theme-btn.btn-style-one {
    background-color: #e74c3c; /* Red button for brand consistency */
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dealership-section .theme-btn.btn-style-one:hover {
    background-color: #c0392b; /* Darker red on hover */
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dealership-section .sec-title h3 {
        font-size: 2rem;
    }
    .dealership-section .sec-title .text {
        font-size: 1rem;
    }
    .dealership-section .content-box, .dealership-section .image-box {
        text-align: center;
    }
    .dealership-section .content-box .text {
        font-size: 0.95rem;
    }
    .dealership-section .benefits-list ul li {
        font-size: 0.9rem;
        text-align: left;
    }
    .dealership-section .theme-btn.btn-style-one {
        padding: 10px 20px;
    }
    .dealership-section .link-box {
        margin-bottom: 20px; /* Add gap between button and image on mobile */
    }
}

@media (max-width: 480px) {
    .dealership-section .sec-title h3 {
        font-size: 1.8rem;
    }
    .dealership-section .sec-title .text {
        font-size: 0.9rem;
    }
    .dealership-section .content-box .text {
        font-size: 0.9rem;
    }
    .dealership-section .benefits-list ul li {
        font-size: 0.85rem;
    }
    .dealership-section .link-box {
        margin-bottom: 25px; /* Increased gap for smaller screens */
    }
}
/* Leadership Section Styles */
.leadership-section {
    padding: 80px 0;
    background: url('images/background/1.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 0;
}

.leadership-section .auto-container {
    position: relative;
    z-index: 1;
}

.leadership-section .sec-title.light h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.leadership-section .sec-title.light h3 span {
    color: #e74c3c; /* Red accent for brand identity */
}

.leadership-section .sec-title.light .text {
    font-size: 1.1rem;
    color: #ddd;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-section .leader-block .inner-box h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.leadership-section .leader-block .inner-box p {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 10px;
    font-style: italic;
}

.leadership-section .leader-block .inner-box .text {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.5;
}

.leadership-section .leader-block .image-box img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-section .leader-block .image-box img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.leadership-section .theme-btn.btn-style-one {
    background-color: #e74c3c; /* Red button for brand consistency */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.leadership-section .theme-btn.btn-style-one:hover {
    background-color: #c0392b; /* Darker red on hover */
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .leadership-section .sec-title.light h3 {
        font-size: 2rem;
    }
    .leadership-section .leader-block .inner-box h4 {
        font-size: 1.3rem;
    }
    .leadership-section .leader-block {
        text-align: center;
    }
    .leadership-section .link-box {
        margin-top: 20px;
    }
}
/* Process Section Styles */
.process-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.process-section .sec-title.light h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.process-section .sec-title.light h3 span {
    color: #e74c3c;
}

.process-section .sec-title.light .text {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-section .process-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.9) 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px; /* Reduced from 20px to 15px */
}

.process-section .process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.process-section .icon-box {
    margin-bottom: 15px;
}

.process-section .icon-box svg {
    transition: transform 0.3s ease;
}

.process-section .process-card:hover .icon-box svg {
    transform: scale(1.1);
}

.process-section h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-section p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.process-section .step {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 500;
    display: block;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .process-section .process-block {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .process-section .sec-title.light h3 {
        font-size: 2rem;
    }
    .process-section .sec-title.light .text {
        font-size: 1rem;
    }
    .process-section .process-card {
        padding: 15px;
        margin-bottom: 10px; /* Further reduced from 15px to 10px */
    }
    .process-section h4 {
        font-size: 1.2rem;
    }
    .process-section p {
        font-size: 0.9rem;
    }
    .process-section .step {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .process-section .sec-title.light h3 {
        font-size: 1.8rem;
    }
    .process-section .sec-title.light .text {
        font-size: 0.9rem;
    }
    .process-section .process-card {
        padding: 10px;
        margin-bottom: -25px; /* Minimized to 8px for tighter spacing */
    }
    .process-section h4 {
        font-size: 1.1rem;
    }
    .process-section p {
        font-size: 0.85rem;
    }
}
/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 80px 0;
    background: url('images/background/1.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.why-choose-us .auto-container {
    position: relative;
    z-index: 1;
}

.why-choose-us .sec-title.light h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.why-choose-us .sec-title.light h3 span {
    color: #e74c3c;
}

.why-choose-us .sec-title.light .text {
    font-size: 1.1rem;
    color: #ddd;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.9) 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.why-choose-us .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.why-choose-us .icon-box {
    margin-bottom: 15px;
}

.why-choose-us .icon-box svg {
    transition: transform 0.3s ease;
}

.why-choose-us .feature-card:hover .icon-box svg {
    transform: scale(1.1);
}

.why-choose-us h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-us .text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .why-choose-us .feature-block {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .why-choose-us .sec-title.light h3 {
        font-size: 2rem;
    }
    .why-choose-us .sec-title.light .text {
        font-size: 1rem;
    }
    .why-choose-us .feature-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    .why-choose-us h3 {
        font-size: 1.2rem;
    }
    .why-choose-us .text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us .sec-title.light h3 {
        font-size: 1.8rem;
    }
    .why-choose-us .sec-title.light .text {
        font-size: 0.9rem;
    }
    .why-choose-us .feature-card {
        padding: 10px;
        margin-bottom: 10px;
    }
    .why-choose-us h3 {
        font-size: 1.1rem;
    }
    .why-choose-us .text {
        font-size: 0.85rem;
    }
}
/* Testimonial Section Styles */
.testimonials-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.testimonials-section .auto-container {
    max-width: 1400px; /* Wider content for consistency with other sections */
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-section .sec-title h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
}

.testimonials-section .sec-title h3 span {
    color: #e74c3c;
}

.testimonials-section .sec-title .text {
    font-size: 1.2rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.testimonial-carousel {
    margin-top: 30px;
}

.testimonial-block {
    width: 100%;
    max-width: 500px; /* Increased width */
    margin: 0 auto;
}

.testimonial-block .inner-box {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.95) 0%, rgba(230, 230, 230, 0.95) 100%);
    border: 2px solid rgba(231, 76, 60, 0.2); /* Subtle red border */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-block .inner-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-block .quote-icon {
    margin-bottom: 15px;
}

.testimonial-block .quote-icon svg {
    transition: transform 0.3s ease;
}

.testimonial-block .inner-box:hover .quote-icon svg {
    transform: scale(1.1);
}

.testimonial-block h4 {
    font-size: 1.4rem;
    color: #222222;
    margin-bottom: 12px;
    font-weight: 600;
}

.testimonial-block .text {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-block .info-box .name {
    font-size: 1.2rem;
    color: #222222;
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial-block .info-box .designation {
    font-size: 0.95rem;
    color: #555555;
}

/* Responsive Adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-carousel {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .testimonial-block {
        width: calc(50% - 10px); /* Two testimonials per row */
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section .sec-title h3 {
        font-size: 1.8rem;
    }

    .testimonials-section .sec-title .text {
        font-size: 1rem;
        max-width: 90%;
    }

    .testimonial-block {
        max-width: 400px; /* Slightly smaller for mobile */
    }

    .testimonial-block .inner-box {
        padding: 20px;
    }

    .testimonial-block h4 {
        font-size: 1.2rem;
    }

    .testimonial-block .text {
        font-size: 0.9rem;
    }

    .testimonial-block .info-box .name {
        font-size: 1.1rem;
    }

    .testimonial-block .info-box .designation {
        font-size: 0.85rem;
    }

    .testimonial-block .quote-icon svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 30px 0;
    }

    .testimonials-section .sec-title h3 {
        font-size: 1.6rem;
    }

    .testimonials-section .sec-title .text {
        font-size: 0.9rem;
    }

    .testimonial-block {
        max-width: 100%; /* Full width for very small screens */
    }

    .testimonial-block .inner-box {
        padding: 15px;
    }

    .testimonial-block h4 {
        font-size: 1.1rem;
    }

    .testimonial-block .text {
        font-size: 0.85rem;
    }

    .testimonial-block .info-box .name {
        font-size: 1rem;
    }

    .testimonial-block .info-box .designation {
        font-size: 0.8rem;
    }

    .testimonial-block .quote-icon svg {
        width: 20px;
        height: 20px;
    }
}
