@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;500;600;700;800;900&display=swap');

/* variable */
:root {     
    --base-color: #5c4d91;
    --base-color-dark: #4a3c76;
    --dark-gray: #19063D;
    --medium-gray: #62656e;
    --medium-pink: #db89ca;
    --very-light-gray: #f4f4f7;
    --white: #fff;

    --alt-font: "Open Sans", sans-serif;
    --primary-font: "Lato", sans-serif;
    --heading-clamp: clamp(2rem, 1.8214em + 0.9524vw, 3rem);
    --sub-heading-font-clamp: clamp(1.2rem, 1.1464rem + 0.2857vw, 1.5rem);
    --large-content-font-clamp: clamp(0.95rem, 0.92rem + 0.2918vw, 1.28125rem);
    --content-font-clamp: clamp(0.75rem, 0.7rem + 0.2286vw, 1rem);



    --background-color-1: #E0B3E0;
    --background-color-2: #f9f9f9;
    --border-spin-animation-color-1: transparent;
    --border-spin-animation-color-2: #FF3B9E;
    --section-padding : 13vh 0;
    --font-color-darkViolet : #2c003f;
}  
.bg-navy {
    background: var(--dark-gray);
}
.bg-light-gray {
    background-color: var(--very-light-gray);
}
.bg-gradient-lightgray {
    background-image: linear-gradient(to bottom, #f4f4f7, #f5f5f7, #f6f6f8, #f7f7f9, #f8f8fa, #f9f9fb, #fafafb, #fbfbfc, #fcfcfd, #fdfdfe, #ffffff);
}
.bg-purple {
    background: var(--base-color);
}

.section-padding{
    padding: var(--section-padding);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px; 
    height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}



/* ======= Typography style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}



/* General Navbar Styling */
.navbar {
    width: 100%;
    background: #fff; /* Change color as needed */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    border: none;
    justify-content: space-between;
    position: sticky; 

}

/* Navbar Container */
.navbar-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border: none;
}

/* Logo Styling */
.logo-wrapper {
  display: flex;
  align-items: center; /* Vertically aligns the items */
  width: 100%; /* Ensures it takes up the full width of its container */
}


.logo-img {
    height: 50px;
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    font-family: var(--alt-font)
}

/* Navbar Navigation Links */
.navbar-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    padding: 10px 15px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ff6600;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 -4px 10px rgba(0, 0, 0, 0);
    border-radius: 5px;
    min-width: 180px;
    padding: 0;
    list-style: none;
    flex-direction: column;
    display: none;


}

.dropdown-item {
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    color: #333;

    list-style: none;
}

.dropdown-item:hover {
    background: #f5f5f5;


}

/* Show Dropdown on Hover (Desktop) */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}


/* Style the container (navbar-right) */
.navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Style the button (nav-button) */
.nav-button {
    background-color: var(--base-color);
    color: var(--white);
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.nav-button:hover {
    background-color: var(--base-color-dark);
    transform: translateY(-2px);
}


.nav-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5);
}

.nav-button:active, .nav-button:visited {
    color: var(--white);
}

/* Dropdown Button */
.dropdown-toggle {
    display: none;
    background: #ff6b81;
    color: var(--white);
    padding: 10px 15px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.3s ease-in-out;
}

.dropdown-toggle:hover {
    background: #e8415c;
}

/* About content (Hidden on small screens) */
.about-content {
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    align-items: center;
    z-index: 1100;
    justify-content: flex-end;
}


/* Mobile Styles */


/* Main header section */
.header-section { 
    background-image: url('./images/landingCat.jpg');
    background-size: cover;
    background-position: 30% 30%; 
    position: relative;
    display: flex;
    height: 80vh;
    width: auto;
}

/* Overlay effect */
.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Dark overlay */
    z-index: 1;
}

/* Container inside the header */
.header-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

/* Content inside the container */
.header-content {
    margin-left: 5vw;
    margin-top: 10vh;
    font-family: var(--primary-font);
    color: #5D3F6A;
}

