/* Base Styles */
:root {
    --primary-color: #D4AF37;
    --secondary-color: #f2f1f3;
    --accent-color: #64ffda;
    --text-color: #ccd6f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
     scroll-behavior: smooth; /* Enables smooth scrolling */
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Styles */
/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: #043927;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */

/* Logo */
.logo {
    font-size: 1.9rem;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse 2s infinite;

}


/* Navigation Links (Desktop) */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #D4AF37;
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #D4AF37;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile Responsive Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide menu on small screens */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #043927;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s ease-in-out;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block; /* Show hamburger menu */
    }

    .nav-links.active {
        display: flex; /* Show menu when toggled */
    }
}


/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    background: #e2e2e2;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden; /* Prevents content from overflowing */
}

/* Dark overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2f1f3;
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 850px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9); /* Light background theme */
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Header Row with Logo */
.hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures logo stays on the right */
    gap: 20px;
}

/* Hero Headings */
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    background: none;
    color: #043927;
    margin: 0;
    text-align: left;
}

/* Logo Styling */
.logo-container img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

/* Hero Paragraph */
.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #000000;
    text-align: left;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

/* Restored Button Styles */
.cta-button, .services-button {
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 20px;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

/* CTA Button */
.cta-button {
    background: #043927;
}

.cta-button:hover {
    background-color: var(--primary-color);
}

/* Services Button */
.services-button {
    background: var(--primary-color);
}

.services-button:hover {
    background-color: #043927;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 80px 5%; /* Adjusted padding for better spacing */
        margin-top: 40px; /* Increased margin-top to avoid content being covered by menu */
    }

    .hero-content {
        width: 90%;
        padding: 40px 20px; /* Added more padding for better spacing */
    }

    .hero-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        text-align: center;
    }

    .logo-container img {
        width: 100px;
        margin-bottom: 15px;
    }

    .button-container {
        justify-content: center;
    }
}



/* About Me Section */
/* About Me Section */
#about {
    padding: 80px 10%;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Section Title */
#about .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

/* About Content (Separate sections for slider and description) */
.about-content {
    display: flex;
    flex-direction: column; /* Stack slider and description vertically */
    justify-content: center;
    align-items: center; /* Center the content */
    gap: 50px;
}

/* Slider Section */
.about-photo-slider {
    position: relative;
    width: 100%;
    height: 500px; /* Set a constant height for the slider */
    overflow: hidden;
    border-radius: 5%; /* Apply rounded corners to the slider */
}

.about-photo-slider .slide {
    display: none; /* Hide all slides by default */
    width: 100%;
    height: 100%; /* Ensure the slide takes up the full height of the container */
}

.about-photo-slider .slide img {
    width: 100%;
    height: 100%; /* Make sure the image fills the entire container */
    object-fit: cover; /* Ensure the image covers the container without distortion */
    transition: transform 0.3s ease; /* Smooth transitions */
    border-radius: 5%; /* Maintain rounded corners for images */
}

/* Ensure the images are responsive on mobile */
@media (max-width: 768px) {
    .about-photo-slider {
        height: 400px; /* Adjust the height for smaller screens */
    }
}

/* Add hover effect */
.about-photo-slider .slide img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Transition for sliding effect */
@keyframes slideShow {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* About Description Section */
.about-description {
    max-width: 700px; /* Limit the width of the description */
    font-size: 1.2rem;
    color: #000000;
    text-align: left; /* Center-align text */
    padding-top: 20px; /* Add space above the paragraph */
    margin: 0 auto; /* Center the description block */
}

/* Paragraph styles */
.about-description p {
    margin-bottom: 20px;
}

/* Button styles */
.btn-consultation {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 10px; /* Curvy on two sides, pointy on the other two */
    transition: background-color 0.3s ease;
	
}

.btn-consultation:hover {
    background-color: #043927;
    color: #ffffff;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #about {
        padding: 60px 5%;
    }

    .about-description {
        font-size: 1rem;
        text-align: center;
        max-width: 90%; /* Adjust the width for smaller screens */
    }
}


