@import url(https://db.onlinewebfonts.com/c/c373d9005cc5dfa6115be09d6d1a6dc9?family=Rockwell+Nova+W07+Extra+Bold);

@font-face {
    font-family: "Rockwell Nova W07 Extra Bold";
    src: url("https://db.onlinewebfonts.com/t/c373d9005cc5dfa6115be09d6d1a6dc9.eot");
    src: url("https://db.onlinewebfonts.com/t/c373d9005cc5dfa6115be09d6d1a6dc9.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/c373d9005cc5dfa6115be09d6d1a6dc9.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/c373d9005cc5dfa6115be09d6d1a6dc9.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/c373d9005cc5dfa6115be09d6d1a6dc9.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/c373d9005cc5dfa6115be09d6d1a6dc9.svg#Rockwell Nova W07 Extra Bold")format("svg");
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--paragraph-font-size);
    color: var(--text-color);
    background: url('../images/hero_image.jpg') no-repeat center top;
    background-size: 130% auto;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    height: auto;
    overflow: visible;
}

html {
    height: auto;
    /* Ensure the body has height */
    overflow: visible;
    /* Allow visible overflow */
}

/* ---------- Comparison Table ---------- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 1rem;
    /* bump size a bit */
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    /* room to breathe */
    text-align: left;
    border: 1px solid #e2e8f0;
    /* soft subtle grid */
}

.comparison-table thead th {
    background: #2d3748;
    /* dark slate */
    color: #fff;
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f7fafc;
    /* light gray zebra striping */
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    /* bold feature column */
}

a {
    /* color: var(--link-color);*/
    padding: 5px;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--link-hover-color);
}

a:visited {
    color: var(--link-visited);
}


form button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    background-color: var(--button-color);
    color: var(--foreground-color);
    transition: background-color 0.3s;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

form button a:hover {
    background-color: var(--button-hover-color);
}

#contact-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    /* Center the form */
    padding: 20px;
    background-color: var(--foreground-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

#contact-form h2 {
    font-family: 'Rockwell Nova Bold';
    font-size: var(--heading-font-size);
    color: var(--heading-text-color);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
}

#contact-form .form-group {
    margin-bottom: 15px;
}

#contact-form label {
    display: block;
    font-size: var(--paragraph-font-size);
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

#contact-form input,
#contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    font-size: clamp(.7rem, 1.2vw, 1rem);
    color: var(--text-color);
    background-color: var(--background-color);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0px 0px 5px rgba(69, 90, 100, 0.5);
    outline: none;
}

#contact-form textarea {
    resize: vertical;
    /* Allow vertical resizing */
}

#contact-form .btn-submit {
    display: block;
    background-color: var(--button-color);
    color: var(--foreground-color);
    font-size: var(--paragraph-font-size);
    font-family: var(--font-family);
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin: 20px auto;
    /* Center horizontally with auto margin */

}

#contact-form .btn-submit:hover {
    background-color: var(--button-hover-color);
    box-shadow: var(--box-shadow);
}

/* Style the issue-card container */
.issue-card {
    width: 95%;
    /* Take up 85% of the container width */
    margin: 0 auto;
    /* Center horizontally and add vertical spacing */
    padding: 0px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--foreground-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* Center align the text and image */
    box-sizing: border-box;
}

.issue-card * {
    box-sizing: border-box;
    margin: 0 auto;
}

.issue-card img {
    width: clamp(100px, 15vw, 200px);
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

/* Style the heading */
.issue-card h2 {
    font-size: var(--heading-font-size);
    margin-top: 10px;
    margin-bottom: 10px;
    color: #333;
    /* Set text color */
}

/* Style the paragraph */
.issue-card p {
    font-size: (--paragraph-font-size);
    color: #666;
    /* Lighter text color */
    margin-bottom: 10px;
}

#company-logo {
    width: clamp(250px, calc(18vw + 40px), 450px);
    height: auto;
    /* Maintain aspect ratio */
}

#container-content {
    border-radius: var(--border-radius);
}

.content-container {
    padding-top: 100px;
    max-width: 65%;
    /* Set a maximum width for your content */
    margin: 0 auto;
    /* Center the container */
    z-index: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.content-container h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 20px;
    margin-right: 20px;
    font-family: 'Rockwell Nova Bold';
    text-align: center;
    text-shadow: var(--text-shadow);
}

.content-container h2 {
    font-size: var(--heading-font-size);
    font-family: 'Rockwell Nova Bold';
    text-shadow: var(--text-shadow);
}

