@charset "utf-8";


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    button[type="submit"] {
        font-family: inherit;
        font-size: 16px;
    }
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(
        135deg,
        #0c0c0c 0%,
        #1a1a2e 15%,
        #16213e 35%,
        #0f3460 50%,
        #533a7d 70%,
        #8b5a8c 85%,
        #a0616a 100%
    );
    min-height: 100vh;
    overflow-x: hidden;
}
/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}
.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}
.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}
.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}
.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}
.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}
.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px)
            rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}
/* Glass container styles */
.glass {
    background: rgba(45, 55, 83, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass:hover {
    background: rgba(138, 170, 179, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
/* Header styles */
header {
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Page system */
.page {
    display: none;
    min-height: 100vh;
    padding: 40px 20px 20px;
}
.page.active {
    display: block;
}
/* Content wrapper to contain page content */
.content-wrapper {
    min-height: calc(100vh - 300px);
}
/* Home page styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-content {
    text-align: left;
}
.hero h1 {
    font-size: 2.0rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero p {
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.feature-card {
    padding: 40px 30px;
    text-align: center;
    color: white;
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.about-text {
    padding: 40px;
    color: white;
}
.about-text h2 {
    font-size: 2.0rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-text p {
    font-size: 1.0rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}
/* Team section styles */
.team-section {
    margin-bottom: 60px;
}
.team-section h2 {
    font-size: 2.0rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-member {
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}
.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}
/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.service-card {
    padding: 40px 30px;
    color: white;
    text-align: left;
}
.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}
.service-card h3 {
    font-size: 1.4rem;
    color: white;
}
.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
}
.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}
/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-map-section {
    margin-top: 40px;
}
.contact-form {
    padding: 40px;
}
.contact-form h2 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


/* From Uiverse.io by xyzswas */ 
.lgc-radio-wrapper {
  margin: 0;
  padding: 2rem;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.liquid-radio {
  --primary-hue: 280;
  --secondary-hue: 320;
  --tertiary-hue: 200;
  --saturation: 45%;
  --lightness: 85%;
  --border-radius: 2em;
  --transition-duration: 0.4s;
  --scale-factor: 1;

  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
  transition: all var(--transition-duration)
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.liquid-radio:hover {
  --scale-factor: 1.03;
  transform: scale(var(--scale-factor)) translateZ(5px);
}

.liquid-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.liquid-radio .radio-visual {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.75em;
  border-radius: var(--border-radius);
  background: linear-gradient(
    135deg,
    hsl(var(--primary-hue), var(--saturation), var(--lightness)),
    hsl(var(--secondary-hue), var(--saturation), var(--lightness)),
    hsl(var(--tertiary-hue), var(--saturation), var(--lightness))
  );
  border: 0.125em solid
    hsla(
      var(--primary-hue),
      var(--saturation),
      calc(var(--lightness) - 20%),
      0.4
    );
  transition: all var(--transition-duration)
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 0.25em 0.5em
      hsla(
        var(--primary-hue),
        var(--saturation),
        calc(var(--lightness) - 40%),
        0.15
      ),
    0 0.125em 0.25em
      hsla(
        var(--primary-hue),
        var(--saturation),
        calc(var(--lightness) - 30%),
        0.2
      ),
    0 0.0625em 0.125em hsla(0, 0%, 0%, 0.1),
    inset 0 0.125em 0.25em hsla(0, 0%, 100%, 0.6),
    inset 0 -0.0625em 0.125em hsla(var(--primary-hue), var(--saturation), calc(var(
              --lightness
            ) - 15%), 0.3);
  transform-style: preserve-3d;
}

.liquid-radio .radio-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    hsl(
      var(--primary-hue),
      calc(var(--saturation) + 25%),
      calc(var(--lightness) - 25%)
    ),
    hsl(
      var(--secondary-hue),
      calc(var(--saturation) + 20%),
      calc(var(--lightness) - 35%)
    ),
    hsl(
      var(--primary-hue),
      calc(var(--saturation) + 15%),
      calc(var(--lightness) - 45%)
    )
  );
  transform: translate(-50%, -50%) scale(0) translateZ(2px);
  transition: all var(--transition-duration)
    cubic-bezier(0.68, -0.25, 0.265, 1.25);
  opacity: 0;
  box-shadow:
    0 0.0625em 0.125em
      hsla(
        var(--primary-hue),
        var(--saturation),
        calc(var(--lightness) - 50%),
        0.4
      ),
    inset 0 0.0312em 0.0625em hsla(0, 0%, 100%, 0.4);
}

.liquid-radio .radio-visual::after {
  content: "";
  position: absolute;
  top: -0.1875em;
  left: -0.1875em;
  right: -0.1875em;
  bottom: -0.1875em;
  border-radius: calc(var(--border-radius) + 0.0625em);
  background: radial-gradient(
    ellipse at top left,
    hsla(var(--primary-hue), var(--saturation), var(--lightness), 0.6),
    hsla(var(--secondary-hue), var(--saturation), var(--lightness), 0.4),
    hsla(var(--tertiary-hue), var(--saturation), var(--lightness), 0.2)
  );
  opacity: 0;
  transition: all var(--transition-duration)
    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
  filter: blur(0.125em);
}

.liquid-radio:hover .radio-visual {
  --saturation: 55%;
  --lightness: 88%;
  transform: translateY(-0.125em) rotateX(5deg) translateZ(3px);
  box-shadow:
    0 0.5em 1em
      hsla(
        var(--primary-hue),
        var(--saturation),
        calc(var(--lightness) - 40%),
        0.2
      ),
    0 0.25em 0.5em
      hsla(
        var(--primary-hue),
        var(--saturation),
        calc(var(--lightness) - 30%),
        0.25
      ),
    0 0.125em 0.25em hsla(0, 0%, 0%, 0.15),
    inset 0 0.1875em 0.375em hsla(0, 0%, 100%, 0.7),
    inset 0 -0.0625em 0.125em hsla(var(--primary-hue), var(--saturation), calc(var(
              --lightness
            ) - 15%), 0.4);
}

.liquid-radio:hover .radio-visual::after {
  opacity: 1;
  transform: translateZ(-1px) scale(1.1);
}

.liquid-radio input[type="radio"]:focus + .radio-visual {
  outline: 0.125em solid
    hsl(var(--primary-hue), var(--saturation), calc(var(--lightness) - 40%));
  outline-offset: 0.125em;
}

.liquid-radio input[type="radio"]:checked + .radio-visual {
  --saturation: 65%;
  --lightness: 80%;
  background: radial-gradient(
    ellipse at top left,
    hsl(var(--primary-hue), var(--saturation), calc(var(--lightness) + 5%)),
    hsl(var(--secondary-hue), var(--saturation), var(--lightness)),
    hsl(var(--tertiary-hue), var(--saturation), calc(var(--lightness) - 5%))
  );
  border-color: hsl(
    var(--primary-hue),
    calc(var(--saturation) + 10%),
    calc(var(--lightness) - 30%)
  );
  box-shadow:
    0 0.375em 0.75em
      hsla(
        var(--primary-hue),
        var(--saturation),
        calc(var(--lightness) - 40%),
        0.25
      ),
    0 0.1875em 0.375em
      hsla(
        var(--primary-hue),
        var(--saturation),
        calc(var(--lightness) - 30%),
        0.3
      ),
    0 0.0625em 0.125em hsla(0, 0%, 0%, 0.2),
    inset 0 0.1875em 0.375em hsla(0, 0%, 100%, 0.8),
    inset 0 -0.0625em 0.1875em hsla(var(--primary-hue), var(--saturation), calc(var(
              --lightness
            ) - 20%), 0.4);
  transform: translateZ(2px);
}

.liquid-radio input[type="radio"]:checked + .radio-visual::before {
  transform: translate(-50%, -50%) scale(1) translateZ(2px);
  opacity: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

.liquid-radio input[type="radio"]:active + .radio-visual {
  transform: scale(0.96) translateY(0.0625em) rotateX(-2deg);
  transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow:
      0 0.0625em 0.125em
        hsla(
          var(--primary-hue),
          var(--saturation),
          calc(var(--lightness) - 50%),
          0.4
        ),
      inset 0 0.0312em 0.0625em hsla(0, 0%, 100%, 0.4);
  }
  50% {
    box-shadow:
      0 0.0625em 0.1875em
        hsla(
          var(--primary-hue),
          var(--saturation),
          calc(var(--lightness) - 50%),
          0.6
        ),
      0 0 0.25em
        hsla(
          var(--primary-hue),
          calc(var(--saturation) + 20%),
          calc(var(--lightness) - 30%),
          0.3
        ),
      inset 0 0.0312em 0.0625em hsla(0, 0%, 100%, 0.6);
  }
}

.liquid-radio .radio-label {
  color: hsl(var(--primary-hue), 25%, 45%);
  font-weight: 500;
  transition: color var(--transition-duration) ease;
}

.liquid-radio:hover .radio-label {
  color: hsl(var(--primary-hue), 35%, 35%);
}

.liquid-radio input[type="radio"]:checked ~ .radio-label {
  color: hsl(var(--primary-hue), 40%, 30%);
}

/* Variant colors */
.liquid-radio.variant-coral {
  --primary-hue: 15;
  --secondary-hue: 45;
  --tertiary-hue: 340;
}

.liquid-radio.variant-mint {
  --primary-hue: 150;
  --secondary-hue: 180;
  --tertiary-hue: 120;
}

.liquid-radio.variant-sky {
  --primary-hue: 200;
  --secondary-hue: 220;
  --tertiary-hue: 260;
}


/* .select{
    border: none;
    appearance: none;
    background-color: rgba(146, 55, 55, 0.9);
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgb(250, 250, 250);
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
} */




.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group option {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}
.contact-info {
    padding: 40px;
    color: white;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}
.contact-item-text h4 {
    color: white;
    margin-bottom: 5px;
}
.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
}
.contact-map {
    padding: 40px;
    color: white;
    width: 100%;
}
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}
.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}
.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}
/* Footer styles */
#footer {
    margin-top: 60px;
    padding: 30px 0;
}
.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
}
.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.copyright a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}
/* Responsive design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Adjust padding for mobile */
    .page {
        padding: 30px 20px 20px;
    }
    .content-wrapper {
        min-height: auto;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .hero-content {
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }
    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 20px;
    }
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-links {
        gap: 15px;
        flex-direction: column;
    }
    .footer-links a {
        display: block;
        text-align: center;
    }
    button[type="submit"] {
        width: 100%;
    }
    .map-container {
        height: 350px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .logo {
        font-size: 22px;
    }
}