/* Sections Common Styles */
section {
    padding: 100px 10%;
    min-height: 100vh;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: #043927;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* Services Grid */
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr)); /* 3 items per row */
    gap: 30px;
    text-align: center;
}

/* Responsive Design: 1 item per row on smaller screens */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 item per row */
    }
}

.service-card {
    background: #043927;
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    transition: 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
}

.service-card i {
    font-size: 4.0rem; /* Larger icons like destination section */
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1.2rem;
    color: #ffffff;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #022B1D;
    color: #ffffff;
}

/* Portfolio Section */
/* Portfolio Section */
/* Portfolio Section */
#portfolio {
    padding: 80px 10%;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #333;
}

#portfolio .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #043927;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px;
}

.portfolio-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Image Slider */
.villa-slider {
    position: relative;
    width: 100%;
    height: 400px; /* Default height */
    overflow: hidden; 
    border-radius: 8px;
}

.slide {
    display: none; /* Hide all slides by default */
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block; /* Show the active slide */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px;
}

/* Navigation Buttons */
.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1;
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

/* Title and Description */
.portfolio-item h3 {
    font-size: 1.8rem;
    color: #043927;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
}

.portfolio-item p {
    font-size: 1.1rem;
    color: #555555;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

/* Price */
.price {
    font-size: 1.3rem;
    color: #d4af37;
    font-weight: bold;
    margin-top: 15px;
}

/* "Book Now" Button */
.book-now-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #043927;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.book-now-btn:hover {
    background: #d4af37;
    color: #000;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .villa-slider {
        height: 250px; 
    }

    .slide img {
        object-position: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #portfolio {
        padding: 60px 5%;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .portfolio-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .villa-slider {
        height: 250px; 
    }

    .portfolio-item h3 {
        margin-top: 10px;
    }

    .portfolio-item p {
        margin-top: 5px;
    }

    .price {
        margin-top: 10px;
    }

    .book-now-btn {
        margin-top: 15px;
    }

    .prev-slide, .next-slide {
        font-size: 1.5rem;
        padding: 10px;
    }
}


/*Map Section*/
/* General Styles for Location Section */
#location {
    padding: 50px 10%;
    background: #f2f2f2;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

/* Title Styling */
#location .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #043927;
    margin-bottom: 30px;
    animation: slideInFromTop 1s ease-out;
}

/* Container for Map and Image */
.location-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Map Styling */
.map-container {
    width: 100%;
    margin-bottom: 30px; /* Add spacing between map and image */
    max-width: 100%;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

/* Map iframe Styling */
.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Hover Effect for Map */
.map-container iframe:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Image Section Styling */
.image-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and the next section */
}

/* Image Styling */
.image-container .image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Image */
.image-container .image-content:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #location {
        padding: 30px 5%; /* Adjust padding for mobile */
    }

    /* Map on mobile */
    .map-container iframe {
        height: 300px; /* Reduce height for smaller screens */
    }

    /* Image section on mobile */
    .image-container {
        border-radius: 8px;
    }

    /* Adjust image text size for mobile view */
    .text-overlay h3 {
        font-size: 1.8rem;
    }

    .text-overlay p {
        font-size: 1rem;
    }

    .image-container .image-content {
        width: 100%;
        height: 100%;
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Numbers Section */
/* Background for the numbers area */
#numbers{
	
	background: #e2e2e2 ;
}
.numbers-background {
    background:#043927 ; /* Dark background */
    padding: 50px 10%;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    margin: 50px 0;
    backdrop-filter: blur(10px); /* Blur effect */
}

/* Flexbox to display number cards in one row */
.numbers-grid {
    display: flex;
    justify-content: space-between; /* Even spacing between the cards */
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between number cards */
}

/* Number card styles */
.number-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
    flex: 1; /* Cards take equal width */
    min-width: 150px; /* Minimum width for better text fit */
}

/* Styling for the plus sign */
.numbers-grid .number-card h3 {
    display: inline-block;
    font-size: 3rem;
    color: var(--primary-color);
}

