/* first section */
/* Container & Layout */
.hero-section {
    margin-top: 85px !important; /* Pushes the entire section below the fixed header */
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 991.98px) {
    .hero-section {
        margin-top: 70px !important; /* Spacing adjustment for mobile navbar height */
    }
}

/* Pill Badge */
.hero-pill-badge {
    display: inline-block;
    background-color: #e5f4e5;
    color: #00a500;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Headings */
.hero-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.hero-highlight {
    color: #0028A1; /* Main theme color */
}

.hero-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Left Image Box */
.hero-left-img-wrapper {
    width: 100%;
    height: 180px;
    background-color: #e8e6df;
    border-radius: 16px;
    overflow: hidden;
}

.hero-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.btn-hero-cta {
    background-color: #00a500 !important; 
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    display: inline-block;
}

.btn-hero-cta:hover {
    background-color: #e04826 !important;
}

.btn-hero-call {
    background-color: #ffffff !important;
    color: #1a3c40 !important;
    border: 1.5px solid #1a3c40 !important;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 8px;
    display: inline-block;
}

.btn-hero-call:hover {
    background-color: #1a3c40 !important;
    color: #ffffff !important;
}

/* Modern Tag Badges Replacement (Replaces Bullet Links) */
.hero-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.hero-tag {
    background-color: #f0f4f8;
    color: #2c3e50;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #e1e8ed;
    display: inline-flex;
    align-items: center;
}

/* Bullet List Styling & Precision Alignment (Legacy Fallback) */
.hero-footer-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.hero-footer-bullets .bullet-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 22px;
    row-gap: 8px;
}

.hero-footer-bullets span {
    font-size: 11.5px;
    font-weight: 600;
    color: #5c7373;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: -0.1px;
}

.hero-footer-bullets .green-dot {
    color: #00a500;
    font-style: normal;
    font-size: 14px;
    line-height: 1;
    margin-right: 6px;
    display: inline-block;
}

/* Right Card Container */
.hero-card-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Top Badge Overlays */
.badge-overlay {
    position: absolute;
    top: 20px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.badge-overlay-left { left: 20px; }
.badge-overlay-right { right: 20px; }

.badge-overlay strong {
    display: block;
    font-size: 14px;
    color: #0028A1;
}

.badge-overlay small {
    font-size: 9px;
    color: #888;
    font-weight: 700;
}

/* Floating Overlay Checklist Card */
.hero-checklist-sheet {
   position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 86%;
    max-width: 380px;
  /*  background: rgba(12, 35, 30, 0.78);  Semi-transparent rich dark teal */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-checklist-sheet:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}
.checklist-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.checklist-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.checklist-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
}

.checklist-list li {
    font-size: 17px;
    color: #f1f5f9;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-icon {
    color: #00e676;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.check-box {
    color: #00a500;
    font-weight: bold;
}
.checklist-sub {
    font-size: 9.5px;
    font-weight: 700;
    color: #00e676;
    background: rgba(0, 230, 118, 0.12);
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-approved {
   display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;                  /* Increased gap slightly for the larger icon */
    padding: 6px 20px;
    border: 2px solid #00a878;
    border-radius: 50px;
    background-color: transparent;
    color: #00a878;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease;
}
.badge-approved i {
    font-size: 1.35rem;       /* Increased size from 1.1rem to 1.35rem */
    font-weight: 900;          /* Made icon stroke bolder */
    color: #00a878;
    line-height: 1;
}
/* second section */
/* Stats Banner Section */
.stats-banner-section {
    background-color: #00a500 ; /* Dark teal background matching image */
    color: #ffffff;
}

.stats-banner-section .stat-col {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Vertical Divider Lines Between Columns */
.stats-banner-section .stat-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15); /* Subtle white border */
}

/* Number Styling */
.stats-banner-section .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1;
}

/* Label Styling */
.stats-banner-section .stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #cce3de; /* Soft light text */
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 767.98px) {
    .stats-banner-section .stat-col:nth-child(2)::after {
        display: none; /* Remove middle divider on 2x2 grid */
    }
    .stats-banner-section .stat-col {
        margin-bottom: 15px;
    }
    .stats-banner-section .stat-number {
        font-size: 1.75rem;
    }
}
/* Services Section Layout */
.services-section {
    background-color: #fcfcfc;
}

.badge-pill-services {
    background-color: #e5f4e5;
    color: #00a500;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.8px;
}

