/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* 🌟 NAVIGATION BAR */
.navbar {
    background: white;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* 📌 NAVIGATION CONTAINER */
.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
}

/* 📌 LOGO */
.logo img {
    max-height: 50px;
}

/* 📌 NAVIGATION LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* 📌 NAVIGATION LINKS */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #fff;
    background: #c00;
}

/* 📌 DROPDOWN MENU */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

/* 🔥 Dropdown Animation */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 📌 Dropdown Items */
.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: #333;
    font-size: 1rem;
    display: block;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}

.dropdown-menu li a:hover {
    background: #c00;
    color: white;
}

/* 📌 HAMBURGER MENU (☰) */
.hamburger-menu {
    display: none; /* Hidden on desktop */
    font-size: 2rem;
    cursor: pointer;
    background: #c00;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1001;
    transition: background 0.3s ease, transform 0.2s;
}

.hamburger-menu:hover {
    background: #900;
}

.hamburger-menu:active {
    transform: scale(0.95);
}

/* 📌 MAKE MENU RESPONSIVE */
@media (max-width: 768px) {
    .nav-links-container {
        display: none; /* Hide full menu on small screens */
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 15px 0;
        z-index: 9999;
    }

    /* 📌 Show when active */
    .nav-links-container.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f9f9f9;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .hamburger-menu {
        display: block; /* Show hamburger menu on mobile */
    }
}


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/* Video Background */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 1; /* Ensure video is visible */
}

/* Red Content Box */
.hero-content {
    display: flex;
    position: relative;
    width: 50%;
    background: #c00; /* Red theme */
    color: white;
    padding: 40px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Left Text */
.hero-text {
    flex: 1;
    padding: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
}

/* Right Links */
.hero-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-links ul {
    list-style: none;
    padding: 0;
}

.hero-links li {
    border-bottom: 1px solid white;
    padding: 10px 0;
}

.hero-links a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    display: block;
    transition: color 0.3s;
}

.hero-links a:hover {
    color: #ffcc00;
}

/* 📌 Mobile Fix */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero video {
        width: 100vw;
        height: 100vh;
    }

    .hero-content {
        width: 90%;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-links a {
        font-size: 1rem;
    }
}

/* About Section */
.about-alyce {
    background: #fff;
    padding: 60px 10%;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #c00; /* Custom red */
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    background: #c00;
    color: white;
    padding: 12px 20px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.about-btn:hover {
    background: #900;
}

/* About Image */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 80%;
    }
}

/* Product Categories Section */
.product-categories {
    background: #fff;
    padding: 60px 10%;
}

.product-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

/* Left Side: Product Information */
.product-text {
    flex: 1;
}

.product-text h2 {
    color: #c00;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Right Side: Highlighted Product Benefits */
.product-benefits {
    flex: 1;
    background: #c00;
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.product-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-benefits ul {
    list-style: none;
    padding: 0;
}

.product-benefits li {
    font-size: 1.2rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.product-benefits li::before {
    content: "✔";
    margin-right: 10px;
    font-weight: bold;
}

/* Product List */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.product {
    background: #c00;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

.product a {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.product:hover {
    background: #900;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-container {
        flex-direction: column;
        text-align: center;
    }

    .product-benefits {
        max-width: 80%;
    }
}

/* Testimonials Section */
.testimonials {
    background: #f8f8f8;
    padding: 80px 5%;
    text-align: center;
    position: relative;
}

.testimonials .section-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.testimonials .section-title::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #c00;
    display: block;
    margin: 10px auto;
    border-radius: 2px;
}

.testimonials .sub-title {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Testimonial Slider */
.testimonial-slider {
    max-width: 750px;
    margin: auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

/* Testimonial Quote */
.testimonial-quote p {
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Profile Info */
.testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #c00;
}

.client-info h3 {
    font-size: 1.4rem;
    color: #000;
    font-weight: bold;
}

.client-info span {
    font-size: 1rem;
    color: #777;
}

/* Slider Controls */
.testimonial-controls {
    text-align: center;
    margin-top: 20px;
}

.testimonial-controls span {
    cursor: pointer;
    font-size: 2rem;
    padding: 10px;
    color: #c00;
    font-weight: bold;
    transition: 0.3s;
}

.testimonial-controls span:hover {
    color: #900;
}

/* Pagination Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 15px;
}

.testimonial-dots .dot {
    height: 12px;
    width: 12px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.testimonial-dots .dot.active {
    background: #c00;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-profile {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-profile img {
        width: 70px;
        height: 70px;
    }
}

/* Blog & News Section */
.news {
    background: #fff;
    padding: 60px 10%;
    text-align: center;
}

.news h2 {
    color: #c00;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.news p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Swiper Container */
.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Swiper Navigation - Top Left Corner */
.swiper-navigation {
    position: absolute;
    top: -40px;
    left: 10px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Swiper Buttons */
.swiper-button-prev,
.swiper-button-next {
    color: #c00;
    background: white;
    padding: 12px 14px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fix if buttons not visible */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
    color: red;
}

/* Swiper Pagination */
.swiper-pagination {
    position: absolute;
    bottom: 10px;
    text-align: center;
    z-index: 10;
}

/* Ensure slides are properly displayed */
.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.news-item {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-item h3 {
    color: #c00;
    font-size: 1.5rem;
    margin: 15px;
}

.news-item p {
    font-size: 1rem;
    margin: 0 15px 15px;
    color: #444;
}

.news-item .read-more {
    display: inline-block;
    background: #c00;
    color: white;
    padding: 10px 15px;
    margin: 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.news-item .read-more:hover {
    background: #900;
}
/* pet-footer */
.pet-footer {
    text-align: center;
    margin-top: 10px;  /* Adjust overlap with footer */
    position: relative;
    z-index: 2;
}

.pet-footer img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer Styles */
.footer {
    background-color: #c00;
    color: white;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h2, .footer-section h3, .footer-section h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: #ffdbdb;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid white;
}

.footer-bottom a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffdbdb;
}


/* Hero Section */
.about-hero {
    background: url('../images/about-hero.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.4);
}

.about-hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 2.5rem;
}

/* About Page Main Sections */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

/* Company Overview */
.about-overview .about-text {
    flex: 1;
}

.about-overview .about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Expertise Section */
.about-expertise {
    text-align: center;
    padding: 50px;
}

.about-expertise-list {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.about-expertise-item {
    width: 30%;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.about-expertise-item h3 {
    color: red;
}

/* Sustainability */
.about-sustainability {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.about-sustainability-text {
    flex: 1;
}

.about-sustainability-image img {
    width: 100%;
    border-radius: 10px;
}

/* Certifications */
.about-certifications {
    text-align: center;
    padding: 50px;
}

.about-certification-list {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.about-certification-item {
    width: 30%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.about-certification-item img {
    width: 80px;
    margin-bottom: 10px;
}
/* ('/static/main/images/services-hero.jpg') */
.policy-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.policy-container h1 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 90px;
}

.policy-container h2 {
    font-size: 1.5em;
    margin-top: 20px;
    color: #333;
}

.policy-container p, .policy-container ul {
    font-size: 1.1em;
    color: #666;
}

.policy-container ul {
    padding-left: 20px;
}

.policy-container a {
    color: #d31c1c;
    font-weight: bold;
}
