/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: black;
    color: white;
    padding-top: 100px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 10;
    background: black;
}

.logo img {
    height: 80px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover,
nav ul li a.active {
    color: #9b59b6; /* Highlighted color */
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px;
}

.left-section {
    flex: 1;
    background: #202020;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.left-section:hover {
    transform: scale(1.05); /* Zoom effect */
}

.right-section {
    flex: 1;
    margin-left: 40px;
}

/* Heading for the page */
.right-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: top;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Styling for the paragraph text */
.right-section p {
    margin-bottom: 20px;
    line-height: 1.6;
}
/* General styles for phone number and email links */
.contact-link {
    color: #9b59b6;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #6e3d82;
}

/* Styling for the image gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Other existing styles for contact section, footer, etc. */


/* Form Styling */
form input,
form textarea,
form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #151515;
    color: white;
}

form button {
    background: #9b59b6;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

form button:hover {
    background: #ffffff;
}

/* Whatsapp Link */
.whatsapp-link img {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-link img:hover {
    transform: scale(1.2);
}

/* Footer Styling */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    background:transparent;
    padding: 20px 0;
    text-align: center;
    z-index: 100;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Enhanced Address Block Styling */
.address-block {
    padding: 20px;
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a); /* Subtle gradient for material effect */
    border-radius: 15px; /* Smooth rounded edges */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* Light text glow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.7), /* Soft inner shadow for depth */
        0 0 20px rgba(147, 112, 219, 0.5); /* Subtle purple glow */
    color: white;
}

.address-block:hover {
    transform: translateY(-5px) scale(1.05); /* Pop-out effect */
    box-shadow: 
        0 8px 12px rgba(0, 0, 0, 0.5), /* Stronger shadow on hover */
        0 0 40px rgba(147, 112, 219, 0.8), /* Brighter glow */
        inset 0 0 20px rgba(255, 255, 255, 0.1); /* Inner glow effect */
}

/* Add some spacing for better readability */
.address-block p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}
