/*
Theme Name: Kapri Total Services
Theme URI: https://www.kapritotalservices.com
Author: Kapri Total Services
Author URI: https://www.kapritotalservices.com
Description: A custom WordPress theme for Kapri Total Services with contact information and modern design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kapri-total-services
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #000000;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.nav-menu {
    background-color: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff0000;
}

.section {
    display: none;
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
}

.section.active {
    display: block;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

.contact-section {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.contact-section h2 {
    color: #ff0000;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #ff0000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 24px;
    color: #ff0000;
    min-width: 30px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: #666666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.contact-value a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #ff0000;
}

/* Fast Solutions Section */
.fast-solutions-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.fast-solutions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.fast-solutions-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fast-solutions-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fast-solutions-logo .company-name {
    display: flex;
    align-items: baseline;
    gap: 0;
}

.fast-solutions-logo .kapri {
    color: #ff0000;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.fast-solutions-logo .total {
    color: #000000;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.fast-solutions-logo .services {
    color: #000000;
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: -5px;
}

.fast-solutions-slogan {
    color: #999999;
    font-size: 24px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.fast-solutions-description {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.fast-solutions-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.fast-solutions-category {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fast-solutions-category-title {
    color: #ff0000;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.category-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1.5;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    background-color: #f0f0f0;
    display: block;
}

.fast-solutions-right {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.service-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.service-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.service-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 5px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    background-color: #f0f0f0;
    display: block;
}

.service-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}

.service-title {
    color: #ff0000;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.slider-arrow {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
}

.slider-arrow:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cccccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.slider-dot.active {
    background-color: #ff0000;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: #999999;
}

.fast-solutions-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    font-size: 16px;
}

.footer-icon {
    font-size: 20px;
}

@media (max-width: 968px) {
    .fast-solutions-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fast-solutions-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .nav-menu {
        padding: 15px 20px;
    }

    .nav-menu ul {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 8px 15px;
    }

    .section {
        padding: 20px 15px;
        min-height: calc(100vh - 60px);
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .logo-image {
        max-width: 280px;
    }

    .contact-section {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .contact-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        font-size: 20px;
    }

    .contact-value {
        font-size: 14px;
    }

            .fast-solutions-container {
                padding: 20px 15px;
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .fast-solutions-layout {
                gap: 25px;
                max-width: 100%;
                box-sizing: border-box;
            }

            .fast-solutions-left {
                max-width: 100%;
                box-sizing: border-box;
            }

            .fast-solutions-right {
                max-width: 100%;
                box-sizing: border-box;
                margin: 0 auto;
            }

            .fast-solutions-logo .kapri,
            .fast-solutions-logo .total {
                font-size: 32px;
            }

            .fast-solutions-logo .services {
                font-size: 14px;
            }

            .fast-solutions-slogan {
                font-size: 18px;
                margin-top: 8px;
            }

            .fast-solutions-description {
                font-size: 14px;
                line-height: 1.5;
                padding: 0;
                margin: 10px 0;
            }

            .fast-solutions-category-title {
                font-size: 16px;
                padding: 0;
                margin: 0;
            }

            .category-image-container {
                max-width: 100%;
                width: 100%;
                box-sizing: border-box;
            }

            .category-image {
                max-width: 100%;
                width: 100%;
                height: auto;
            }

            .service-item {
                padding: 0;
                max-width: 100%;
                box-sizing: border-box;
            }

            .service-image-container {
                max-width: 100%;
                width: 100%;
                box-sizing: border-box;
            }

            .service-image {
                max-width: 100%;
                width: 100%;
                height: auto;
            }

            .service-title {
                font-size: 14px;
                margin-top: 8px;
                padding: 0 10px;
                text-align: center;
            }

            .service-slider {
                max-width: 100%;
                margin: 0 auto;
            }

            .slider-nav {
                margin-top: 15px;
                gap: 10px;
                width: 100%;
                justify-content: center;
                padding: 0 10px;
                box-sizing: border-box;
            }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .fast-solutions-footer {
        padding-top: 15px;
        margin-top: 15px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .footer-item {
        font-size: 14px;
    }

    .footer-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding: 12px 15px;
    }

    .nav-menu ul {
        gap: 15px;
        flex-direction: column;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 10px 20px;
        display: block;
        text-align: center;
    }

    .section {
        padding: 15px 10px;
    }

    .logo-image {
        max-width: 240px;
    }

    .contact-section {
        padding: 20px 12px;
    }

    .contact-section h2 {
        font-size: 22px;
    }

            .fast-solutions-container {
                padding: 15px 10px;
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .fast-solutions-logo .kapri,
            .fast-solutions-logo .total {
                font-size: 28px;
            }

            .fast-solutions-slogan {
                font-size: 16px;
            }

            .fast-solutions-description {
                font-size: 13px;
                padding: 0;
            }

            .fast-solutions-category-title {
                font-size: 14px;
                padding: 0;
            }

            .service-title {
                font-size: 13px;
                padding: 0 5px;
            }

            .service-slider {
                max-width: 100%;
                margin: 0 auto;
            }

            .slider-nav {
                padding: 0 5px;
            }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .footer-item {
        font-size: 13px;
    }
}