.logon{
    font-size: 1.2rem;
}





@layer presentation, demo;

@layer demo {
  :root {
    --selected-color: oklch(99% 0.44 280);
    --light-color: oklch(90% 0.49 269);

    /*     for body bg */
    --bg-color: oklch(90% 0.37 274);
    --bg-color-center: oklch(99% 0.17 285);
    @supports (interpolate-size: allow-keywords) {
      interpolate-size: allow-keywords;
    }
  }

  select {
    position: relative;
    display: flex;
    width: 64px;
    height: 64px;
    padding: 0;
    place-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    background: var(--selected-color);
    border: none;
    border-radius: 50%;
    aspect-ratio: 1;
    appearance: none;
    @supports (appearance: base-select) {
      appearance: base-select;
    }
    &::picker-icon {
      display: none;
    }
  }

  /*   currently using a point-event hack for touch-devices */
  @supports (appearance: base-select) {
    select::picker(select) {
      position: absolute;
      inset-block: anchor(top) anchor(bottom);
      z-index: auto;
      display: none;
      width: 64px;
      height: 64px;
      padding: 0;
      background: var(--light-color);
      border: 0;
      border-radius: 60px;
      box-shadow: oklch(73% 0.39 280 / 0%) 0px 10px 50px;
      overflow: clip;
      appearance: base-select;
      transition: width 0.5s ease-out, height 0.5s ease-out,
        box-shadow 0.5s ease-out, display 0.5s, overlay 0.5s,
        pointer-events 0.5s;
      transition-behavior: allow-discrete;
      @media (max-width: 600px) {
        inset-block: anchor(top) auto;
      }
    }

    select:open::picker(select) {
      display: flex;
      width: auto;
      height: auto;
      box-shadow: oklch(73% 0.39 280 / 58%) 0px 10px 50px;
      pointer-events: auto;
      @starting-style {
        width: 64px;
        height: 64px;
        pointer-events: none;
      }
    }
  }

  select .items {
    position: relative;
    display: flex;
    align-items: stretch;
    transform-origin: 2% center;
    font-size: 2rem;
    line-height: 1;
    border-radius: 60px;
    overflow: auto;
    scrollbar-width: none;

    @media (max-width: 600px) {
      flex-direction: column;
    }

    @media screen and (max-width: 600px) and (max-height: 455px) {
      overflow-x: hidden;
      scrollbar-width: thin;
    }
  }

  @keyframes wiggle {
    0% {
      transform: rotate(10deg);
    }
    25% {
      transform: rotate(-10deg);
    }
    50% {
      transform: rotate(20deg);
    }
    75% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  option {
    position: relative;
    display: flex;
    flex: 0 0 64px;
    min-width: 64px;
    min-height: 65px;
    padding: 0 1rem;
    align-items: center;
    font-size: 2rem;
    line-height: 1;
    background: var(--light-color);
    cursor: pointer;
    transition: background 0.4s;

    @media (max-width: 600px) {
      justify-content: center;
    }
    &:first-child {
      border-radius: 60px 0 0 60px;

      @media (max-width: 600px) {
        border-radius: 60px 60px 0 0;
      }
    }
    &:last-child {
      border-radius: 0 60px 60px 0;
      @media (max-width: 600px) {
        border-radius: 0 0 60px 60px;
      }
    }
    &:is(:hover, :focus-visible) span {
      animation: wiggle 2s ease-out infinite;
    }

    &:checked {
      position: sticky;
      inset-block: 0;
      inset-inline-end: 0;
      z-index: 1;
      background: var(--selected-color);
      @media (max-width: 600px) {
        inset-block: auto 0;
        inset-inline: 0;
      }
    }

    &::checkmark {
      display: none;
    }

    @media (max-width: 500px) {
      padding: 0.5rem;
    }
  }
}

@layer presentation {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  .bbbody {
    position: relative;
    display: flex;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    flex-direction: column;
    place-content: center;
    place-items: center;
    background-image: radial-gradient(
      closest-corner circle at 50% 50% in oklab,
      var(--bg-color-center) 0%,
      var(--bg-color)
    );
    @media (max-height: 650px) {
      place-content: start;
      padding-top: 20px;
    }
  }

  .inclusively-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}


.box {
    width: 300px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    user-select: none;

    label {
        font-size: 17px;
        color: #cfcaca;
        position: absolute;
        z-index: 10;
        padding-left: 50px;
        cursor: pointer;
    }

    input {
        opacity: 0;
        visibility: hidden;
        position: absolute;

        &:checked {

            ~ .check {
                border-color: #00EA90;
                box-shadow: 0px 0px 0px 15px #00EA90 inset;

                &::after {
                    opacity: 1;
                    transform: scale(1);
                }
            }
        }
    }

    .check {
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        border-radius: 100px;
        background-color: #FFF;
        border: 2px solid #00EA90;
        box-shadow: 0px 0px 0px 0px #00EA90 inset;
        transition: all 0.15s cubic-bezier(0, 1.05, 0.72, 1.07);

        &::after {
            content: '';
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 4;
            position: absolute;
            transform: scale(0);
            background-size: 50%;
            background-image: url('https://s6.picofile.com/d/8392306668/bacc888c-bed7-41a9-bf24-f6ff0718f471/checkmark.svg');
            background-repeat: no-repeat;
            background-position: center;
            transition-delay: 0.2s !important;
            transition: all 0.25s cubic-bezier(0, 1.05, 0.72, 1.07);
        }
    }
}