.header-content-h1{
    font-size: clamp(2rem, 1.6429rem + 1.9048vw, 4rem);
}

.header-content-p{
    font-size: clamp(1rem, 0.8214rem + 0.9524vw, 2rem);
}



/* General styling */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 2%;
}





/* ======= About Section ======= */
.about {
    background-color: var(--background-color-2);
}

.about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Section */
.about-left {
    flex: 1;
    max-width: 50%;
}

.about-left .content {
    max-width: 500px;
}

.about-subtitle {
    display: flex;
    align-items: center;
    font-size: var(--sub-heading-font-clamp);
    color: #ff6b81;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--primary-font);
}

.about-subtitle .icon {
    margin-right: 8px;
}

.about-title {
    font-size: var(--heading-clamp);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--primary-font);
}

.about-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--alt-font);
}


.listext li {
    display: flex;
    align-items: center; 
    margin-bottom: 10px;
}

.listext-icon {
    width: 40px;
    height: 40px;
    background: #ff6b81;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
}

.listext-text p {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    margin: auto;
    list-style: none;
    padding: 0;
}

/* Button */
.button-1 {
    display: inline-flex;
    align-items: center;
    background: #ff6b81;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.button-1 i {
    margin-right: 8px;
}

.button-1:hover {
    background: #e8415c;
}

.phone{
    align-items: center;
}

.phone a {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    gap: 5px;
}

.about-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 10px;

}

.about-contact .button-1,
.about-contact .phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phone i {
    margin-right: 10px;
    color: #ff6b81;
}

/* Right Section */
.about-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    text-align: center;
}

.about-right .item {
    position: relative;
}

.about-img{
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.note {
    position: absolute;
    margin-top: 8%;
    margin-left: 5%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 45%;
}

.note .icons {
    color: #ffcc00;
    margin-bottom: 10px;
}

.about-note-txt {
    font-size: 14px;
    font-style: italic;
    color: #444;
    margin-bottom: 8px;
}

.about-note-title {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}




/* ======= Service Section ======= */

.services-heading{
    font-family: var(--primary-font);
    font-size: var(--heading-clamp);
    display: flex;
    justify-content: center;
    background-color: var(--background-color-1);
    color: var(--font-color-darkViolet);
}

.service-subtitle{
    background-color: var(--background-color-1);
    font-family: var(--primary-font);
    font-size: var(--sub-heading-font-clamp);
    display: flex;
    justify-content: center;
    color: var(--font-color-darkViolet)

}

.service-section{
    background-color: var(--background-color-1);

}

.carousel-container {
    width: 100vw;
    max-width: 90%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 1) 19px, rgba(255, 255, 255, 1) 100%);
    margin: 5% auto;
    -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 1) 19px, rgba(255, 255, 255, 1) calc(100% - 19px), rgba(255, 255, 255, 0) 100%);
}

.carousel {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
}

.carousel::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: -2221;
}

.service-carousel-item {
    flex: 0 0 30vh; /* Adjust width as needed */
    height: 45vh; /* Set height to 50% of the viewport height */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 15px; /* Space between elements */
    transition: transform 0.3s ease-in-out;
    background: white;
    position: relative;
}

.item-end{
    border-right:  90px;
}