.content-container h3 {
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    font-family: 'Rockwell Nova Bold';
    text-align: center;
    text-shadow: var(--text-shadow);
}

.content-container a {
    display: inline-block;
    /* Make it behave like a button */
    /*    padding: 10px 20px;    /* Add inner spacing */
    border-radius: var(--border-radius);
    /* Rounded corners */
    background-color: var(--button-color);
    /* Use your defined button color */
    color: var(--foreground-color);
    /* Text color */
    text-align: center;
    /* Center text within the button */
    text-decoration: none;
    /* Remove underline */
    /*    box-shadow: var(--box-shadow);    /* Add shadow for depth */
    /*    transition: background-color 0.3s, box-shadow 0.3s;    /* Smooth transitions */
}

.content-container a:hover {
    background-color: var(--button-hover-color);
    /* Change on hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    /* Enhance shadow on hover */
    color: #fff;
    /* Ensure readability */
}

.content-container ul li::before {
    content: '';
    list-style: none;
    margin: 0;
    padding: 0;
    background: url('../images/paw_print_blue.png') no-repeat;
    background-size: 15px 15px;
    /* Adjust size for a small bullet */
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 9;
    /* Aligns the bullet with the first line */
}

.confirmed ul li::before {
    content: '';
    list-style: none;
    margin: 0;
    padding: 0;
    background: '';
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 0;
    /* Aligns the bullet with the first line */
}

/* Hero Section Without Background */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 125%;
    justify-content: center;
    text-align: center;
    height: 100vh;
    /* Full height of the viewport */
    color: var(--foreground-color);
    z-index: 1;
    /* Keep it above the background */
    padding: 50px;
}

#hero-tagline {
    text-shadow: var(--text-shadow);
    line-height: 120%;
    font-family: 'Rockwell Nova Bold';
    color: var(--heading-text-color);
    /* Optional: Define text color */
}

#hero-tagline sup {
    font-size: 0.50em;
    /* Adjust size to make it proportionate */
    margin-left: -0.15em;
    /* Remove unwanted gap (adjust as needed) */
    margin-top: -2.5em;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    padding: 20px;
    align-content: center;
}

.hero .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    letter-spacing: 4px;
    padding: auto;
}

.hero .cta-buttons a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    background-color: var(--button-color);
    color: var(--foreground-color);
    transition: background-color 0.3s;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero .cta-buttons a:hover {
    background-color: var(--button-hover-color);
}

#cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 4px;
    padding-bottom: 20px;
}

/* Section Styles */
section {
    padding: 20px;
    background-color: var(--foreground-color);
    box-shadow: var(--box-shadow);
    border-bottom: 1px solid var(--border-color);
}

section:nth-child(even) {
    background-color: var(--foreground-color);
}

h2 {
    font-size: var(--heading-font-size);
    text-align: center;
}



.reg {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Horizontally center items */
    width: 100%;
    padding: 1vw;
    background-color: var(--foreground-color);
    border-radius: var(--border-radius);
}

.reg a {
    display: block;
    /* Treat <a> as a block element */
    margin: 0 auto;
    /* Centers the block element horizontally */
    text-align: center;
    /* Centers text inside the <a> tag */
    letter-spacing: 4px;
    width: fit-content;
    /* Optional: Shrinks <a> to content size */
}

.reg ul {
    list-style: none;
    /* Remove default bullets */
    padding: clamp(10px, 2vw, 20px);
    max-width: 100%;
}

.reg ul li {
    position: relative;
    align-items: center;
    padding-left: 20px;
    /* Space for the bullet image */
    width: 100%;
}

.reg p {
    padding: 2vw;
}

.reg img {
    display: block;
    /* Treat <a> as a block element */
    margin: 0 auto;
    /* Centers the block element horizontally */
    text-align: center;
}

.reg div {
    margin: clamp(10px, 2vw, 20px);
}

.faq {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Horizontally center items */
    margin-bottom: 20px;
    width: 100%;
    background-color: var(--foreground-color);
    border-radius: var(--border-radius);

}

.faq a {
    display: block;
    /* Treat <a> as a block element */
    margin: 0 auto;
    /* Centers the block element horizontally */
    text-align: center;
    /* Centers text inside the <a> tag */
    letter-spacing: 4px;
    width: fit-content;
    /* Optional: Shrinks <a> to content size */
}

.faq ul {
    list-style: none;
    /* Remove default bullets */

}

.faq ul li {
    position: relative;
    padding-left: 20px;
    /* Space for the bullet image */
}

.faq p {
    padding-left: 0%;
    padding-right: 0%;
}

