 
/* Pool Plan Gallery Section Layout Fix */
body{
    font-family:Figtree, Arial, Helvetica, sans-serif ;
}
.pool-plan-gallery-section{
    padding-bottom: 150px;
}
.pool-plan-gallery-img {
    max-width: 100%;
    height: auto;
    width: 100%;
    min-width: 0;
    object-fit: contain;
    margin-bottom:16px;
}
/* Footer SVG wave styles moved from inline */
.footer-wave-svg {
    width: 100%;
    height: 100px;
    display: block;
}
/* Affordable Plans Section Styles */
/* Custom Footer Styles */
/* Hero Section Styles */
.hero-section {
    position: relative;
    width: auto;
    min-height: 100vh;
    height: fit-content;
    display: flex;
    align-items: flex-start;
    padding: 35px 24px 0px;
    justify-content: center;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}
.hero-center-content {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Rubik', Arial, sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 7px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 20px;
}
.hero-heading {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 60px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.1;
    margin-top: 4px;
}
.hero-waves {
    max-width: 200px;
    margin-bottom: 18px;
}
.hero-desc {
    font-family: 'Rubik', Arial, sans-serif;
    font-size: 17px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 32px;
    background: rgba(26, 37, 57, 0.0);
    padding: 0px 24px 8px 24px;
    border-radius: 8px;
    box-shadow: none;
}
.hero-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.85);
    border-radius: 16px;
    padding: 12px 18px 12px 18px;
    box-shadow: 0 4px 16px rgba(26,37,57,0.10);
    margin-bottom: 0;
    width: 100%;
    max-width: 900px;
}

.hero-select {
    min-width: 150px;
    font-size: 17px;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    background: #fff;
    color: #1a2539;
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    box-shadow: 0 1px 4px rgba(26,37,57,0.07);
    transition: box-shadow 0.2s;
}
.hero-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #3dc6ef33;
}

.hero-search-btn {
    background: #3dc6ef;
    color: #fff;
    font-size: 19px;
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0;
    box-shadow: 0 1px 4px rgba(26,37,57,0.07);
}
.hero-search-btn:hover {
    background: #1a2539;
    color: #fff;
}
@media (max-width: 900px) {
    .hero-heading {
        font-size: 38px;
    }

    .hero-form {
        flex-direction: column;
        gap: 10px;
        padding: 12px 8px;
        max-width: 100%;
    }
    .hero-select {
        min-width: 120px;
        font-size: 16px;
        padding: 8px 10px;
    }

}
.custom-footer {
    background: #1a2539;
    color: #fff;
    font-family: 'Rubik', Arial, sans-serif;
    padding: 0;
    position: relative;
    margin-top: 0;
    border-top: none;
    flex: 1;
}
.footer-wave {
    display: none;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: transparent;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
}

.footer-links {
    flex: 1;
    min-width: 220px;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-links {
    flex: 1;
    min-width: 220px;
}
.footer-links-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #b0daed;
}
.footer-logo {
    flex: 0 0 180px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 120px;
    max-width: 160px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

}
.footer-logo img {
    max-width: 150px;
    height: auto;
}
.footer-bottom {
    background: #16203a;
    font-size: 0.95em;
    margin: 0 auto;
    padding: 0 32px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.footer-secondary-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
    margin-bottom: 8px;
}
.footer-secondary-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-secondary-links a:hover {
    color: #b0daed;
}
.footer-copyright {
    font-size: 13px;
    margin-bottom: 4px;
}
.footer-copyright a {
    color: #b0daed;
    text-decoration: underline;
}
.footer-social-accessibility{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #dedede;
}
.footer-accessibility {
    font-size: 12px;
    color: #b0daed;
}
.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}
.footer-social a {
    color: #fff;
    font-size: 18px;
    background: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.footer-social a:hover {
    color: #b0daed;
    background: #23304a;
}
.footer-social .icon-facebook:before {
    content: "\f09a";
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    display: inline-block;
}
.footer-social .icon-instagram:before {
    content: "\f16d";
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    display: inline-block;
}
.footer-social .icon-tiktok:before {
    content: "\e07b";
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    display: inline-block;
}
.footer-social .icon-youtube:before {
    content: "\f167";
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    display: inline-block;
}
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        padding: 32px 16px 0 16px;
    }
    .footer-logo {
        margin-top: 24px;
        justify-content: center;
    }
    .footer-bottom {
        padding: 0 16px 24px 16px;
    }
}
.affordable-plans-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(26, 37, 57, 0.52) 0%, rgba(26, 37, 57, 0.56) 100%), url('https://maroon-lark-115977.hostingersite.com/wp-content/uploads/2025/02/aerial-view-of-a-swimming-pool-surrounded-by-lush-2023-11-27-05-33-55-utc-scaled-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 226px 0px 190px 0px;
    z-index: 1;
}


