/********** Template CSS **********/
:root {
    --primary: #5B8C51;
    --secondary: #978e49;
    --light: #F7F7F7;
    --dark: #242b22;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}

img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #header-carousel .align-right {
        object-position: right;
    }
}


.page-header {
    background: url(../img/banner.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text .service-icon-big-circle {
    width: 140px;
    height: 140px;
    padding: 5px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

a {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove the underline */
}

a:hover {
    color: #5B8C51; /* Define the color on hover */
}

/* image overlay */
.img-with-overlay {
    position: relative;
    display: inline-block;
}

.img-with-overlay img {
    display: block;
    width: 100%; /* Ensure the image scales properly */
}

.image-overlay-text {
    position: absolute;
    bottom: 0px; /* Position text at the bottom of the image */
    left: 0;
    right: 0;
    color: white; /* Text color */
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    text-align: center;
    padding: 5px; /* Space around the text */
    font-size: 10px;
    font-weight: bold;
    width: 100%; /* Ensures text stretches across the image */
    visibility: visible; /* Overlay is always visible on small screens */
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-sizing: border-box;
}

/* For larger screens (e.g., 768px and above), show the overlay only on hover */
@media (min-width: 768px) {
    .image-overlay-text {
        visibility: hidden; /* Hide the overlay initially */
        opacity: 0;
    }

    /* Show overlay on hover for larger screens */
    .img-with-overlay:hover .image-overlay-text {
        visibility: visible;
        opacity: 1;
    }
}

/* pedigree */
.pedigree-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.pedigree-table th,
.pedigree-table td {
    vertical-align: middle;
    padding: 1px;
}

.dog-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 350px; /* Adjust the width here to control the dog card's width */
}

.dog-card img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin-right: 15px; /* Space between image and text */
}

.dog-card .dog-info {
    text-align: left;
    font-size: 0.9em;
    white-space: normal;
    word-wrap: break-word;
}

.dog-card .dog-info-gggp {
    text-align: left;
    font-size: 0.7em;
    white-space: normal;
    word-wrap: break-word;
}

.dog-card .dog-info-gggp h5 {
    margin: 0;
    font-size: 0.9em;
}

.dog-card .dog-info h5 {
    margin: 0;
    font-size: 1.0em;
}

.dog-card .championship-titles,
.dog-card .offspring-health-info {
    font-size: 0.9em;
    color: #777;
}

.dog-card .offspring-health-info p {
    margin: 0;
}

.connector {
    border-left: 2px solid #000;
    height: 50px;
    margin: auto;
}

.vertical-line {
    position: relative;
    height: 50px;
    border-left: 2px solid #000;
    margin: auto;
}

.horizontal-line {
    position: relative;
    width: 100%;
    border-top: 2px solid #000;
    margin: auto;
}

.center-content {
    text-align: center;
}

.age-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pedigree-tree-container {
    overflow-x: auto;
    white-space: nowrap;
}

/* Style for the featured news item */
.featured-news {
    background-color: #f5f5f5; /* Light background color */
    border: 2px solid #ccb162; /* Accent color border */
    border-radius: 10px; /* Optional rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transform: scale(1.05); /* Slightly larger size */
    transition: transform 0.3s ease; /* Smooth transition */
}

.featured-news:hover {
    transform: scale(1.08); /* Further enlargement on hover */
}

/* Increase image size within the featured news item */
.featured-news .service-img img {
    width: 110%; /* Adjust as needed */
    height: auto;
}

/* Optional: Make text bold or more prominent */
.featured-news h5 {
    font-weight: bold;
    color: #333;
}

/* Lightbox overlay styling */
.lightbox-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background */
}

/* Close button */
.lightbox-overlay .close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Center video */
.lightbox-overlay video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Adjust as needed */
    max-height: 80%;
}

.video-thumbnail-btn1 {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    position: relative;
}
.video-thumbnail-btn1:focus {
    outline: 2px solid #007bff; /* Optional: Add focus outline for accessibility */
}

.video-thumbnail-btn2 {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    position: relative;
}
.video-thumbnail-btn2:focus {
    outline: 2px solid #007bff; /* Optional: Add focus outline for accessibility */
}

.video-preview {
    width: 100%; /* Make the video fit the container */
    height: auto;
    border-radius: 8px; /* Optional: adds rounded corners */
    object-fit: cover; /* Ensures video fits nicely without stretching */
    margin: 0 auto;
}

.video-preview-background {
    width: auto; /* Make the video fit the container */
    height: 100%;
    border-radius: 8px; /* Optional: adds rounded corners */
    object-fit: cover; /* Ensures video fits nicely without stretching */
    margin: 0 auto;
}