body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9; /* Pure #f7f7f7 background */
    color: #4a4a4a;
}

header {
    background-color: #003d66;
    color: #f7f7f7;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

header img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 200px;
    height: auto;
}

header nav {
    margin-top: 50px;
}

header nav a {
    color: #f7f7f7;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #003d66;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

header nav a:hover {
    background-color: #006699;
}

/* Rent to own button */
.highlight-text {
    font-size: 1.5em;
    color: #a62639;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.category {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.category img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.category h3 {
    background-color: #003d66;
    color: #f7f7f7;
    text-align: center;
    padding: 10px 0;
    margin: 0;
}

.category p {
    padding: 15px;
    text-align: center;
}

.category .slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.category .slideshow img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.category .slideshow img.active {
    opacity: 1;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slideshow-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #f7f7f7;
    border: none;
    padding: 10px;
    cursor: pointer;
    pointer-events: all;
    border-radius: 50%;
    font-size: 18px;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.slideshow-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.call-now {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #f7f7f7;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.call-now:hover {
    background-color: #218838;
}

footer {
    background-color: #003d66;
    color: #f7f7f7;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer nav {
    margin: 10px 0;
}

footer nav a {
    color: #f7f7f7;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #0073E6;
}

@media (max-width: 768px) {
    header img {
        width: 150px;
    }

    header nav a {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .category {
        width: 100%;
        max-width: 90%;
    }

    .call-now {
        font-size: 16px;
        padding: 10px 15px;
    }
}

.hidden {
    display: none;
}

.slideshow-group .slideshow:first-child {
    display: block; /* Ensure the first slideshow is always visible */
}


 .free-catalog-button {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #0073E6;
            color: #f7f7f7;
            font-size: 1.2em;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }
        .free-catalog-button:hover {
            background-color: #006699;
        }

        .toggle-slides {
            display: block;
            margin: 20px auto 0 auto; /* Center the button horizontally */
            font-size: 1.1em;
            background-color: #0073E6;
            color: #f7f7f7;
            border: none;
            border-radius: 5px;
            padding: 8px 15px;
            cursor: pointer;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .toggle-slides:hover {
            background-color: #006699;
            transform: translateY(-2px); /* Slight lift effect */
        }

/* REVIEW SLIDESHOW */
/* Center and properly contain the carousel */
#carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px auto;
  padding: 0;
  width: 100%;
  background-color: transparent;
  position: relative;
  overflow: visible;
}

/* Review Slideshow */
#review-slideshow {
  position: relative;
  width: 260px;
  height: 100px;
  overflow: visible;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper and Content Container */
#review-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

#review-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual review items */
.review {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.review.active {
  opacity: 1;
  visibility: visible;
}

/* Align Google logo and stars together */
.review-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px; /* Space between stars and text */
}

.review-logo {
  height: 1.5em; /* Match the font size of the stars */
  margin-right: 5px; /* Space between the logo and the stars */
}

.review .review-stars {
  color: orange;
  font-size: 1.5em;
}

.review .review-text {
  font-size: 1.1em;
  color: gray;
}

.review .review-author {
  font-size: 1em;
  color: gray;
  font-style: italic;
}

/* Navigation Buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: gray;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

#prev-review {
  left: -55px; /* Position left navigation button */
}

#next-review {
  right: -55px; /* Position right navigation button */
}

.carousel-arrow:hover {
  background-color: #f0f0f0;
  color: black;
}

/* END REVIEW SLIDESHOW */

/* CATALOG FORM */
/* Long Form Container */
.long-form-container {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

/* Input Fields */
.long-form input, .long-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.long-form input:focus, .long-form select:focus {
    outline: none;
    border-color: #007bff;
}

/* Submit Button */
.long-form-button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
}
.long-form-button:hover {
    background-color: #0056b3;
}
/* END CATALOG FORM */

/* Shed Catalog Image Size */

.long-form-image {
    width: 30%; /* Makes it 20% of its original size */
    max-width: 200px; /* Ensures it doesn't get too large */
    height: auto; /* Maintains aspect ratio */
    display: block;
    margin: 15px auto;
}

/* Shed Catalog Image Size */

/*tickbox email*/
.interest-hidden {
  display: none;
}


/*tickbox pretty stuff*/
.interest-form-container {
    margin-top: 10px;
    padding: 10px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.interest-form input {
    width: 90%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.interest-form input:focus {
    outline: none;
    border-color: #0073E6;
}

.interest-form button {
    background-color: #0073E6;
    color: white;
    padding: 8px 16px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.interest-form button:hover {
    background-color: #0056b3;
}