.affordable-plans-content {
    position: relative;
    z-index: 2;
    max-width: 1248px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.affordable-plans-subtitle {
    font-family: 'Rubik', Arial, sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
}

.affordable-plans-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 55px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
}

.affordable-plans-waves {
    max-width: 200px;
    margin-bottom: 20px;
}

.affordable-plans-desc {
    font-family: 'Rubik', Arial, sans-serif;
    font-size: 17px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
}

.affordable-plans-btn {
    background: #b0daed;
    color: #1a2539;
    border: none;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: Figtree, Arial, Helvetica, sans-serif;
    font-size: 18px;
}
.affordable-plans-btn:hover {
    color: #1a2539;
    background-color: #fff;
}
/* Crystal-Clear Design Section */
.crystal-clear-section {
    width: 1248px;
    margin: 0px auto;
    background: #fff;
    padding: 190px 0 165px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.crystal-clear-content {
    width: 75%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.crystal-clear-subtitle {
    color: #1a2539;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    font-family: Rubik;
}
.crystal-clear-title {
    color: #170e0b;
    font-size: 2.2em;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Poppins', 'Rubik', Arial, sans-serif;
}
.crystal-clear-waves {
    max-width: 200px;
    margin: 0 auto 20px auto;
    display: block;
}
.crystal-clear-desc {
    color: #1a2539;
    font-size: 1.1em;
    margin: 0 auto 20px auto;
    line-height: 1.6;
    font-family: Rubik;
    font-weight: 400;
}
.crystal-clear-image {
    max-width: 1200px;
    height: auto;
    margin: 32px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(61,198,239,0.08);
}
/* Geometric Pool Background Section */
.geometric-bg-section {
    width: 100%;
    background-image: linear-gradient(rgba(26, 37, 57, 0.29) 0%, rgba(26, 37, 57, 0.48) 100%), url(https://maroon-lark-115977.hostingersite.com/wp-content/uploads/2025/02/geometric-pool-with-fire-pit-at-dusk.jpg-1-1.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.geometric-bg-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 226px 19px 190px;
}


.geometric-subtitle {
    color: #fff;
    font-size: 17px !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.04em;
    font-family: Rubik;
}
.geometric-title {
    color: #fff;
    font-size: 3.4em !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
    font-family: 'Poppins';
}
.geometric-waves {
    max-width: 200px;
    margin: 0 auto 20px auto;
    display: block;
    height: 20px;
}
.geometric-desc {
    color: #fff;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-family: 'Rubik';
}
.geometric-btn {
    background: #b0daed;
    color: #1a2539;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    font-family: Figtree, Arial, Helvetica, sans-serif;
}

.geometric-btn:hover {
    background-color: #fff;
    color: #1a2539;
}

/* Pool Plans Homepage Styles */
body {
    margin: 0;
    font-family: 'Rubik', 'Poppins', Arial, sans-serif;
    background: #f7fafd;
    color: #1a2539;
}
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a2539;
}
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}
.hero-logo {
    height: 36px;
    max-width: 150px;
    margin-left: 25px;
    margin-top: 25px;
    margin-bottom: 215px;
}
.hero h2 {
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 10px;
}
.hero h1 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 10px;
}
.hero-waves {
    max-width: 180px;
    margin: 18px auto;
    display: block;
}
.hero-content p {
    font-size: 1.1em;
    margin-bottom: 0;
}
.menu-btn {
    position: absolute;
    top: 20px;
    right: 168px;
    z-index: 4;
    background: #3dc6ef;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.menu-btn .icon-water,.icon-water {
    width: 24px;
    height: 24px;
    background: url('../images/Waves Icon 3.png') no-repeat center center;
    background-size: contain;
    display: inline-block;
}