.icon-wrapper {
    width: 120px; /* Adjust circle size */
    height: 120px;
    border-radius: 27% 73% 39% 61% / 77% 63% 37% 23% ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

   
.service-heading {
    font-family: var(--primary-font);
    font-size: clamp(1.1875rem, 1.1317rem + 0.2976vw, 1.5rem);
    color: var(--font-color-darkViolet);
    margin: 0px;
}


.service-carousel-item p {
    font-family: var(--alt-font);
    font-size: clamp(0.75rem, 0.6942rem + 0.2976vw, 1.0625rem);
    color: #000015;
    max-width: 80%;
    text-align: center;

}





@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.border-spinning-animation{
    position: relative;
}

.border-spinning-animation::before,
.border-spinning-animation::after {
    content: " ";
    position: absolute;
    z-index: -1;
    inset: -0.16rem; /* Border thickness */
    background: conic-gradient(
        from var(--gradient-angle),
        var(--border-spin-animation-color-1),
        var(--border-spin-animation-color-2),
        var(--border-spin-animation-color-1),
        var(--border-spin-animation-color-1),
        var(--border-spin-animation-color-1),
        var(--border-spin-animation-color-2),
        var(--border-spin-animation-color-1),
        var(--border-spin-animation-color-1),
        var(--border-spin-animation-color-1)
    );
    border-radius: inherit;
    animation: rotate 2.5s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.border-spinning-animation::after {
    filter: blur(0.5rem);
    opacity: 0;
}

.border-spinning-animation:hover::after,
.border-spinning-animation:hover::before {
    opacity: 1;
}

@keyframes rotate {
    to {
        --gradient-angle: 360deg;
    }
}

/* ======= End Of Service Section ======= */


/* ======= End Of WhyChooseUs Section ======= */
.why-choose-us{
    background-color: var(--background-color-2);
}

.why-choose-us-heading{
    font-size: var(--heading-clamp);
    font-family: var(--primary-font);
    background-color: var(--background-color-2);
     
}

.why-choose-us-left-container .why-choose-us-right-container {
    flex: 1;
    margin-bottom: 30px;
    max-width: 50%;
}

.why-choose-options {
    display: flex;
    justify-content: flex-start;

    gap: 2rem;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--alt-font);
    font-size: var(--content-font-clamp);
    width: 50%;
    margin-top: 5%;
    color: #ff6b81 ;

}

.why-choose-list strong{
    color: black ;
}

.why-choose-list li {
    margin-bottom: 10px;
    align-items: flex-end;  /* Align items to the bottom */
    display: flex;
    justify-content: flex-start;
    padding: 1%;
}

.why-choose-list span {

    margin-right: 10px;
    bottom: 10px;

}


.why-choose-us-container{
    display: flex;  /* Use flexbox to align items */
    justify-content: space-between;  /* Space out the left and right containers */
    align-items: center;  /* Vertically center the content */

}

.why-choose-us-dog {
    width: 100%;
    max-width: 400px;  /* Adjust the max-width of the image */
    height: auto;  /* Keep aspect ratio intact */
 
}









.meet-our-team-section {
    background-color: var(--background-color-1);
    text-align: center;

}

.meet-our-team-subtitle {
    font-family: var(--primary-font);
    font-size: var(--sub-heading-font-clamp);
    color: var(--font-color-darkViolet);
}

.meet-our-team-title {
    font-family: var(--primary-font);
    font-size: var(--heading-clamp);
    color: var(--font-color-darkViolet);
}

.team-container {
    margin: 5% 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}




.team-member {
    perspective: 1000px;
    margin: 20px;
}

.card-inner {
    width: 300px; /* Same as your flip card */
    height: 50vh; /* Same as your flip card */
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;

}

.team-member:hover .card-inner {
    transform: rotateY(180deg);
}

/* Front and back of the card */
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    color: white;
    padding: 20px;
    transform-style: preserve-3d; 
}

/* Front of the card */
.card-front {
    background-color: #fff;
    color: black;

}

/* Back of the card */
.card-back {
    background-color: #FFF5F5;
    color: white;
    transform: rotateY(180deg);
    border: 2px solid rgba(255, 59, 158, 0.8); /* Bord rose transparent */
    box-shadow: 0 0 30px rgba(255, 59, 158, 0.8); /* Effet néon */
}

/* Team photo styles */
.team-photo {
    width: 70%;
    height: auto;
    border-radius: 82% 18% 82% 18% / 18% 82% 18% 82%;
    margin-bottom: 1rem;
    object-fit: cover;
    backface-visibility: hidden; /* Hide the back of the front when flipped */
    transform: translateZ(80px);
}

