:root {
  --basic-color: #f3f2f6;
  --card-color: white;
  --font-color: #f9fafb;
  --p-color: black;
}

.logo img {
  border-radius: 111px;
  width: 36px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: system-ui, -apple-system, sans-serif; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
}

/* Navbar code */

.navbar {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  /* max-width: 1200px; */
  width: 90vw;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--font-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(249, 250, 251, 0.15);
}
.nav-links a:active {
  background-color: #dc2626;
  color: white;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--font-color);
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 948px) {
  .nav-links {
    gap: 1rem;
    background: linear-gradient(135deg, #fa3030 0%, #1e40af 100%);
    width: 250px;
    margin: auto;
    border-radius: 45px;
  }
  .nav-links {
    position: absolute;
    right: 0;
    left: 0;
    top: 70px;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-container {
    gap: 1rem;
    padding: 0 1rem;
  }
}

/* Footer css */

.mfooter {
  /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */
  color: #ecf0f1;
  padding: 3rem 0 1rem;
  margin-top: auto;
  background-color: #030a1e !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
}

.footer-section:hover h3::after {
  width: 50px;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #3498db;
  transform: translateX(5px);
}

.footer-section ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #3498db;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3498db;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

.social-link:hover {
  background: #3498db;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-info {
  color: #bdc3c7;
}

.contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.contact-info div:hover {
  color: #3498db;
}

.contact-info div::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.contact-info div:hover::before {
  opacity: 1;
}

.contact-info .address::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233498db' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: 14px;
}

.contact-info .phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233498db' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.contact-info .email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233498db' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.contact-info .hours::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233498db' viewBox='0 0 24 24'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'/%3E%3C/svg%3E%3Cpath d='m12.5 7-1 0 0 6 5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-left {
  color: #95a5a6;
  font-size: 0.9rem;
}

.footer-bottom-right {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-right a {
  color: #95a5a6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-right {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-container {
    padding: 0 0.5rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .contact-info div {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-info div::before {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.special-button {
  position: relative;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  background: linear-gradient(
    135deg,
    rgb(30, 58, 138) 0%,
    rgb(29, 78, 216) 50%,
    rgb(37, 99, 235) 100%
  );
  cursor: pointer;
  border: none;
  border-radius: 68px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  overflow: hidden;
  box-shadow: rgba(29, 78, 216, 0.3) 0px 8px 32px,
    rgba(0, 0, 0, 0.2) 0px 4px 16px, rgba(255, 255, 255, 0.1) 0px 1px 0px inset;
}

.special-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.special-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(29, 78, 216, 0.4), 0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
}

.special-button:hover::before {
  left: 100%;
}

.special-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