.services-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.services-subtitle {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

/* Service Card Component */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.card-img-wrap {
    height: 150px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.service-card .card-body {
    padding: 20px;
}

.service-tag {
    font-size: 10px;
    font-weight: 700;
    color: #ff5a36;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card .card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}

.service-card .card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-card .card-title a:hover {
    color: #0028A1;
}

.service-card .card-text {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.learn-more-link {
    font-size: 12.5px;
    font-weight: 700;
    color: #0028A1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.learn-more-link:hover {
    color: #00a500;
    gap: 8px;
}
/* Pricing Section Background */
.pricing-section {
    background-color: #0d3831;
    color: #ffffff;
}

/* Section Header Badge */
.badge-pill-pricing {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e2f1ed;
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.pricing-subtitle {
    font-size: 13.5px;
    color: #a3c4bd;
    line-height: 1.6;
}

/* Individual Pricing Card */
.pricing-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Most Popular Card Styling (Brand Green Accent) */
.pricing-card.popular-card {
    border: 1px solid #00a500;
    background-color: rgba(0, 165, 0, 0.05);
}

.popular-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00a500;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Card Content Typography */
.bedroom-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.bath-subtitle {
    font-size: 11px;
    color: #88aba3;
    display: block;
}

.price-wrap {
    margin: 20px 0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.price-subtext {
    font-size: 11px;
    color: #88aba3;
    margin-top: 4px;
}

/* Bottom Feature Pill Tag */
.feature-tag {
    display: inline-block;
    border: 1px solid rgba(0, 165, 0, 0.3);
    background-color: rgba(0, 165, 0, 0.08);
    color: #2ed573;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    line-height: 1.2;
}

/* Disclaimer & Buttons */
.pricing-disclaimer {
    font-size: 11px;
    color: #88aba3;
    line-height: 1.5;
    margin-bottom: 0;
}

.btn-pricing-outline {
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    color: #ffffff;
}

.btn-pricing-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-pricing-primary {
    background-color: #00a500;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-pricing-primary:hover {
    background-color: #008800;
    color: #ffffff;
}
/* Section Background (Soft warm beige) */
.why-us-section {
  
    color: #1a2a26;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Header Elements */
.badge-pill-why {
    background-color: #e5f4e5;
    color: #00a500;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0c231e;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.why-subtext {
    font-size: 13.5px;
    color: #556660;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Outer Container Box for Grid */
.why-grid-container {
   /* background-color: #ede9dc; */
    border: 1px solid #dcd7c8;
    border-radius: 18px;
    overflow: hidden;
}

/* Individual Grid Boxes */
.why-grid-box {
    padding: 28px 24px;
    border-right: 1px solid #dcd7c8;
    border-bottom: 1px solid #dcd7c8;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.why-grid-box:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Desktop Grid Borders (4 columns) */
@media (min-width: 992px) {
    .why-grid-box:nth-child(4n) {
        border-right: none;
    }
    .why-grid-box:nth-last-child(-n+4) {
        border-bottom: none;
    }
}

/* Tablet Grid Borders (2 columns) */
@media (max-width: 991.98px) and (min-width: 576px) {
    .why-grid-box:nth-child(2n) {
        border-right: none;
    }
    .why-grid-box:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* Mobile Grid Borders (1 column) */
@media (max-width: 575.98px) {
    .why-grid-box {
        border-right: none;
    }
    .why-grid-box:last-child {
        border-bottom: none;
    }
}

/* Box Typography & Brand Green Letter Accent */
.box-letter {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #00a500; /* Replaced orange with theme green */
    margin-bottom: 12px;
}

.box-heading {
    font-size: 14.5px;
    font-weight: 700;
    color: #0c231e;
    margin-bottom: 8px;
}

.box-desc {
    font-size: 12px;
    color: #556660;
    line-height: 1.5;
    margin-bottom: 0;
}



/* Section Container & Background */
.how-it-works-section {
    background-color: #f7f6f2; /* Soft off-white tone matching screenshot */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Badge Pill */
.badge-pill-how {
    background-color: #e5f4e5;
    color: #00a500;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Title Styling */
.how-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0c231e;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Step Circle & Line Layout */
.step-circle-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.step-circle {
    width: 44px;
    height: 44px;
    background-color: #008a00 ; 
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

/* Dashed Connector Line */
.step-line {
    flex-grow: 1;
    height: 1px;
    border-top: 2px dashed #b5c4bf;
    margin-left: 12px;
    margin-right: -12px;
}

/* Text Content Styling */
.step-heading {
    font-size: 15px;
    font-weight: 700;
    color: #0c231e;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 12.5px;
    color: #556660;
    line-height: 1.6;
    margin-bottom: 0;
    padding-right: 15px;
}
/* Section Container & Dark Green Theme Background */
.checklist-section {
    background-color: #082820; /* Dark forest green matching TRANSPARENT PRICING */
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Badge Pill */
.badge-pill-checklist {
    background-color: rgba(255, 255, 255, 0.12);
    color: #e5f4e5;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header Typography */
.checklist-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.checklist-subtext {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Individual Category Cards */
.checklist-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.checklist-card:hover {
    border-color: rgba(0, 165, 0, 0.5);
    transform: translateY(-3px);
}

.checklist-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

/* Checklist Items & Checkmarks */
.checklist-items li {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.checklist-items li:last-child {
    margin-bottom: 0;
}

.checklist-items i {
    color: #00a500; /* Theme Green Checkmark */
    font-weight: 700;
    font-size: 14px;
    margin-top: 1px;
}

/* Buttons Styling */
.btn-outline-checklist {
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-checklist:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-green-quote {
    background-color: #00a500 !important; /* Replaced orange with theme green */
    color: #ffffff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-green-quote:hover {
    background-color: #008800 !important;
}

/* Service Areas Section Background */
.service-areas-section {
    background-color: #f7f9f8;
    color: #0d3831;
}

/* Header Badge */
.badge-pill-service {
    background-color: rgba(13, 56, 49, 0.08);
    color: #0d3831;
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.8px;
}

/* Typography */
.service-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0d3831;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.service-subtitle {
    font-size: 13.5px;
    color: #557068;
    line-height: 1.6;
}

/* Suburb Pill Tags Container */
.suburb-tags-container {
    max-width: 820px;
    margin: 0 auto;
}

/* Individual Pill Tag Links */
.suburb-tag {
    background-color: #ffffff;
    color: #0d3831;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #e1e8e5;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.suburb-tag:hover {
    border-color: #00a500;
    color: #00a500;
    background-color: #ffffff;
    transform: translateY(-1px);
}

/* View All "+ 100 more suburbs" Tag Styling */
.suburb-tag-more {
    font-weight: 700;
    background-color: #e6f4ea;
    border-color: rgba(0, 165, 0, 0.3);
    color: #0d3831;
}

.suburb-tag-more:hover {
    background-color: #00a500;
    color: #ffffff;
    border-color: #00a500;
}
/* Reviews Section Background */
.reviews-section {
    background-color: #f3f0e6; /* Soft warm cream background matching screenshot */
    color: #0d3831;
}

/* Header Rating Elements */
.rating-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #0d3831;
}

.stars {
    color: #ff4d4d !important; /* Coral red star color matching screenshot */
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-subtitle {
    font-size: 11px;
    color: #667068;
    display: block;
    margin-top: 2px;
}

.btn-reviews-outline {
    background-color: transparent;
    border: 1px solid #0d3831;
    color: #0d3831;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-reviews-outline:hover {
    background-color: #0d3831;
    color: #ffffff;
}

/* Review Cards */
.review-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.review-text {
    font-size: 13px;
    color: #4a5550;
    line-height: 1.6;
    margin-bottom: 0;
}

.author-name {
    font-size: 12px;
    font-weight: 700;
    color: #0d3831;
}

.author-suburb {
    font-size: 11px;
    color: #889690;
}
/* Section Base & Padding */
.results-gallery-section {
    padding: 20px 0 !important;
    background-color: #ffffff;
}

.gallery-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d3831;
    margin-bottom: 12px !important;
}

/* Height Control on Images */
.results-swiper,
.swiper-slide,
.gallery-item {
    height: 260px !important; /* Adjust height directly here */
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
}

.gallery-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* Hover Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    color: #ffffff;
    font-size: 1.5rem;
}

/* Nav Buttons Overlay */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.nav-prev { left: 10px; }
.nav-next { right: 10px; }

/* Swiper Dots */
.results-swiper .swiper-pagination-bullet-active {
    background-color: #0073e6 !important;
}

/* VIEW ALL Button */
.btn-gallery-primary {
    background-color: #0d7ac4;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    padding: 6px 18px;
}



/* Flexible Centering for Navigation Buttons */
.gallery-nav-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important; /* Icon stroke color */
    z-index: 10 !important;
}

.gallery-nav-btn svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
}

/* Optional: Zoom Icon SVG alignment */
.zoom-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
}