/* Team name styles */
.team-name {
    font-family: var(--primary-font);
    font-size: clamp(1.7rem, 1.5214rem + 0.9524vw, 2.7rem);
    color: var(--font-color-darkViolet);
    margin-bottom: 0.5rem;
    transform: translateZ(80px);
}

/* Team role styles */
.team-role {
    font-family: var(--primary-font);
    font-size: clamp(0.8rem, 0.7286rem + 0.381vw, 1.2rem);
    color: #555;
    margin-bottom: 1rem;
    transform: translateZ(80px);
}

/* Team description styles */
.team-description {
    font-size: var(--content-font-clamp);
    color: #777;
    line-height: 1.4;
    transform: translateZ(80px);
}





.pet-award-section{
    background-color: var(--background-color-2);
    text-align: center;
    justify-content: center;
}

.award-title{
    font-family: var(--primary-font);
    font-size: var(--heading-clamp);
}

.award-subtitle {
    font-family: var(--primary-font);
    font-size: var(--sub-heading-font-clamp);
}

@keyframes award-slide {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}



.award{

    overflow:hidden;
    padding:2% 0 ;

    white-space:nowrap;
    position:relative;
    width: 70%;
    margin: 3% auto;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%) 1;
}



.award:before,
.award:after{
    content:"";
    position:absolute;
    top:0;
    width:250px;
    height:100%;
    z-index:2;
    transition: background 0.5s ease-in-out; /* Smooth transition for side gradients */
}

.award:before{
    left:0;
    background:linear-gradient(to left, rgba(255,255,255,0), var(--background-color-2));

}
.award:after{
    right:0;
    background:linear-gradient(to right, rgba(255,255,255,0), var(--background-color-2));
}




.award-slide {
    display: inline-block;
    animation: 35s award-slide infinite linear;
}

.award-slide img{
    height:150px;
    margin: 0 40px;
}



.curve {
  position: relative;
  background-color: var(--background-color-2);
    width: 100%; /* Ensure the SVG fills 100% width */
    min-height:     200px;
  height: 100%; /* Maintain aspect ratio */
padding-top: 10px;
    overflow-x: hidden;
    overflow-y: hidden;


}

.curve-svg {
    position: absolute;
    bottom: -10px; /* Adjust this value to control the curve height */
    left: 50;
    width: 100%; /* Ensure the SVG fills 100% width */
    height: auto; /* Maintain aspect ratio */
    z-index: 1;
    transform: scaleY(-1);
    min-height: 60px;
}




/* ======= About Us Page ======== */
    .about-section {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--background-color-2);
        padding: 5rem 0;
    }

    .double-box-container {
        position: relative;
        max-width: 1200px;
        margin: auto;
        width: 80vw;
        right: 22.5px;
    }

    .outer-box {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #faa055;
        border-radius: 12px;
        z-index: 1;
        box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
    }

    .outer-box.loaded {
        top: 45px;
        left: 45px;
        right: -45px;
        bottom: -45px;
    }

    .inner-box {
        position: relative;
        z-index: 2;
        border-radius: 10px;
        overflow: hidden;
        background: #fac396;
        padding: 30px;
    }

.about-image {
    float: left;
    margin: 0 20px 0 0;
}





.about-image img {
    width: 30vw;
}







.about-paragraph {
    font-family: var(--alt-font);
    font-size: var(--content-font-clamp);
    margin-bottom: 20px;
    text-align: justify;
}


/* ======= End Of About Us Page ======= */




.price-list-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}


.price-list-table th, 
.price-list-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.price-list-table th {
    background-color: var(--font-color-darkViolet);
    color: var(--white);
    font-size: var(--large-content-font-clamp);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    font-family: var(--alt-font);
}


.price-list-price {
    text-align: right;
    width: 30%;
    font-family: var(--alt-font);
    font-size: var(--content-font-clamp);
    color: var(--font-color-darkViolet);
    font-weight: 600;
}

