/* General Styles */

body {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400; /* Normal weight */
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: url("imgs/gd.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* Add media queries for responsiveness */

h1,
h2,
h3,
strong {
  font-weight: 700; /* Bold weight */
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid white;
}

.header h1 {
  font-size: 3rem;
  margin: 0;
}

.tagline {
  font-size: 1.2rem;
  margin: 10px 0;
  font-style: italic;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  color: white;
  background-color: #ff7300;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #ff9c33;
}

/* Services Section */
.services {
  padding: 50px 20px;
  text-align: center;
  background: transparent;
  color: #ff9c33;
}

@media (max-width: 768px) {
  .services {
    background-position: center top;
  }
}

.services h2 {
  font-size: 2.5rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: linear-gradient(to bottom right, #ff7300, #00c6ff);
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card img {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.cta-whatsapp {
  display: inline-block;
  padding: 15px 30px;
  color: white;
  background-color: #25d366;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.cta-whatsapp:hover {
  background-color: #1ebc58;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 20px;
}

.footer a {
  color: #ff7300;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}
/* Default styling for the WhatsApp icon */
/* Default styling for the WhatsApp icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  z-index: 1000;
  width: 60px; /* Icon size */
  height: 60px;
  cursor: pointer;
  animation: blinkResize 2s infinite; /* Apply the animation */
}

/* Icon image styling */
.whatsapp-icon img {
  width: 100%; /* Ensure the image fits the container */
  height: auto;
  border-radius: 50%; /* Optional: Make the icon circular */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow for better visibility */
}

/* Animation for blinking and resizing */
@keyframes blinkResize {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  75% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hover effect */
.whatsapp-icon:hover {
  animation: none; /* Stop animation on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-icon {
    bottom: 15px; /* Adjust position for smaller screens */
    right: 15px;
    width: 50px; /* Reduce size for smaller screens */
    height: 50px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    bottom: 10px; /* Further adjust for very small screens */
    right: 10px;
    width: 40px; /* Smaller icon size */
    height: 40px;
  }
}
