  .bodyy {

    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;

  }
/* header */
.shopify-header {
    background: linear-gradient(to right, white 0%, rgba(246, 223, 243, 0.836) 100%);
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 999;
  font-family: 'Inter', sans-serif;
}

/* .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
} */

.nav-wrapper {
  display: flex;
  align-items: center; /* This ensures vertical alignment */
  justify-content: space-between;
  height: 70px;
}

.logo {
  /* Remove padding-top here */
  font-size: 1.8rem;
  font-weight: 700;
  color: #645deb;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-align: center;
}

.logo img{
  height: auto;
  width: 200px;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
   /* margin-top: 16px; */
}

header .nav-links li a {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #434343;
  transition: color 0.3s ease;
  position: relative;
}
header nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: #d55e2f;
  transition: width 0.3s ease;
}

header nav li a:hover::after {
  width: 100%;
}
header .nav-links a.active {
  color: #41943b;
}

header .nav-links li a:hover {
  color:#41943b;
}

.nav-cta {
  display: flex;
  gap: 15px;
  align-items: center;
}

header .btn {
  padding: 10px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  user-select: none;
  text-decoration: none;
}

header .btn-primary {
  background-color : #00661bc4;;
  color: white;
  border: none;
}

header .btn-primary:hover {
  background-color:  #00661ba5;
  border: none;
}

header .btn-outlin {
  background-color: transparent;
  color: rgba(76, 141, 18, 0.781);
  border:none
}

header .btn-outlin:hover {
  background-color: rgba(147, 245, 61, 0.5);
  color: #2c630d;
}

/* Mobile Menu Toggle (for smaller screens) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 26px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: content-box;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color:#684371;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo img{
    height: auto;
    width: 150px;
    align-items: center;
  }
  .nav-links.active{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 140px;
    right: 0px;
    width: 100vw;
    background-color: #edfae6;
    padding: 20px;
    gap: 20px;
    z-index: 998;
  }
  .nav-cta.active {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    right: 0px;
    width: 100vw;
    background-color: #edfae6;
    padding: 20px;
    gap:20px;
    z-index: 998;
  }
  .nav-cta.active .btn{
    padding: 10px 30px;
    font-size: 10px;
  }
  .nav-cta.active .btn-outlin{
    font-size: 14px;
    padding: 7px 30px;
  }
}



  .contact-wrapper {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
  }

  .contact-form-section {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-form-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
  }

  .form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    background-color: white;
  }

  .form-control::placeholder {
    color: #6c757d;
  }

  form .btn-send {
    background-color: white;
    color: #795776;
    border: 1px solid #795776;
    padding: 10px 40px;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }

  form .btn-send:hover {
    background-color: #795776;
    color: white;
  }

  .contact-image-section {
    width: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .contact-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 768px) {
    .contact-wrapper {
      flex-direction: column;
    }

    .contact-form-section,
    .contact-image-section {
      width: 100%;
    }

    .contact-image-section {
      height: 300px;
    }
  }








/* footer */
.footer_area {
  padding: 0px 0 10px;
  background-color: #ebebeb;
}
.footer_area li{
  font-size: 18px;
  font-weight: 500;
  color: #a8a8a8;
  margin-right: 50px;
}
.footer-logo img {
  max-width: 300px;
}

.footer_social_area i {
  font-size: 20px;
  transition: color 0.3s;
}
.nav .footer-item{
  font-size: 12px;
  margin-left: 0px;
  padding: 0;
}
.nav .footer-item i{
  font-size: 5px;
}
.footer_area a{
  text-decoration: none;
}

.footer_social_area .social-icon {
  font-size: 20px;
  color: white;
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer_social_area .facebook { color: #3b5998; }
.footer_social_area .instagram { color: #E1306C; }
.footer_social_area .linkedin { color: #0077B5; }
.footer_social_area .twitter { color: #1d1d1d; }
.footer_social_area .youtube { color: #FF0000; }

.footer_social_area .social-icon:hover {
  opacity: 0.8;
  transform: scale(1.1);
  text-decoration: none;
}

.input-group input[type="email"] {
  border-radius: 30px 0 0 30px;
  border: 2px solid #6d3c75;
  padding: 12px 20px;
  font-size: 1rem;
  box-shadow: none;
}

.input-group .btn-primary {
  border-radius: 0 30px 30px 0;
  padding: 12px 30px;
  background-color: #6d3c75;
  border: 2px solid #6d3c75;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

footer .nav-link{
padding-left: 400px;
}
.input-group .btn-primary:hover {
  background-color:#633769;
  color:white ;
}


.row.mb-4 {
  margin-bottom: 2rem !important;
}


@media (max-width: 992px) {
  .footer_area li {
    font-size: 16px;
    margin-right: 30px;
  }

  .footer_social_area .social-icon {
    font-size: 18px;
    padding: 8px;
  }

  .input-group input[type="email"],
  .input-group .btn-primary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .footer_area {
    padding: 40px 0 20px;
    text-align: center;
  }
  .copy-right{
  margin-left: 0px;}

  .footer_area li {
    display: block;
    margin: 10px auto;
  }

  .footer_social_area {
    margin-top: 20px;
  }

  .footer_social_area .social-icon {
    margin: 0 5px;
    font-size: 16px;
    padding: 8px;
  }

  .input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .input-group input[type="email"] {
    border-radius: 30px;
    margin-bottom: 10px;
    width: 100%;
  }

  .input-group .btn-primary {
    border-radius: 30px;
    width: 100%;
  }
  
}

@media (max-width: 576px) {
  .footer_area li {
    font-size: 18px;
  }

  .input-group input[type="email"],
  .input-group .btn-primary {
    font-size: 0.85rem;
    border: none;
    border-radius: 0;
  }

  .footer_social_area .social-icon {
    font-size: 14px;
    padding: 6px;
  }
  .copy-right{
  margin-left: 0px;
}
}
 