/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Style */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    
}

/* Header and Navigation */
header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
}

.logo img {
    max-height: 50px;
}

.navbar {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: gray;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding-top: 20px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.close-btn {
    text-align: right;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 24px;
}

/* Image Slider */
.slider {
    margin-top: 4px;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.slider-text {
    position: absolute;
    bottom: 240px;
    left: 50px;
    width: 100%;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 24px;
    color: black;
    
    transform: translateX(-100%);
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.5s ;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);

    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-text h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.slider-text p {
    font-size: 25px;
    color: #000;
    font-weight:bolder;
}

/* Responsive Styling */
@media only screen and (max-width: 768px) {
    
    .slider-text {
        bottom: 150px;
        left: 20px;
        font-size: 18px;
    }
    .slider-text h2 {
        font-size: 24px;
    }
    .slider-text p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 480px) {
    
    .slider-text {
        bottom: 100px;
        left: 10px;
        font-size: 16px;
    }
    .slider-text h2 {
        font-size: 20px;
    }
    .slider-text p {
        font-size: 18px;
    }
}

/* Floating Chatbot and WhatsApp Icons */
.chatbot-icon, .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-icon {
    left: 20px;
}

.chatbot-icon {
    right: 20px;
}
/* WhatsApp icon */
.chatbot-icon {
    position: fixed;
    bottom: 20px;  /* Adjust bottom position */
    right: 20px;   /* Adjust right position */
    width: 60px;   /* Increase the width */
    height: 60px;  /* Increase the height */
    cursor: pointer;
    background-image: url('img/callvet2pet.in-removebg-preview.png');  /* Ensure the icon has a transparent background */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Chatbot icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;  /* Adjust bottom position */
    left: 20px;    /* Adjust left position */
    width: 60px;   /* Increase the width */
    height: 60px;  /* Increase the height */
    cursor: pointer;
    background-image: url('img/whatsapp-removebg-preview.png');  /* Ensure the icon has a transparent background */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}



.curtain-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.curtain-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px;
    width: 22%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.curtain-item .image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.curtain-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curtain-item .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 128, 255, 0.8);
    width: 100%;
    text-align: center;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.curtain-item .text {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.curtain-item h3 {
    margin: 15px 0;
    font-size: 18px;
    color: #333;
}

.curtain-item p {
    color: #00a6a0;
    padding: 0 15px 15px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .curtain-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .curtain-item {
        width: 100%;
    }
}



/* styles.css */
#chatbot-launcher {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
}

#chatbot-launcher img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
}

#chatbot-container {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
    z-index: 1000;
}

#chatbot-header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
    position: relative;
}

#chatbot-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#chatbot-messages {
    padding: 10px;
    height: 300px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}

#chatbot-input {
    display: flex;
    padding: 10px;
}

#user-input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}


/* Footer Styles */
.footer-container {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    display: inline;
    margin: 0 10px;
}

.footer-nav ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}
/* Active slide */
.active {
    display: block;
}

/* Navigation buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

/* Hover effect on navigation buttons */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* For smaller screens */
@media (max-width: 768px) {
    .prev, .next {
        font-size: 14px;
        padding: 12px;
    }
}

#navbar-placeholder {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure it's above other elements */
    background-color: white; /* Add a background color if needed */
    box-shadow: 0px 4px 2px -2px gray; /* Optional: add a shadow */
}




.content-section {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    
}

h1 {
    text-align: center;
    font-size: 2rem;
    color: #333;
}

h1 span {
    color: #00A3E0;
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

strong {
    color: #000;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}

.sliding {
    width: 100px;
    height: 100px;
    background-size: cover;
    transition: width 2s, height 2s, transform 2s;
  }
  
  .sliding:hover {
    width: 300px;
    height: 300px;
    transform: rotate(360deg);
  }

  

/* Different background images for each div */
#image1 {
  background-image: url('img/1a.jpg');
}

#image2 {
  background-image: url('https://via.placeholder.com/100x100.png?text=Image2');
}

#image3 {
  background-image: url('https://via.placeholder.com/100x100.png?text=Image3');
}

.details
    {
        height: 60px;
        background-color: cyan;
        text-align: center;
        margin-left: 25px;
        margin-right: 25px;
        border-radius: 10px;
        padding-top: 10px;
    }

    .interior {
        max-width: 1200px;
        margin: 0 auto;
        padding: 5px;
       
    }
    .interiorHeading {
        max-width: 1200px;
        margin: 0 auto;
        padding: 5px;
       
    }

    
    .contacts-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background-color: #fff;
        max-width: 1000px;
        margin: auto;
        
    }
    
    .contacts-info {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .contacts-info div {
        width: 30%;
    }
    
    .contacts-info h3 {
        margin-bottom: 10px;
        color: #333;
        font-size: 18px;
        border-bottom: 2px solid #ddd;
        padding-bottom: 5px;
    }
    
    .contacts-info p {
        margin: 5px 0;
        font-size: 16px;
        color: #555;
    }
    
    .map-container {
        width: 100%;
        
    }
    
    iframe {
        width: 100%;
        height: 450px;
        border: none;
        border-radius: 5px;
    }
    

   
/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .contact-info div {
        width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .contact-info div {
        width: 100%;
    }

    .map-container {
        width: 100%;
        max-width: 100%;
    }

    iframe {
        height: 300px;
    }
}


.responsive-image-container {
    width: 100%;
}

.responsive-image-container img {
    width: 100%;
    object-fit: cover;
}

/* Styles for laptops and larger screens */
@media screen and (min-width: 1024px) {
    .responsive-image-container img {
        height: 65vh; /* 50% of the viewport height */
    }
}

/* Styles for mobile devices */
@media screen and (max-width: 1024px) {
    .responsive-image-container img {
        height: 75vh; /* 75% of the viewport height */
    }
}

/* contact product page */

.contact-us {
    background-color: #f7f7f7;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    font-family: 'Arial', sans-serif;
}

.contact-us h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-us p {
    color: #555;
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 20px;
    color: #333;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-us p:last-child {
    font-size: 16px;
    color: #777;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
    .contact-us {
        padding: 20px;
    }

    .contact-us h2 {
        font-size: 24px;
    }

    .contact-us p {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 18px;
    }
}


   /* Submenu styles */
   .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    list-style: none;
    padding: 10px 0;
    min-width: 150px;
    z-index: 1000;
}
.submenu li {
    margin-right: 0;
}
.submenu a {
    padding: 10px 20px;
    white-space: nowrap;
}
.submenu a:hover {
    background-color: #666;
}
.menu li:hover .submenu {
    display: block;
}




      
       


       