.price-list-service-name {
    width: 70%;
    font-weight: 500;
    color: var(--medium-gray);
    font-family: var(--alt-font);
    font-size: var(--content-font-clamp);
}

.price-list-table tr:hover {
    background-color: rgba(250,195,150,0.1);
}

.price-list-table tr:last-child td {
    border-bottom: none;
}

.price-list-category {
    margin-bottom: 45px;
    position: relative;
}

.price-list-category-name {
    font-size: var(--heading-clamp);
    color: var(--font-color-darkViolet);
    font-family: var(--primary-font);
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.price-list-category-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 5px;
    background: #fac396;
    border-radius: 3px;
}

.price-list-notes {
    font-size: var(--content-font-clamp);
    font-family: var(--alt-font);
    color: var(--medium-gray);
    margin-top: 40px;
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #2c003f;
}

.price-list-notes strong {
    color: #2c003f;
    font-weight: 600;
}

.price-list-link {
    color: #2c003f;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.price-list-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fac396;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.price-list-link:hover::after {
    transform: scaleX(1);
}

.price-list-additional-info {
    text-align: center;
    margin-top: 30px;
    font-size: var(--content-font-clamp);
    font-family: var(--alt-font);
    color: var(--medium-gray);
    font-size: 0.95em;
}

.price-list-additional-info a {
    color: var(--font-color-darkViolet);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50px;
    transition: all 0.3s ease;
}


    
    
.adopt-content-container{
    display: flex;
    gap: 30px; /* Space between image and text */
    align-items: flex-start; /* Align items at the top */
    margin: 3rem 0;
}



.adopt-text-content {
    flex: 1; /* Takes remaining space */
    padding-top: 1rem; /* Optional: Aligns text with top of image */
}



/* Existing carousel styles remain the same */
.adopt-image-carousel {
  position: relative;
  width: 40%; /* Takes full width of parent */
  overflow: hidden;
  border-radius: 12px; /* Optional */
}

.image-carousel {
  display: flex;
  height: 100%; /* Takes height from aspect ratio */
  transition: transform 0.5s ease-in-out;
}

.image-carousel img {
  width: 100%; /* Exactly matches parent width */
  height: auto; /* Height scales proportionally */
  flex-shrink: 0; /* Prevents shrinking */
  object-fit: cover; /* Crop if needed */
  overflow-clip-margin: unset;
}


/* Next Button */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);        
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 0.5em;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 20%;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-button {
    right: 10px;
}

.prev-button {
    left: 10px;
}

.next-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.adopt-paragraph {
    font-family: var(--alt-font);
    font-size: var(--content-font-clamp);
    margin-bottom: 20px;
    text-align: justify;
}

.adopt-paragraph-detail > p {
    font-family: var(--alt-font);
    font-size: var(--content-font-clamp);
    text-align: justify;
}

.adopt-title {
    font-size: var(--sub-heading-font-clamp);
    font-weight: 700;
    color: var(--font-color-darkViolet);
    margin-bottom: 20px;
    font-family: var(--primary-font);
}

.title{
    font-size: var(--heading-clamp);
    font-weight: 700;
    color: var(--font-color-darkViolet);
    margin-bottom: 10px;
    font-family: var(--primary-font);
}

.subtitle{
    display: flex;
    align-items: center;
    font-size: var(--sub-heading-font-clamp);
    color: #000;
    font-weight: 400;
    font-family: var(--alt-font);
    margin-bottom: 20px;
}