.faq img {
    display: block;
    /* Treat <a> as a block element */
    margin: 0 auto;
    /* Centers the block element horizontally */
    text-align: center;
}

.faq div {
    margin: 2vw;
}


#about-us {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);

}

#map {
    display: flex;
    /* Flexbox for centering */
    justify-content: center;
    /* Center horizontally */
    margin: 0 auto;
    /* Center the container */
    padding: 10px;
    /* Add spacing around the map */
    background-color: #f5f5f5;
    /* Light gray background for contrast */
    border: 1px solid #ddd;
    /* Subtle border for the container */
    border-radius: 8px;
    /* Rounded corners */
    max-width: 100%;
    /* Prevent overflow */
    box-sizing: border-box;
    /* Include padding and border in width calculation */
}

#map iframe {
    width: 100%;
    /* Full width minus padding */
    aspect-ratio: 16 / 9;
    /* Widescreen aspect ratio */
    border: none;
    /* Remove iframe border */
    height: 50vw;
    /* Maintain aspect ratio */
}




#directions-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    color: #007bff;
    /* Use a standard link color */
    text-decoration: none;
    /* Remove underline */
}

#directions-link:hover {
    text-decoration: underline;
    /* Add underline on hover */
    color: #0056b3;
    /* Darker shade for hover */
}

/* Service Cards */
.service-card {
    background-color: var(--foreground-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card h3 a {
    display: inline-block;
    /* Ensures the link is treated like a block */
    white-space: nowrap;
    /* Prevents text from wrapping to the next line */
    overflow: hidden;
    /* Hides overflowing text */
    text-overflow: ellipsis;
    /* Adds "..." to indicate truncated text */
    max-width: 100%;
    /* Ensures it respects the container width */
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-color);
}


/* Testimonials */
.testimonial {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
}

.testimonial:nth-child(odd) {
    border-left: 4px solid var(--primary-color);
}

.testimonial:nth-child(even) {
    border-right: 4px solid var(--primary-color);
    text-align: right;
}

.testimonial p {
    font-style: italic;
}

.testimonial strong {
    display: block;
    font-size: 1.1rem;
}

#about-us {
    text-align: center;
    background-color: var(--foreground-color);
}

#about-team {
    text-align: center;
    /* Center-align the image in its container */
}

#team-image {
    width: calc(100% - 40px);
    /* Subtract 40px to account for 20px padding on each side */
    max-width: 100%;
    /* Prevent the image from overflowing */
    padding: 0 20px;
    /* Add padding inside the container */
    box-sizing: border-box;
    /* Ensure padding is included in width calculations */
}

@media (max-width: 1068px) {
    .content-container {
        max-width: 90%;
        /* Slightly smaller for mobile */

    }

    #team-image {
        width: calc(100% - 20px);
        /* Adjust padding for smaller screens */
    }
}

/* #### Generated By: http://www.cufonfonts.com #### */

@font-face {
    font-family: 'Rockwell Nova';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova'), url('RockwellNova.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Italic'), url('RockwellNova-Italic.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Bold'), url('../fonts/RockwellNova-Bold.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Bold Italic'), url('RockwellNova-BoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Cond';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Cond'), url('RockwellNovaCond.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Cond Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Cond Italic'), url('RockwellNovaCond-Italic.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Light';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Light'), url('RockwellNova-Light.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Cond Light';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Cond Light'), url('RockwellNovaCond-Light.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Light Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Light Italic'), url('RockwellNova-LightItalic.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Cond Light Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Cond Light Italic'), url('RockwellNovaCond-LightItalic.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Cond Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Cond Bold'), url('RockwellNovaCond-Bold.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Cond Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Cond Bold Italic'), url('RockwellNovaCond-BoldItalic.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Extra Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Extra Bold'), url('RockwellNova-ExtraBold.woff') format('woff');
}


@font-face {
    font-family: 'Rockwell Nova Extra Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Rockwell Nova Extra Bold Italic'), url('RockwellNova-ExtraBoldItalic.woff') format('woff');
}

/* responsive helpers */
.hero-img img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

figure {
    margin: 0 0 1.5rem;
}

figcaption.caption {
    font-size: .875rem;
    color: #4a5568;
    text-align: center;
}

/* floated images for medium+ screens */
@media (min-width: 768px) {
    .float-right {
        float: right;
        margin: 0 0 1rem 2rem;
    }

    .float-left {
        float: left;
        margin: 0 2rem 1rem 0;
    }
}

/* optional video styling */
.training-demo {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 1rem auto;
    border-radius: var(--border-radius);
}