/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Styling */
.header {
  background: linear-gradient(135deg, #0078d7, #005bb5);
  padding: 1rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo and Title */
.logo-title {
  display: flex;
  align-items: center;
}

/* Animated Logo */
.logo {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  
  /* Entrance Animation */
  animation: logoAppear 1s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

/* Logo Hover Effect */
.logo:hover {
  transform: scale(1.1) rotate(5deg);
  animation: bounce 0.6s ease infinite alternate;
}

/* Keyframes for Initial Logo Animation */
@keyframes logoAppear {
  0% {
    transform: scale(0.8) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Keyframes for Hover Bounce Effect */
@keyframes bounce {
  from {
    transform: scale(1.1) rotate(5deg);
  }
  to {
    transform: scale(1.15) rotate(-5deg);
  }
}

/* Header Title */
.header h1 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

/* Language Selector */
.header select {
  padding: 0.6rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  background: white;
  color: #0078d7;
  border: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.header select:hover {
  background: #0078d7;
  color: white;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header h1 {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
  text-align: center;
  width: 100%;
}


/* Hero Section */
.hero {
  text-align: center;
  padding: 2rem 1rem;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero p {
  color: #555;
  font-size: 1.2rem;
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1rem;
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}
.card-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.card p {
  color: #555;
}

/* Call-to-Action Button */
.cta {
  text-align: center;
  margin: 2rem 0;
}
.cta button {
  background: #0078d7;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cta button:hover {
  background: #005bb5;
}

/* Hidden Form */
.hidden {
  display: none;
}

#quote-form {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 500px;
  margin: 2rem auto;
}

#quote-form h3 {
  margin-bottom: 1rem;
  text-align: center;
}

#quote-form label {
  display: block;
  margin: 0.5rem 0 0.2rem;
  font-weight: bold;
}

#quote-form input,
#quote-form select,
#quote-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

#quote-form .cta-button {
  background: #0078d7;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

#quote-form .cta-button:hover {
  background: #005bb5;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
.footer p {
  font-size: 0.9rem;
}
/* Our Process Section */
.our-process {
  background-color: #ffffff;
  padding: 2rem 1rem;
}

.our-process .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.our-process h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #0078d7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0078d7;
}

.step p {
  color: #555;
}

/* Responsive Design */
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
  }
  .step {
    flex: 1;
  }
}