.numbers-grid .number-card span {
    font-size: 3rem;
    color:var(--primary-color);
    margin-left: 5px;
}
.numbers-grid .number-card p {
   
    color: var(--primary-color);
    
}

/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
    .numbers-background {
        padding: 30px 5%; /* Reduced padding for smaller screens */
    }

    .numbers-grid {
        flex-direction: column; /* Stack the cards vertically */
        align-items: center; /* Center the cards */
        gap: 20px; /* Space between the cards */
    }

    .number-card {
        min-width: unset; /* Remove minimum width to allow the cards to be smaller */
        width: 100%; /* Full width of the container */
        padding: 20px;
    }

    .numbers-grid .number-card h3 {
        font-size: 2rem; /* Smaller font size for numbers */
    }

    .numbers-grid .number-card span {
        font-size: 2rem; /* Smaller font size for plus sign */
    }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr)); /* 3 items per row */
    gap: 30px;
    text-align: center;
}

/* Responsive Design: 1 item per row on smaller screens */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 item per row */
    }
}


.tech-card {
    background:  #043927;
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    transition: 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
}

.tech-card i {
    font-size: 4.0rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tech-card h3 {
    font-size: 2.0rem;
    font-weight: bold;
	color:var(--primary-color);
}
.tech-card p {
    font-size: 1.2rem;
    
	color:#ffffff;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: #022B1D;
	color: #ffffff;
	
}



/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9; /* Soft background for the testimonials */
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    border: 1px solid rgba(100, 255, 218, 0.1);
    color: #2e3a59; /* Darker text color for readability */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow to give depth */
}

.testimonial-card h3 {
    margin-top: 20px;
    font-weight: bold;
    color: #043927; /* Matching color with your theme */
}

.stars {
    display: flex;
    gap: 5px; /* Space out the stars */
    margin-top: 10px;
}

.stars .fas {
    color: var(--primary-color); /* Gold color for the stars */
    font-size: 18px;
}

.testimonial-card p {
    font-style: italic;
    color: #333; /* Dark text for better readability */
}


/* Contact Section Styles */
/* Contact Section */
#contact {
    padding: 80px 10%;
    background-color: #e2e2e2 ;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: #043927;
	
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: #043927;
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    border: 1px solid rgba(100, 255, 218, 0.1);
}

/* Input & Textarea Styling */
.contact-form .input-group {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #f7f7f7;
    color: #000000;
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    background: #ffffff;
    outline: none;
}

/* Placeholder Text */
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #717171;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.submit-button:hover {
    background: #CBA135;
    transform: translateY(-5px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #contact {
        padding: 60px 5%;
    }

    .contact-container {
        padding: 25px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 1rem;
    }

    .submit-button {
        font-size: 1rem;
    }
}


/* Footer Styles */
/* Footer Styling */
#footer {
    background: #043927;
    color: var(--primary-color);
    padding: 40px 10%;
    font-size: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Section (Address, Hours, Phone, Email) */
.footer-left {
    flex: 1;
    padding-right: 20px;
    margin-bottom: 20px;
}

.footer-left p {
    margin: 5px 0;
}

/* Middle Section (Menu) */
.footer-menu {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
}

.footer-menu ul li {
    margin: 10px 0;
}

.footer-menu ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #ffffff;
   
}

/* Right Section (Social Links) */
.footer-social {
    flex: 1;
    text-align: right;
    margin-bottom: 20px;
}

.footer-social a {
    text-decoration: none;
    color: var(--primary-color);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    font-size: 1.0rem;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Stack the sections on smaller screens */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust Menu Section */
    .footer-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu ul li {
        margin: 5px 0;
    }

    /* Adjust Social Icons */
    .footer-social {
        text-align: center;
        margin-top: 20px;
    }

    .footer-social a {
        margin: 0 8px;
    }
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse 2s infinite;
	color:#ffffff;
}

.chat-btn:hover{
	color:#ffffff;
	background-color: #B8860B;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    header {
        padding: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}