body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #E3F2FD;
    color: #333;
}

/* Header */
header {
    background-color: #00796B;
    color: white;
    padding: 20px;
}

.logo img {
    width: 150px;
}

/* Cover Image */
.cover img {
    width: 100%;
    height: auto;
}

/* About Section */
.about, .services, .location, .contact,.video-container{
    padding: 20px;
    background: #ffffff;
    margin: 20px;
    border-radius: 10px;
}

/* Service Images Grid */
.service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row on PC */
    gap: 15px;
    padding: 20px;
}

/* Make images responsive */
.service-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .service-container {
        grid-template-columns: repeat(1, 1fr); /* 1 image per row on mobile */
    }
}


/* Google Maps */
.location iframe {
    width: 90%;
    height: 300px;
    border-radius: 10px;
}

/* Contact Section */
.contact a {
    text-decoration: none;
    color: #00796B;
    font-weight: bold;
}


/* Floating Buttons */
.floating-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.whatsapp {
    background: #25D366;
    right: 20px;
}

.call {
    background: #1e88e5; /* Light Blue */
    right: 80px;
}

.floating-btn:hover {
    opacity: 0.8;
}

#video-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #E3F2FD; /* Light Blue Background */
}

#video-section h2 {
    font-size: 24px;
    color: #00796B; /* Dark Green Text */
    margin-bottom: 20px;
}

/* Responsive Video */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* Floating Phone Number */
.floating-phone {
    position: fixed;
    top: 40px;
    left: 20px;
    background-color: #00796B; /* Dark Green */
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.floating-phone:hover {
    background-color: #004D40; /* Darker Green */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header h1,
header p {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

header h1 {
  animation-delay: 0.2s;
}

header p {
  animation-delay: 0.5s;
}

