@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&display=swap');

        :root {
            /* --primary-color: #00ad96;
            --secondary-color: hsl(39, 100%, 50%);
            --accent-color: #f6ad55;
            --dark-color: #2d3748;
            --light-color: #f7fafc; */
            --primary-color: #14253a;     /* Deep reddish-brown (ties to circle & horse tones) */
            --secondary-color: #568aca;   /* Warm golden tan (matches golden retriever & highlights) */
            --accent-color: #ff8708;      /* Soft, warm gold accent for buttons & hover states */
            --dark-color: #07121f;        /* Rich espresso brown for text & nav backgrounds */
            --light-color: #e7f1fa;       /* Creamy off-white background for warmth */
        }

        .text-secondary {
            color: var(--secondary-color) !important;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
        }

        /* Navbar */
        .navbar {            
            background: rgb(20, 37, 58, 1) !important;                    
            box-shadow: 0 8px 12px rgba(0,0,0,0.3);
            transition: all 0.3s ease;            
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--light-color) !important;
            font-family: 'Libre Baskerville', Georgia, serif;

            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-style: normal;

            display: flex;
            align-items: center;
            gap: 0.5rem; /* space between logo and text */
        }

        .navbar-brand img {
            max-height: 100px; /* adjust to preferred size */
            height: auto;            
        }

        .nav-link {
            font-weight: 500;            
            color: var(--light-color) !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            /*color: var(--secondary-color) !important;*/
            color: var(--accent-color) !important;
        }

        /* Hero Section with Video Background */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: white;
            scroll-margin-top: 60px;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
            object-fit: cover;
        }      

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .6) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content img {
            max-width: 400px;
            margin-top: 60px;
            padding-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Libre Baskerville', Georgia, serif;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .btn-custom {
            background-color: var(--accent-color);
            color: white;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
        }

        .btn-custom:hover {
            background-color: #ed8936;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 201, 136, 0.6);
        }

        /* Benefits Section */
        .benefits-section {
            padding: 160px 0;
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }

        .benefits-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
            object-fit: cover;
        }

        .benefits-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(20, 37, 58, 0.20) 0%, rgba(0, 0, 0, 0.80) 100%);
            z-index: 1;
        }

        .benefits-content {
            position: relative;
            z-index: 2;
        }

        .benefits-headline {
            text-align: center;
            color: white;
            margin-bottom: 50px;
        }

        .benefits-headline h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .benefits-headline p {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .benefit-box {
            background: rgba(255, 255, 255, 0.40);
            border-radius: 15px;
            padding: 35px 30px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .benefit-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            background: white;
        }

        .benefit-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);            
        }

        .benefit-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .benefit-box p {
            font-size: 1.05rem;
            color: var(--dark-color);
            line-height: 1.7;
            margin: 0;
        }

        .cta-container {
            text-align: center;
            margin-top: 50px;
        }

        .btn-benefits {
            background-color: var(--accent-color);
            color: white;
            padding: 18px 50px;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255, 135, 8, 0.4);
            text-decoration: none;
            display: inline-block;
        }

        .btn-benefits:hover {
            background-color: #ed8936;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 135, 8, 0.6);
            color: white;
        }

        @media (max-width: 768px) {
            .benefits-headline h2 {
                font-size: 2rem;
            }

            .benefits-headline p {
                font-size: 1.1rem;
            }

            .benefit-box {
                margin-bottom: 20px;
            }
        }

        /* Services Section */
        .services-section {
            padding: 50px 0;            
            background-color: var(--light-color);   
            scroll-margin-top: 100px;         
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #718096;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 4rem;
            color: var(--secondary-color) !important;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 1rem;
            color: var(--primary-color);
            line-height: 1.8;
        }

        .service-card p.featured {
            font-size: 1rem;
            color: var(--accent-color);
            line-height: 1.8;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            scroll-margin-top: 60px;
        }

        .about-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .about-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-features {
            margin-top: 40px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .about-feature i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 15px;
        }

        /* Testimonials Section */

        /* Gallery Grid */
        .gallery-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            scroll-margin-top: 60px;            
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 0 15px;
        }

        /* Gallery Item */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            aspect-ratio: 1;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Overlay */
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(20, 37, 58, 0.8) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
        }

        .gallery-section h2{
            color: white;
        }

        .gallery-section p{
            color: var(--accent-color);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            color: white;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .gallery-caption h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .gallery-caption p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Lightbox Modal */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s ease;
        }

        .lightbox-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 10px;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 40px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 10000;
        }

        .lightbox-close:hover {
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 50px;
            cursor: pointer;
            padding: 20px;
            transition: all 0.3s ease;
            user-select: none;
        }

        .lightbox-nav:hover {
            color: var(--accent-color);
            transform: translateY(-50%) scale(1.2);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }
        .lightbox-info {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            background: rgba(0, 0, 0, 0.4);
            padding: 20px 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            max-width: 90%;
            z-index: 10001;
        }

        .lightbox-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: white;
        }

        .lightbox-info p {
            font-size: 1.1rem;
            margin: 0;
            opacity: 0.95;
            color: var(--accent-color);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
            }

            .lightbox-close {
                top: 15px;
                right: 15px;
                font-size: 30px;
            }

            .lightbox-nav {
                font-size: 35px;
                padding: 10px;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }
            .lightbox-info {
                bottom: 70px;
                padding: 15px 20px;
                max-width: 95%;                                
            }

            .lightbox-info h3 {
                font-size: 1.3rem;
            }

            .lightbox-info p {
                font-size: 0.95rem;
            }
        }

        /* Loading Animation */
        .gallery-item.loading {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background-color: var(--light-color);
            scroll-margin-top: 60px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }

        .stars {
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
            scroll-margin-top: 60px;
        }

        .contact-form {
            background: var(--light-color);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .form-control {
            padding: 12px 20px;
            border-radius: 8px;
            border: 2px solid #e2e8f0;
            margin-bottom: 20px;
        }

        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(56, 178, 172, 0.25);
        }

        .contact-info {
            padding: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 20px;
            width: 30px;
        }

        .contact-item span {
            font-size: 1.1rem;
            color: var(--dark-color);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin-right: 20px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent-color);
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }