@import url("https://fonts.googleapis.com/css2?family=Lisu+Bosa:wght@600;800&family=Poppins:wght@400;500;600;700&display=swap");


:root {
    --primary-color: #0063a6;
  --primary-color-light: #20242f;
  --secondary-color: #f49e09;
  --extra-light: rgba(255, 255, 255, 0.5);
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Lisu Bosa", serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.main-content {
  margin-bottom: 0;
}


.footer {
  position: relative;
  width: 100vw;           /* Force full viewport width */
  min-height: 60vh;
  margin-top: 5vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}



.footer-content {
  z-index: 1;
  position: relative;
  text-align: center;
  margin-top: 4rem;
}


.footer-content p {
  font-size: 12px;
  margin-bottom: 15px;
  font-family: "poppins";
  color: var(--white);
}

.cta-button {
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  border-radius: 30px;
  padding: 18px 42px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px); /* Glass blur effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Border to enhance effect */
  font-weight: 400;
  color: white;
  font-size: 24px;
}

.cta-button:hover {
  background-color: #e0e0e0;
}

.social-icons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 21px;
}

.social-icons a {
 color: white;
 font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}



/* Icons Styling */
.icon.whatsapp::before {
  content: "ðŸ“±";
  font-size: 20px;
  color: #1c75bc;
}

.icon.email::before {
  content: "ðŸ“§";
  font-size: 20px;
  color: #1c75bc;
}

.icon.location::before {
  content: "ðŸ“ ";
  font-size: 20px;
  color: #1c75bc;
}

.icon.instagram::before {
  content: "ðŸ“¸";
  font-size: 20px;
  color: #1c75bc;
}