.contact-info {
    font-size: var(--large-content-font-clamp);
    font-family: var(--alt-font);
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-info {
    font-size: var(--large-content-font-clamp);
    font-family: var(--alt-font);
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-info h2{
    color: var(--font-color-darkViolet);
    font-size: var(--sub-heading-font-clamp);
}

.dark-violet-font{
    color: var(--font-color-darkViolet);
}

.medium-bold{
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
    font-family: var(--alt-font);
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #333;
    font-size: var(--large-content-font-clamp);
}



.golden {
    color: #B22E00;  
}

.submit-btn{
    background-color: var(--font-color-darkViolet);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: var(--content-font-clamp);
    font-family: var(--alt-font);
}





/* Responsive Design */
@media (max-width: 768px) {

    .curve-svg {
        height: 100%;
        width: auto;
    }
    
    .price-list-table th, 
    .price-list-table td {
        padding: 14px 18px;
    }
}

/* Animation Enhancements */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



.price-list-category {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.1s;
}
.hidden-select {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
    /* Remove the hidden-select from layout completely */
    position: absolute;
    left: -9999px;
}

.contact-form {
    position: relative;
    width: 100%;
    min-height: 45px;
    max-height: 45px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    border: 1px solid var(--font-color-darkViolet);
    border-radius: 8px;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: var(--content-font-clamp);
    font-family: var(--alt-font);

}

.contact-form:focus-visible {
    border: 1px solid #6366f1; /* Border color when focus is visible */
    outline: none; /* Removes the default outline (optional) */
}

.success {
    color: var(--medium-gray);
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    font-size: var(--content-font-clamp);
    font-family: var(--alt-font);
    display: none; 
}



#message{
    resize: none;
    min-height: 10em;
    max-height: 10em;
    padding: 10px;
    overflow-y: auto; 
}

.dropdown-el.expanded {
    max-height: 500px;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.dropdown-el input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.dropdown-el label {
    display: block;
    padding: 12px 0px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-el label:not(:first-child) {
    border-top: 1px solid #e5e7eb;
}

.dropdown-el label:hover {
    background-color: #f3f4f6;
}

.dropdown-el input[type="radio"]:checked + label {
    background-color: #eef2ff;
    color: #6366f1;
}

.dropdown-el::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #6b7280;
    transition: transform 0.3s ease;
}

.dropdown-el.expanded::after {
    transform: rotate(180deg);
    border-top-color: #6366f1;
}

.selected-label {
    display: block;
    padding: 12px 0px;
    position: relative;
}

.hidden-select {
    display: none;
}












.footer {
  position: relative;
  z-index: 2;
  background-color: var(--background-color-1);
}




/* Footer content container */
.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer sections */
.footer-section {
  flex: 1;
  margin: 0 20px;
}

/* Footer headings */
.footer-heading {
  font-size: var(--sub-heading-font-clamp);
  font-family: var(--alt-font);
  margin-bottom: 20px;
color: var(--font-color-darkViolet);
}


.footer-list {
    list-style: none;
    padding: 0;
    margin: 0; /* Added to ensure no default margins interfere */
}

.footer-list li {
    margin-bottom: 10px;
    position: relative; /* Added for better hover effects */
}

.footer-link {
    color: var(--font-color-darkViolet);
    text-decoration: none;
    font-size: var(--large-content-font-clamp);
    font-family: var(--alt-font);
    position: relative;
    transition: color 0.3s ease-in-out;
    display: inline-block; /* Ensures smooth transitions */
    padding: 2px 0; /* Gives some space for hover effects */
}

.footer-link:hover {
    color: #5a0066;
}

/* Better underline animation */
.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #5a0066;
    transition: width 0.3s ease-in-out;
}

.footer-link:hover::after {
    width: 100%;
}




/* Social icons */
.social-icons {
    display: flex;
    
    flex-direction: column;
    gap: var(--content-font-clamp);
    align-items: flex-start;
}

.social-icon {
    color: var(--font-color-darkViolet);
    font-size: var(--large-content-font-clamp);
    text-decoration: none;
    font-family: var(--alt-font);
    transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

.social-icon i{
    padding-right: var(--content-font-clamp);
}


.social-icon:hover {
    color: #5a0066;
    font-size: var(--large-content-font-clamp);
}

/* Footer bottom section */
.footer-bottom {
    display: flex;
    flex-direction: column; /* Arrange items in a column */
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 10px;
    border-top: 1px solid var(--font-color-darkViolet);
    font-family: var(--alt-font);
    font-size: var(--content-font-clamp);
    font-weight: 400;

}


.footer-copyright {
    font-size: 14px;
    align-items: center;
    color: var(--font-color-darkViolet);
    margin: 0;
    width: 70%;
    text-align: center;
    margin-bottom: 5px;

}

.feature-list {
    font-size: 14px;
    align-items: center;
    color: var(--font-color-darkViolet);
    list-style: none;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 6px;
}

.feature-list li {
    list-style: none;
}



@media (max-width: 1324px) {

    .about-image img {
        width: 500px;
    }

    .adopt-image-carousel {
        width: 50%; 
    }

}

@media (max-width: 1024px) {
    .about-left{
        max-width: 50%;
    }

    .about-right {
        max-width: 50%;
    }

    .row{
        flex-direction: column;
        flex-wrap: nowrap;
        align-items:center;
        margin-left: 0%;
    }

    .award{
        width: 80%;
    }

    .adopt-image-carousel {
        width: 50%; 
    }
}


/* Responsive */
@media (max-width: 991px) {
    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .about-left {
        max-width: 90%;
    }

    .about-right {
        max-width: 65%;
    }

    .about-right .item {
        margin-top: 30px;
    }

    .why-choose-us-dog {
        max-width: 300px;
    }

    .about-image img {
        width: 400px;
    }

    .carousel-button {
        padding: 0.5em;
        font-size: 0.6em;
    }
}


@media (max-width: 800px) {

    .about-image img {
        width: 100%;
    }

    .about-image{
        float: none;
        display: flex;
        justify-content: center;
        margin: auto ;
        margin-bottom: 20px;
    }

}


@media (max-width: 854px) {
    .menu-toggle {
        display: flex; 
        align-items:center;
        margin:auto;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        transition: right 0.3s ease-in-out;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-right{
        padding: 10px 25px;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }

    .nav-item.open .dropdown-menu {
        display: flex;
    }

    .menu-toggle {
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1100;
    }

    .menu-toggle .material-symbols-outlined {
        font-size: 32px;
        transition: transform 0.3s ease-in-out;
    }

    .menu-toggle.active .material-symbols-outlined {
        transform: rotate(180deg);
    }

    .why-choose-us-dog {
        max-width: 200px;
    }

    .award{
        width: 100%;
    }

    .adopt-content-container {
        flex-direction: column;
        margin-top: 0rem;
        margin-bottom: 5rem;
    }
    
    .adopt-image-carousel {
        width: 90%;
        margin-bottom: 0rem;
        margin: auto;
    }

    .adopt-text-content {
        padding-top: 0rem;
        width: 90%;
        margin: auto;
    }

    .adopt-subtitle{
        margin-bottom: 3rem;
    }

}


@media (max-width: 700px) {

    .about-right{
        max-width: 80%;
    }

    .why-choose-us-left-container{
        width: 90%;
    }

    .header-section {
        background-position: 50% 30%; 
    }

    .why-choose-us-right-container {
        display: none;
    }

    .why-choose-us-container{
        justify-content: center;
    }

    .about-image img {
        width: 100%;
    }

    .outer-box.loaded {
        top: 36px;
        left: 36px;
        right: -36px;
        bottom: -36px;
    }

    .double-box-container {
        right: 18px;
    }

    .adopt-image-carousel {
        width: 100%;
    }

    .adopt-text-content {
        padding-top: 0rem;
        width: 100%;
        margin: none;
    }

    .carousel-button {
        padding: 0.3em;
        font-size: 0.5em;
    }
}


@media (max-width: 480px) {

    .about-right{
        max-width: 90%;
    }

    .outer-box.loaded {
        top: 24px;
        left: 24px;
        right: -24px;
        bottom: -24px;
    }

    .double-box-container {

        width: 85vw;
        right: 12px;
    }

    .curve-svg {
        height: 100%;
        width: auto;    
    }

}