/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(120deg, #ff9a9e, #fad0c4, #fbc2eb);
    background-size: 300% 300%;
    animation: gradientBackground 10s ease infinite;
    color: #fff;
    overflow-x: hidden;
}

h1, h2, p {
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 20px 0;
    animation: fadeIn 2s ease;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #ff7eb3;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    transition: background 0.3s ease;
    animation: fadeIn 2.5s ease;
}

.cta-button:hover {
    background: #ff5283;
}

/* Section Styles */
.section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: #f1f1f1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* Cursor */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

.cursor {
    width: 8px;
    height: 8px;
    background: #ff7eb3;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid #ff7eb3;
    background: transparent;
    transition: transform 0.2s ease;
}

.cursor-hover {
    transform: scale(3);
    background: #ff5283;
}

/* Animations */
@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Atrium Button Styling with Protrusion */
.atrium {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
}

/* Protruding Contact Tab */
#contact-sign {
    position: relative;
    background-color: #ff7eb3;
    color: white;
    border-radius: 50px;
    padding: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Protrusion effect */
#contact-sign:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px; /* Adjust this value to control protrusion width */
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: #ff7eb3;
    border-radius: 50%;
}

/* Hover Effect for Button */
#open-contact-form {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* Hover Effect for Button */
#open-contact-form:hover {
    background-color: #ff5283;
}

/* Contact Form Container Styling */
.contact-form-container {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.close-button {
    font-size: 30px;
    color: white;
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form h2 {
    color: #ff7eb3;
    font-size: 1.5rem;
    text-align: center;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group input, .input-group textarea {
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    width: 100%;
}

.cta-button {
    background-color: #ff7eb3;
    color: white;
    padding: 12px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ff5283;
}


/* Ripple Effect Styling */
.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    animation: ripple-animation 1s ease-out;
    transform: scale(0);
}

@keyframes ripple-animation {
    to {
        transform: scale(15);
        opacity: 0;
    }
}


.service-images-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.service-images-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: none;  /* Hide all images initially */
}

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 50%;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

#service-images {
    display: none;  /* Initially hidden */
}