body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: -1;
}

.container {
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  background: #dedfe4;
}
.logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -60px 0 20px;
}

.logo img {
  width: 160px;
  height: 160px;
  border: 8px solid #2f1d03;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.profile-pic {
  width: 100%;
  max-width: 350px;
  height: auto;
  background-color: #f2f2f2;
  position: relative;
  perspective: 1000px;
  margin: 0 auto;
}

.profile-pic-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 80%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

.profile-pic:hover .profile-pic-inner {
  transform: rotateY(180deg);
}

.profile-pic .front,
.profile-pic .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.profile-pic .front img,
.profile-pic .back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-pic .back {
  transform: rotateY(180deg);
}

.profile-pic .back img {
  object-fit: contain;
}

.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.name {
  font-family: "Godber" sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
  position: relative;
  color: #000000;
}

.name::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #ef0a30, #060805);

  border-radius: 5px;
  transition: all 0.3s ease;
}

h3 {
  font-family: "Lora", serif;

  font-size: 24px;

  color: #000000;

  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  font-family: "Roboto", sans-serif;

  font-size: 16px;

  color: #000000;

  display: block;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .name {
    font-size: 30px;
    letter-spacing: 0.5px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }
}

.button {
  background: linear-gradient(90deg, #ef0a30, #060805);
  color: #ffffff;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 0;
  cursor: pointer;
}

.button i {
  font-size: 18px;
}
@keyframes pulseGlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.contact-details .detail {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 16px;
  background: #0f0f0f;
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.contact-details .detail::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #ef0a30, #060805);
  border-radius: 18px;

  opacity: 0.8;
  animation: borderGlow 6s linear infinite;
}

.contact-details .detail i {
  color: #ffffff;
  font-size: 24px;
  margin-right: 20px;
}

.contact-details .detail span {
  font-size: 16px;
  color: #ffffff;
}

.contact-details .detail span a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details .detail span a:hover {
  color: #ffffff;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

.footer {
  background-color: #dedfe4;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.footer .footer-button {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.footer .footer-button i {
  font-size: 18px;
}

.footer .footer-button:hover {
  color: #000000;
}

.about-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #000000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowText 5s linear infinite;
}

.about-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60%;
  height: 4px;
  background: #000000;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(255, 100, 200, 0.5);
}

@keyframes glowText {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.social-container {
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(90deg, #ef0a30, #060805);
  border: 2px solid;

  border-radius: 10px;

  max-width: 400px;
}

.social-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.whatsapp {
  background: #25d366;
}

.linkedin {
  background: #1877f2;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.container + .container {
  margin-top: -20px;
  background-color: #f9f9f9;
  border: 2px solid;
  background: #c54918;
  border-radius: 10px;
  background-color: #4b70b6;
  margin-top: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.modal:target {
  display: flex;
}

@media (max-width: 600px) {
  .container {
    max-width: 90%;
    margin: 20px auto;
  }

  .logo img {
    width: 160px;
  }

  .button {
    padding: 8px 16px;
    font-size: 16px;
  }

  .contact-details .detail span {
    font-size: 16px;
  }
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  background: linear-gradient(90deg, #ef0a30, #060805);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 960px;
  margin: 40px auto;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 480px;
  max-width: 90%;
  text-align: center;
  animation: fadeInScale 0.4s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #bb0d0d;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.popup .close-btn:hover {
  color: #e70606;
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -55%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.goog-te-gadget .goog-te-combo {
  width: 100%;
  max-width: 320px;
  height: 48px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #ffffffcc;
  border: 2px solid #0077cc;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  outline: none;
  appearance: none;
  transition: 0.3s ease;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  transition: opacity 0.3s ease-in-out;
}

.show {
  display: block !important;
  opacity: 1;
}
.products-section {
  max-width: 480px;
  margin: 40px auto;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 24px 24px 70px;
  color: #222;
  position: relative;
  background:linear-gradient(90deg, #ef0a30, #060805);
  border: 2px solid;

  border-radius: 10px;


}

.swiper-container {
  width: 100%;
  overflow: visible;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
}


.swiper-wrapper {
  display: flex;
  align-items: stretch;
}


.swiper-slide.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  color: #444;
  min-height: 380px;
  box-sizing: border-box;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid #eee;
}

.swiper-slide.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.product-card img:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .products-section {
    padding: 20px 16px 60px;
  }

  .product-card img {
    width: 150px;
    height: 150px;
  }
}

.paragraph {
  color: #000000;
}

.sub {
  color: #000000;
}

.gallerySwiper {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.gallerySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.gallerySwiper .swiper-button-prev,
.gallerySwiper .swiper-button-next {
  color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.gallerySwiper .swiper-button-prev {
  left: 10px;
}

.gallerySwiper .swiper-button-next {
  right: 10px;
}

.orange-button,
.dark-button {
  display: inline-block;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  width: 320px;
  margin: 10px 5px;
}

.orange-button {
  background:linear-gradient(90deg, #ef0a30, #060805);
}

.dark-button {
  background: linear-gradient(90deg, #ef0a30, #060805);
}

.form-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-box {
  background: white;
  width: 50%;
  max-width: 400px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.form-header h3 {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
  color: #000;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 1px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.black-submit {
  width: 100%;
  background: linear-gradient(90deg, #ef0a30, #060805);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .form-box {
    width: 95%;
    padding: 16px;
  }

  .orange-button,
  .dark-button {
    width: 90%;
    font-size: 13px;
  }
}

.positive-section {
  margin-top: 40px;
}

.positive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.positive-card {
  background: #f9f9fb;
  padding: 15px 20px;
  border-left: 5px solid #4caf50;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.positive-card:hover {
  transform: translateY(-5px);
  background-color: #f1fff1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.call {
  color: #000000;
}

.facebook {
  background-color: #0077cc;
}

.youtube {
  background-color: red;
}

.threads {
  background-color: #000;
}

.twitter {
  background-color: #000000;
  font-size: 30px;
}
.snapchat{
  background-color: rgb(224, 227, 44);
}