        :root {
            --primary-blue: #234b82;
            --accent-yellow: #f8b133;
            --text-dark: #1e3a63;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #FFFFFF;
            color: #333;
            overflow-x: hidden;
        }

        /* --- MENU SECTION --- */
        .top-nav {
            background-color: white;
            border-bottom: 1px solid black;
            width: 100%;
            padding: 15px 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-yellow);
        }

        /* --- TAGLINE SECTION --- */
        .tagline-section {
            background-color: var(--primary-blue);
            color: white;
            text-align: center;
            padding: 12px 20px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            height: 35vh;
            min-height: 200px;
            width: 100%;
            overflow: hidden;
            background-color: #234b82;
            color:#FFFFFF;
            text-align:center;
        }

        .fade-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Defaults to Desktop Image */
            background-image: var(--desktop-img);
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding-bottom: 140px;
            z-index: 1;
        }

        .fade-slide.active {
            opacity: 1;
            z-index: 2;
        }

        /* SWAP TO MOBILE IMAGE VIA CSS */
        @media (max-width: 768px) {
            .fade-slide {
                background-image: var(--mobile-img);
            }
            .hero {
                height: 70vh;
                min-height: 450px;
            }
            .fade-slide {
                padding-bottom: 100px;
            }
        }

        .slider-btn {
            background-color: var(--accent-yellow);
            color: var(--text-dark);
            text-decoration: none;
            padding: 15px 35px;
            font-weight: 800;
            border-radius: 5px;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            z-index: 5;
            transition: transform 0.3s ease;
        }

        .slider-btn:hover {
            transform: scale(1.05);
            background-color: white;
        }

        .arc-top {
            /*position: absolute;*/
            bottom: -1px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 10;
        }

        .arc-top svg {
            display: block;
            width: 100%;
            height: 80px;
        }

        .arc-top-white {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 10;
        }

        .arc-top-white svg {
            display: block;
            width: 100%;
            height: 80px;
        }

        /* --- SERVICES SECTION --- */
        .services-section {
            background-color: var(--primary-blue);
            padding: 20px 5% 20px 5%;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .services-content {
            flex: 1;
            min-width: 300px;
            max-width: 700px;
        }

        .services-title {
            color: var(--accent-yellow);
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }

        .services-title::after {
            content: "";
            flex: 1;
            height: 2px;
            background-color: var(--accent-yellow);
            margin-left: 20px;
            max-width: 250px;
        }

        .services-lists {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .service-list li::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            margin-right: 10px;
            border: 2px solid var(--accent-yellow);
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8b133' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: 14px;
            background-repeat: no-repeat;
            background-position: center;
            flex-shrink: 0;
        }

        /* Bottom Arc */
        .arc-bottom {
            background-color: var(--primary-blue);
            line-height: 0;
            width: 100%;
        }

        .arc-bottom svg {
            display: block;
            width: 100%;
            height: 80px;
        }

        /* --- FOOTER --- */
        .footer {
            background-color: white;
            padding: 10px 5% 40px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .contact-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
        }

        .call-text {
            color: var(--text-dark);
            font-weight: 700;
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .phone-number {
            color: var(--primary-blue);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 5px;
        }

        .email-web {
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 600;
            font-style: italic;
        }

        .contact-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-bottom: 5px;
        }

        .social-icons img {
            width: 30px !important;
            height: 30px !important;
            object-fit: contain;
            border-radius: 5px;
        }

        .social-text {
            color: #333;
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* Responsive spacing fixes */
        @media (max-width: 768px) {
            .nav-links { gap: 10px; }
            .nav-links a { font-size: 0.75rem; }
            .services-lists { flex-direction: column; align-items: center; gap: 0; }
            .service-list { width: 100%; }
            .phone-number { font-size: 1.8rem; }
            .contact-left, .contact-right { width: 100%; text-align: center; justify-content: center; }
        }

.testimonial-slider-container {
        width: 100%;
        max-width: 650px;
        margin: 30px auto;
        text-align: center;
        position: relative;
        /* Matches your blue section height requirement */
        min-height: 250px;
    }

    .testimonial-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .testimonial-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 1.5s ease-in-out, visibility 1.5s;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .testimonial-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative; /* Keeps the container height adjusted to the active slide */
    }

    .testimonial-text {
        font-style: italic;
        font-size: 1.05rem;
        line-height: 1.6;
        color: #fff; /* Assuming it's on a blue background */
        margin-bottom: 12px;
    }

    .testimonial-author {
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        color: #fff;
        margin-bottom: 20px;
    }

    .more-btn {
        display: inline-block;
        padding: 6px 20px;
        background: #fff;
        color: #003366; /* Match your blue theme */
        text-decoration: none;
        font-size: 0.75rem;
        border-radius: 20px;
        font-weight: bold;
        transition: transform 0.2s;
    }

    .more-btn:hover {
        transform: scale(1.05);
    }
.content-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 25px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}
/* Below needs to be cleaned up and remove duplicate values */
.alert-box {
  background-color: #e8f5e9; /* Pale green */
  color: #2e7d32;            /* Darker green text for readability */
  border: 1px solid #c8e6c9; /* Subtle border */
  padding: 16px 24px;
  border-radius: 8px;        /* Slightly rounded corners */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 20px auto;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.icon {
  margin-right: 12px;
  font-weight: bold;
}
        .contact-form-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .contact-form-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #FFFFFF;
            line-height: 1.6;
            color: #333;
        }

        /* Contact Section */
        .contact-form-section {
            padding: 5rem 0;
            background-color: #FFFFFF;
        }

        .contact-form-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-form-section-title {
            text-align: center;
            font-size: 3rem;
            color: #122A48;
            margin-bottom: 3rem;
            position: relative;
        }

        .contact-form-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #D4AC6F 0%, #E6C084 100%);
            border-radius: 2px;
        }

        .contact-form-contact {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #f0f0f0;
        }

        .contact-form-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Contact Form (Left Side) */
        .contact-form-form {
            background: #f8f8f8;
            padding: 2.5rem;
            border-radius: 15px;
            border: 2px solid #122A48;
        }

        .contact-form-form h3 {
            color: #122A48;
            margin-bottom: 2rem;
            font-size: 1.8rem;
            text-align: center;
            border-bottom: 3px solid #D4AC6F;
            padding-bottom: 0.5rem;
            display: inline-block;
            width: 100%;
        }

        .contact-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-form-group {
            display: flex;
            flex-direction: column;
        }

        .contact-form-group.contact-form-full-width {
            grid-column: span 2;
        }

        .contact-form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #122A48;
            font-size: 1rem;
        }

        .contact-form-group input,
        .contact-form-group select,
        .contact-form-group textarea {
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
        }

        .contact-form-group input:focus,
        .contact-form-group select:focus,
        .contact-form-group textarea:focus {
            outline: none;
            border-color: #122A48;
            box-shadow: 0 0 0 3px rgba(96, 9, 26, 0.1);
        }

        .contact-form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form-submit-btn {
            background: #122A48;
            color: #FFFFFF;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 172, 111, 0.3);
            width: 100%;
            margin-top: 1rem;
        }

        .contact-form-submit-btn:hover {
            background: linear-gradient(135deg, #E6C084 0%, #D4AC6F 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 172, 111, 0.4);
        }

        .contact-form-submit-btn:active {
            transform: translateY(0);
        }

        /* Contact Information (Right Side) */
        .contact-form-info {
            padding-left: 2rem;
        }

        .contact-form-info h3 {
            color: #122A48;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            border-bottom: 3px solid #D4AC6F;
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .contact-form-info p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .contact-form-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8f8f8;
            border-radius: 12px;
            border-left: 4px solid #D4AC6F;
            transition: all 0.3s ease;
        }

        .contact-form-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(96, 9, 26, 0.1);
        }

        .contact-form-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            width: 30px;
            color: #122A48;
        }

        .contact-form-details {
            flex: 1;
        }

        .contact-form-details h4 {
            color: #122A48;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-form-details span {
            color: #666;
            font-size: 1rem;
        }

        /* Required field indicator */
        .contact-form-required {
            color: #e74c3c;
            margin-left: 2px;
        }

        /* Success/Error Messages */
        .contact-form-message {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 500;
        }

        .contact-form-message.contact-form-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .contact-form-message.contact-form-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Business Hours */
        .contact-form-business-hours {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            margin-top: 2rem;
            border: 2px solid #f0f0f0;
        }

        .contact-form-business-hours h4 {
            color: #122A48;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            text-align: center;
        }

        .contact-form-hours-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }

        .contact-form-hours-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .contact-form-hours-item:last-child {
            border-bottom: none;
        }

        .contact-form-day {
            font-weight: 600;
            color: #122A48;            ;
        }

        .contact-form-time {
            color: #666;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .contact-form-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form-section-title {
                font-size: 2.5rem;
            }

            .contact-form-contact {
                padding: 2rem 1.5rem;
            }

            .contact-form-form {
                padding: 2rem 1.5rem;
            }

            .contact-form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-group.contact-form-full-width {
                grid-column: span 1;
            }

            .contact-form-info {
                padding-left: 0;
            }

            .contact-form-hours-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .contact-form-container {
                padding: 0 1rem;
            }

            .contact-form-section-title {
                font-size: 2rem;
            }

            .contact-form-form h3,
            .contact-form-info h3 {
                font-size: 1.5rem;
            }
        }

        /* Base Alert Styles */
        .alert {
            display: flex;
            align-items: flex-start;
            padding: 1rem 1.25rem;
            margin-bottom: 1rem;
            border-radius: 12px;
            border: 1px solid transparent;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.5;
            transition: all 0.3s ease;
        }

        .alert-icon {
            margin-right: 0.75rem;
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .alert-content {
            flex: 1;
        }

        .alert-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        .alert-message {
            margin: 0;
            opacity: 0.9;
        }

        /* Close Button */
        .alert-close {
            background: none;
            border: none;
            font-size: 1.25rem;
            cursor: pointer;
            padding: 0;
            margin-left: 0.75rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .alert-close:hover {
            opacity: 1;
            background: rgba(0,0,0,0.1);
        }

        /* Alert Types */
        .alert-success {
            background-color: #d4edda;
            border-color: #c3e6cb;
            color: #155724;
        }

        .alert-success .alert-close:hover {
            background: rgba(21, 87, 36, 0.1);
        }

        .alert-info {
            background-color: #cce7ff;
            border-color: #b3d9ff;
            color: #004085;
        }

        .alert-info .alert-close:hover {
            background: rgba(0, 64, 133, 0.1);
        }

        .alert-lg {
            padding: 1.5rem 2rem;
            font-size: 1.1rem;
            border-radius: 16px;
        }

        .alert-lg .alert-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        .alert-lg .alert-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        /* Animation Classes */
        .alert-dismissible {
            animation: slideInRight 0.3s ease-out;
        }

        .alert-fade-out {
            animation: fadeOut 0.3s ease-out forwards;
        }
#x_Directions {display: none;}
#MyPhone {display: none;}
#IPAddress {display: none;}