/* Filter Section */
.filter-section {
    background: #fff;
    padding: 32px 0 16px 0;
    box-shadow: 0 2px 8px rgba(61,198,239,0.08);
}
.form-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: unset;
    margin: 0 auto;
}
.form-filter select, .form-filter > button {
    font-size: 1em;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    min-width: 160px;
    background: #fff;
    font-family: inherit;
}
.form-filter > button {
    background: #36c6f5;
    color: #fff;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
/* Pool Categories */
.pool-categories {
    padding: 95px 24px 20px;
    text-align: center;
}
.pool-categories h2 {
    font-size: 35px !important;
    font-weight: 400 !important;
}
.section-waves {
    max-width: 160px;
    margin: 30px auto 20px;
    display: block;
}
.section-desc {
    font-size: 17px;
    max-width: 850px;
    margin: 0 auto 0 auto;
    color: #1a2539;
    font-weight: 400;
    font-family: Rubik;
    text-align: center;
}
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 32px;
    margin-top: 32px;
}
.category-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(61,198,239,0.08);
    width: 220px;
    padding: 24px 16px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.2s;
}
.category-card:hover {
    box-shadow: 0 4px 24px rgba(61,198,239,0.18);
}
.category-card img {
    width: 94%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}
.category-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 18px 0 8px 0;
    color: #3dc6ef;
}
.category-card p {
    font-size: 1em;
    color: #1a2539;
    margin-bottom: 16px;
}
.category-card .btn {
    display: inline-block;
    background: #3dc6ef;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.category-card .btn:hover {
    background: #1a2539;
}
.browse-all {
    margin-top: 16px;
}
.browse-all .btn {
    background: #3dc6ef;
    color: #fff;
    padding: 10px 16px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    height: fit-content;
    justify-content: center;
    width: fit-content;
}
.btn:not(#browse-all-pools-grid .card-actions .btn):not(.features-btn):hover {
    background: #3dc6ef !important;
    color: #fff !important;
}
.card-actions {
    display:flex;
    gap:.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Features Section */
.features-section {
    background: #f7fcff;
    padding: 48px 0 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 32px auto;
    box-shadow: 0 2px 8px rgba(61,198,239,0.08);
}
.features-image-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.features-left {
    flex: 1;
    text-align: left;
}
.features-left h2 {
    font-family: "Archivo";
    font-style: normal;
    font-weight: 500;
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.015em;
    text-transform: capitalize;
    line-height: 1.5;
    color: #1e0f46;
}
.features-subtitle {
    font-size: 18px;
    color: #1e0f46;
    font-style: normal;
    margin-bottom: 0;
    font-weight: 300;
}
.features-section .fusion-title-heading {
    font-family: "Archivo";
    font-style: normal;
    font-weight: 500;
    margin: 0;
    font-size: 60px;
    letter-spacing: -0.015em;
    background-image: linear-gradient(90deg, #3dc6ef 0%, #1a2539 100%);
    line-height: 1.5;
    color: #3dc6ef;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.features-section .fusion-title-heading span {
    font-size: 28px;
    font-family: Archivo;
    font-weight: 400;
}

div.features-list {
  display: flex;
  gap: 20px;
  font-size: 1.1em;
  color: #1a2539;
}

.features-list ul {
    list-style-type: none;
}
.features-list ul li {
    margin-bottom: 5px;
    text-align: left;
    height: 28px;
}
div.features-list i {
  color: #36c6f5;
}
.features-list ul li span {
    margin-left: 25px;
    color: #1e0f46;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
}
.features-section .features-btn {
    background: linear-gradient(to top, #fff 50%, #3dc6ef 50%);
    background-size: 100% 200%;
    background-position: bottom;
    color: #1e0f46;
    border: 2px solid #3dc6ef;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 100px;
    padding: 17px 40px;
    height: fit-content;
    font-size: 18px;
    font-family: Rubik;
}
.features-check {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #3dc6ef;
    border-radius: 4px;
    margin-right: 6px;
    background: #fff;
}
.features-btn {
    background: #fff;
    color: #1e0f46;
    border: 2px solid #3dc6ef;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1em;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    width: fit-content;
}
.features-section .features-btn:hover {
    background-position: top;
    color: #fff;
    border: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 0 0 32px 0;
    text-align: center;
    max-width: 1248px;
    margin-top: 190px;
}
.testimonials-section .profile_description {
    background-color: #efefef;
    padding: 22px 27px;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    font-family: Figtree, Arial, Helvetica, sans-serif;
}
.testimonials-section h2 {
    font-size: 35px !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
    font-family: Poppins;
    color: #170e0b;
}
.testimonials-section .section-waves {
    margin: 0px auto 20px;
    max-width: 200px;
}
section.testimonials-section p {
    font-family: Rubik;
    font-size: 17px;
    width: 70%;
    margin: auto;
    color: #1a2539;
    margin-bottom: 20px;
}
#testimonialsSlider .profile_description {
    background: #efefef;
    padding: 22px 27px;
    color: rgb(23, 14, 11);
}
.awb-triangle {
    display: flex;
    overflow: hidden;
    top: 100%;
    transform: translate(0, calc(-50% - 0px));
    position: relative;
    margin: 0 73px;
}
.testimonials-section .awb-triangle::before {
    content: "";
    width: 1.25em;
    height: 1.25em;
    transform: rotate(45deg) scale(70.710678%);
    background-color: #efefef;
}
.testimonials-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    width: 33%;
    padding: 24px 16px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.2s;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-card .testimonial-image {
    width: 73px;
    height: 73px;
    border-radius: 15px;
    object-fit: cover;
}
.testimonial-card .company-name {
    font-weight: 400;
    color: #170e0b;
    font-family: Figtree, Arial, Helvetica, sans-serif;
    font-size: 17px;
}

/* Footer */
.footer {
    background: #1a2539;
    color: #fff;
    padding: 0px !important;
    text-align: center;
    border-top: none !important;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0px auto 24px auto;
    padding: 32px 32px 0 32px;
    position: relative;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #3dc6ef;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;
    transition: background 0.2s;
    align-content: center;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}
.footer-bottom .copyright-element{
    width:100%;
    display:flex;
    justify-content:end;
}

/* Offcanvas Menu */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(26,37,57,0.98);
    z-index: 100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.offcanvas.open {
    right: 0;
}
.close-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    font-size: 2.5em;
    color: #fff;
    cursor: pointer;
}
.offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}
.offcanvas-nav a {
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.offcanvas-nav a:hover {
    color: #3dc6ef;
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid, .testimonials-slider, .footer-main {
        flex-direction: column;
        gap: 24px;
    }
    .category-card, .testimonial-card {
        width: 90vw;
        max-width: 340px;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    .features-section h2, .testimonials-section h2 {
        font-size: 2em;
    }
    .features-price {
        font-size: 1.5em;
    }
    .form-filter select, .form-filter > button {
        min-width: 120px;
        font-size: 0.95em;
    }
}
@media (max-width: 480px) {
    .hero-content {
        padding: 0 12px;
    }
    .form-filter {
        gap: 8px;
    }
    .category-card, .testimonial-card {
        max-width: fit-content;
        padding: 12px 6px;
    }
    .footer-main {
        gap: 12px;
    }
}
/* Offcanvas container */
.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #32bfee; /* same blue as screenshot */
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

/* Show offcanvas */
.offcanvas.active {
  display: flex;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Logo */
.logo img {
  max-width: 180px;
  margin-bottom: 40px;
}

/* Navigation */
.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.offcanvas-nav a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Fade in effect */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.features-section {
    padding: 40px 20px;
    background-color: rgba(176, 218, 237, 0.14);
    text-align: center;
    margin-top: 75px;
    padding: 40px 60px;
    max-width: unset;
    border-radius: 10px;
}
.pool-plan-specs .d-flex {
    text-align: center;
    margin-bottom: 15px;
}
.form-multi-select-option {
    text-align: left;
}
.form-multi-select{
    width: 200px;
    height: fit-content;
}
.form-multi-select-search{
    width: inherit;
}
#offcanvasMenu.active,#offcanvasMenu.open{
    visibility: visible;
    background-color: #18182B;
}
.loader-new-sec {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-gif-img {
    position: absolute;
    z-index: 100000;
    top: 50%;
    left: 50%;
    /* width: 100%; */

    height: 73px;
    transform: translate(-50%, 0%);
}

.loader-section {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0.9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.invalid{
    border: 1px solid red !important;
}

/*scrollbar thickness */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*scrollbar Track */
::-webkit-scrollbar-track {
    background: #eaf6fb;
}

/*scrollbar Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
}
.ta_c{
    text-align: center;
}
.c_p{
    cursor: pointer;
}
.form-multi-select:has(.form-multi-select-options:empty) {
  display: none;
}

.form-multi-select-options {
    height: 150px;
    overflow: auto;
}
.form-multi-select-input-group:focus, .form-multi-select-input-group:has(:focus), .form-multi-select.show .form-multi-select-input-group{
    border-color: #dbdfe6 !important;
    box-shadow: none !important;
}
#lookupGoBtn{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgb(61, 198, 239);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 10px;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 1px 6px;
}
.awb-image-hotspots-hotspot{
    --awb-font-size: 60px;
    --awb-hotspot-text-color: #3dc6ef;
    --awb-hotspot-background-color: rgba(23, 14, 11, 0);
    --awb-hotspot-hover-text-color: #fff;
    --awb-hotspot-hover-background-color: rgba(226, 226, 226, 0);
}
.awb-image-hotspots-hotspot-1{
    --awb-pos-x:28.2%;--awb-pos-y:10.7%;
}
.awb-image-hotspots-hotspot-2{
    --awb-pos-x:47.3%;--awb-pos-y:25.4%;
}
.awb-image-hotspots-hotspot-3{
    --awb-pos-x:88.0%;--awb-pos-y:10.5%;
}
.awb-image-hotspots-hotspot-4{
    --awb-pos-x:88%;--awb-pos-y:27.2%;
}
.awb-image-hotspots-hotspot-5{
    --awb-pos-x:88%;--awb-pos-y:53.9%;
}
.awb-image-hotspots-hotspot-6{
    --awb-pos-x:44%;--awb-pos-y:65.4%;
}
.awb-image-hotspots-hotspot-7{
--awb-pos-x:64.9%;--awb-pos-y: 82.8%;
}
.headerNavElement{
    width:fit-content !important;
    display: flex;
    align-items: center;
}
.headerNavElement .headerPages{
    gap:45px;
    font-size:17px;
    list-style:none; 
    display:flex; 
    padding:0; 
    margin:0 0 0 45px;
    width:fit-content;
}
.headerNavElement .headerPages li a{
    color:white; 
    text-decoration:none;
}
.lookupPlanNumberHeaderWrapper{
    position:relative;
    display:inline-block;
    vertical-align:middle;
}
.headerSection{
    background-color:#1a2539; 
    padding:20px;
}
.headerSection .leftColumn{
    max-width:1248px; 
    margin:0 auto; 
    display:flex; 
    flex-wrap:wrap; 
    align-items:center; 
    justify-content:space-between;
}
#tcGalleryModal{
    display:none;
    z-index:100000;
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:rgba(30,40,60,0.45);
    backdrop-filter:blur(4px);
    align-items:center;
    justify-content:center;
}

#planDetailsModal .plan-modal-content > .container{
    padding: 32px 32px 24px 32px;
    max-width: unset;
}
#planDetailsModal .leftColumn{
    width: calc(100% - 342px);
}
#planDetailsModal .rightColumn{
    width: 330px;
}
#planDetailsModal .leftColumn .poolplanDesignViews,#planDetailsModal .leftColumn .poolplanDescription{
    flex:1 1 420px;
    min-width:340px;
    max-width:100%;
    background:rgba(255,255,255,0.75);
    border-radius:18px;
    box-shadow:0 2px 12px rgba(0,0,0,0.07);
    padding:18px 18px 10px 18px;
    margin-bottom: 18px;
}
#cartSidebar{
    position:fixed; 
    top:0; 
    right:0; 
    width:60vw; 
    height:100vh; 
    background:#fff; 
    box-shadow:-2px 0 16px rgba(0,0,0,0.15); 
    z-index:20000; 
    transition:right 0.3s;
}
.mx_5{
    margin:0 5%;
}
.rubik-header{
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
    font-family: "Rubik";
    font-style: normal;
    font-weight: 400;
}
.rubik-text{
    text-align: center;
    font-size: 17px;
    line-height: 25px;
    color: #fff;
    font-family: "Rubik";
    font-style: normal;
    font-weight: 400;
}
.poppin-header{
    color: #fff;
    margin-bottom: 20px;
    font-size: 3em;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.015em;
    text-transform: capitalize;
    line-height: 1.02;
}
.poppin-header-black{

}
.form-filter select {
    font-family: Figtree, Arial, Helvetica, sans-serif;
    font-size: 18px;
}
.form-filter button {
    font-family: "Figtree";
    font-size: 16px;
    font-weight: 500;
}
.all-pools-section .browseAllPools {
    margin-bottom: 1rem;
    padding: 12px 24px;
}
.all-pools-section .browseAllPools span{
    margin: 0px 13px;
}

.footer .fourth-element a {
    color: #36c6f5;
}
#poolFilter .filter-elements{
    background:#ffffff75;
    padding:10px;
    display:flex;
    flex-direction:column;
    gap:10px;
    border-radius: 10px;
}
#planDetailsSpecs i {
    color: #3dc6ef;
}

.black-blue-btn {
    position: relative !important;
    color: #3dc6ef !important;
    background: #170e0b !important;
    overflow: hidden;
    transition: color 0.35s ease !important;
}

.black-blue-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #3dc6ef;
    z-index: -1;
    transition: height 0.35s ease;
}

.black-blue-btn:hover::before {
    height: 100%;
}


.black-blue-btn:hover {
    color: #fff !important;
}

.black-blue-btn {
    position: relative;
    z-index: 1; 
}
#poolFilter .form-multi-select{
  height: 45px;
  width: 210px;
}
#poolFilter .form-multi-select .form-multi-select-input-group{
  height: 100%;
}
.btn-outline{
    background:transparent;
    border:1px solid #e2e8f0 !important;
    color:#111 !important;
}
.btn-premium{
    background:#36c6f5 !important;
    color:#fff !important;
}
.btn-premium:hover{
    background-color: #36c6f5;color:#fff
}
.builder-dashboard .left-menu{
    width:260px;
    position:relative;
}
.builder-dashboard .nav-menu{
    font-size: 3rem;
    color: #3dc6ef;
    display:none;
}
.builder-dashboard .left-menu .menu-items{
    background:transparent;
}
.builder-dashboard{
    display: flex;
    gap: 24px;
    padding: 24px;
    position: relative;
}
#download-plans-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:16px;
}
.advance .brand,.core .brand,.premium .brand {
    display: flex;
    gap: 12px;
    align-items: center;
}
#favouritePlansContainer .btn {
    padding: 5px;
}
#tcGalleryCarousel .carousel-control-prev, #tcGalleryCarousel .carousel-control-next {
    width: unset !important;
}
#tcGalleryCarousel .carousel-control-prev-icon, #tcGalleryCarousel .carousel-control-next {
    background-image: unset !important;
}
#tcGalleryCarousel .carousel-inner{
    max-width: 98%;
}
#tcGalleryCarousel .carousel-item img{
    max-width: 100%;
    max-height: 100%;
}
.form-multi-select-search{
    width: 150px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.h1, h1 {
    font-size: 2.5rem !important;
}
.h2, h2 {
    font-size: 2rem !important;
}
.h3, h3 {
    font-size: 1.75rem !important;
}
.h4, h4 {
    font-size: 1.5rem !important;
}
.h5, h5 {
    font-size: 1.25rem !important;
}
.h6, h6 {
    font-size: 1rem !important;
}
.form-multi-select-indicator:focus{
    box-shadow: unset !important;
}
.form-multi-select-selection{
    padding-right: 0px !important;
}
#poolFilter{
    margin-bottom: 110px;
}