@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* PARA */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth !important;
}


/* Scrollbar base */
/*::-webkit-scrollbar {*/
/*  width: 10px;*/
/*}*/

/* Track background */
/*::-webkit-scrollbar-track {*/
/*  background: #000000;*/
/*  border-radius: 10px;*/
/*}*/

/* Scrollbar thumb (the draggable part) */
/*::-webkit-scrollbar-thumb {*/
/*  background: linear-gradient(*/
/*    180deg,*/
/*    rgba(221, 18, 102, 1),*/
/*    rgba(235, 27, 141, 0.8),*/
/*    rgba(248, 165, 11, 1)*/
/*  );*/
/*  border-radius: 10px;*/
/*  box-shadow: 0 0 10px rgba(248, 165, 11, 0.5);*/
/*}*/

/* On hover */
/*::-webkit-scrollbar-thumb:hover {*/
/*  background: linear-gradient(*/
/*    180deg,*/
/*    rgba(248, 165, 11, 1),*/
/*    rgba(235, 27, 141, 0.8),*/
/*    rgba(221, 18, 102, 1)*/
/*  );*/
/*}*/



/*  */
body{
  background-color: #000;
}

:root {
  /* 🌈 Color Palette */
  --primary-color: #0a84ff; /* Main blue button/text highlight */
  --secondary-color: #30d158; /* Accent green */
  --background-color: #111111; /* Dark mode bg */
  --card-bg: #1c1c1e; /* Cards / Containers */
  --text-color: #ffffff; /* Main white text */
  --muted-text: #9a9a9a; /* Subtle muted text */
  --border-color: #2c2c2e; /* Light border lines */

  --font-primary: 'Inter', sans-serif;
  --font-main: 'Sora', sans-serif;
  --font-alt: 'Outfit', sans-serif;
    /* 🖤 Dark Theme Backgrounds */
  --bg-primary: #0a0a0a;        /* Main background */
  --bg-secondary: #1c1c1e;      /* Card or container bg */
  --bg-tertiary: #2c2c2e;       /* Section background */
  --bg-overlay: rgba(255, 255, 255, 0.05); /* Subtle overlay effect */

  /* 🤍 Light Theme Backgrounds (if needed) */
  --bg-light-primary: #f2f2f7;
  --bg-light-secondary: #ffffff;
  --bg-light-tertiary: #e5e5ea;

  /* ✨ Gradient Background */
  --bg-gradient: linear-gradient(135deg, #0a84ff, #30d158);

  /* 🔲 Divider / Border */
  --bg-divider: #3a3a3c;

  /* 🔘 Button Styling */
  --button-bg: var(--primary-color);
  --button-text: #fff;
  --button-hover-bg: #0066cc;

  /* 🧱 Layout Sizes */
  --container-width: 1300px;
  --border-radius: 20px;
  --small-radius: 8px;

  /* 💨 Shadows */
  --shadow-soft: 0 0 20px rgba(255, 255, 255, 0.05);
  --shadow-pop: 0px 8px 16px rgba(10, 132, 255, 0.3);

  /* ✨ Transition */
  --transition-smooth: all 0.3s ease;
}


h1,h2,h3,h4,h5,h6{
  font-family: var(--font-main);
}
p{
  font-family: var(--font-primary);
}
.glass-navbar {
    background: rgba(255, 255, 255, 0.19); 
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px);

    border-radius: 11px;
    margin-top: 10px;
    }

.nav-logo{
  width: 55px;
  height: 20px;
  position: relative;
  bottom: 2px;
}

/*.nav-link {*/
/*  position: relative;*/
/*  display: inline-block;*/
/*  padding: 5px 0;*/
/*  font-weight: 600;*/
/*  color: white !important;*/
/*  transition: all 0.3s ease-in-out;*/
/*}*/

/*.nav-link::after {*/
/*  content: '';*/
/*  position: absolute ;*/
/*  bottom: 0 !important;*/
/*  left: 0 !important;*/
/*  height: 3px !important;*/
/*  width: 0 !important;*/
/*  background: linear-gradient(*/
/*    90deg,*/
/*    rgba(221, 18, 102, 1) 0%,*/
/*    rgba(235, 27, 141, 0.8) 30%,*/
/*    rgba(248, 165, 11, 1) 100%*/
/*  ) !important;*/
/*  transition: width 0.4s ease-in-out !important;*/
/*  border-radius: 2px !important;*/
/*  color: white !important;*/
  
/*}*/
    
    /* Burger Icon Custom Animation */
    .custom-toggler {
      width: 30px;
      height: 25px;
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 9999;
    }

    .custom-toggler span {
      position: absolute;
      height: 3px;
      width: 100%;
      background: black;
      border-radius: 2px;
      left: 0;
      transition: 0.3s ease;
    }

    .custom-toggler span:nth-child(1) {
      top: 0;
    }

    .custom-toggler span:nth-child(2) {
      top: 10px;
    }

    .custom-toggler span:nth-child(3) {
      top: 20px;
    }

    .custom-toggler.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 10px;
    }

    .custom-toggler.active span:nth-child(2) {
      opacity: 0;
    }

    .custom-toggler.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 10px;
    }

.fixed-top {
    position: fixed;
    top: 0;
    right: 25px;
    left: 25px;
    z-index: 1030;
}



    /* HEADER */

header {
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 510px;
  background-color:var(--background-color) !important;
}

.header-head{
      font-family: var(--font-main);
      align-items: center;
      padding-top:150px;
      font-weight: 800;
      font-size: 3em;
      text-decoration: underline;
      margin-top: 70px;
      color: var(--text-color);
}
.main-logo {
width:200px;
}

/* === ABOUT SECTION STYLING === */
.about-dsib{
 background: linear-gradient(
    90deg,
    rgba(221, 18, 102, 1) 0%,
    rgba(235, 27, 141, 0.8)30%,
    rgba(248, 165, 11, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.section__header {
    font-size: 2.7rem;
    font-weight: 800;
    font-family: var(--font-main);
    line-height: 4rem;
    color:var(--muted-text);
 
}
.section__container{
     padding-top: 50px;  
}

#about{
    margin: 20px auto;
    width: 95%;
    max-width: 1200px;
}
.feature__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
  padding: 4rem 10px 4rem 10px ;
  
}

.feature__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature__content .section__subheader {
  color: var(--text-color);
  font-weight: 600;
  font-family: var(--font-main);
}

.feature__content .aboutpara {
  font-family: var(--font-primary);
  color:  var(--text-color);
  font-size: 1.1rem;
  line-height: 1.8rem;
  text-align:justify;
}


.feature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.8rem;
}

.feature__card {
  padding: 1rem 1.2rem 1rem 1.2rem;
  border-radius: 1rem;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  
}

.feature__card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 25px;
}

.feature__card span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  text-align: justify;
   background: linear-gradient(
    90deg,
    rgba(221, 18, 102, 1) 10%,
    rgba(235, 27, 141, 0.8) 20%,
    rgba(248, 165, 11, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.feature__card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: justify;
  color: var() !important;
  font-family: var(--font-main);
}

.feature__card p {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.3rem;
  text-align: justify;
}
.about-btn{
  background-color: var(--about-color);
  padding: 5px 15px 5px 15px;
  border: none;
  border-radius: 25px;
}

.model-btn{
  position: relative;
  margin-left:200px;
  padding: 10px 15px 10px 15px;
  border: none;
  border-radius: 50%;
  background-color: #838383;
}
/* Responsive Tweaks */
@media screen and (max-width: 768px) {
  .feature__container {
    grid-template-columns: 1fr;
  }
}


/* apple slider */

.apple-slider {
      background-color: #101010;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100vh;
      overflow: hidden;
    }

    .gallery-head{
  background: linear-gradient(
    90deg,
    rgba(221, 18, 102, 1) 10%,
    rgba(235, 27, 141, 0.8) 20%,
    rgba(248, 165, 11, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
     margin-top: 35px;
     font-weight: 700;
     font-size: 3rem !important;
    }

    .slider-wrapper {
      width: 100%;
      max-width: 1300px;
      overflow: hidden;
      position: relative;
      margin-top: 60px;
    }

    .slides {
      display: flex;
      transition: transform 0.7s ease;
    }

    .slide {
      flex: 0 0 33.3333%;
      padding: 0 10px;
      box-sizing: border-box;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      padding: 20px !important;
    }

    .slide.active {
      transform: scale(1);
    }

    .slider-controls {
      display: flex;
      align-items: center;
      background-color: #1c1c1e;
      padding: 10px 20px;
      border-radius: 50px;
      margin-top: 20px;
    }

    .progress-bar-container {
      width: 80px;
      height: 12px;
      background-color: #2c2c2e;
      border-radius: 50px;
      overflow: hidden;
      padding: 2px;
      margin-right: 12px;
    }

    .progress-bar {
      height: 100%;
      background-color: white;
      border-radius: 50px;
      animation: fillBar 5s linear infinite;
    }

    @keyframes fillBar {
      0% { width: 0%; }
      100% { width: 100%; }
    }

    .dots {
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 10px;
      height: 10px;
      background-color: #777;
      border-radius: 50%;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }

    .dot.active {
      background-color: #fff;
    }

    .play-btn {
      margin-left: 12px;
      background-color: #2c2c2e;
      color: white;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
      font-size: 16px;
    }

    .play-btn i{
      margin-left: 10px !important;
      margin-top: 8px !important;
    }

    @media (max-width: 768px) {
      .slide {
        flex: 0 0 100%;
        padding: 0;
      }
    }

/* products */

.products-head{
    background: linear-gradient(
    90deg,
    rgba(221, 18, 102, 1) 10%,
    rgba(235, 27, 141, 0.8) 20%,
    rgba(248, 165, 11, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
     margin-top: 35px;
     font-weight: 700;
     font-size: 3rem !important;
     text-align: center;
     margin-top: 10px;
     padding-bottom: 30px;
}
.cont {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-card {
    background-color: #101010;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.product-card__image {
    height: 300px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 20px;
}

.product-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--muted-text);
}

.product-card__description {
    font-size: 1rem;
    color:var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
}

.product-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-card__btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card__btn:hover {
    background-color: #C71729;
}

@media (max-width: 480px) {
    .cont {
        max-width: 100%;
        padding: 0 20px;
    }

    .product-card__image {
        height: 200px;
    }

    .product-card__title {
        font-size: 1.3rem;
    }

    .product-card__description {
        font-size: 0.8rem;
    }

    .product-card__price {
        font-size: 1.1rem;
    }

    .product-card__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* footer */


/*footer*/

.footer-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  color: #000;
}

.footer-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: none;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  background: #fff;
  backdrop-filter: blur(50px);
  border: 0.1px solid rgba(233, 232, 232, 0.2);
  border-radius: 5px;
  padding: 2rem;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col-50 {
  flex: 0 0 35%;
}

.footer-col-25 {
  flex: 0 0 25%;
}

.footer-col iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: black;
  text-align: justify;
}

.footer-list {
  list-style: none;
  padding: 0;
  text-align: justify;
}

.footer-list li a {
  color: black;
}

.footer-link {
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500 !important;
  transition: 0.3s ease-in;
  border-bottom: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: black !important;
}

.footer-link i {
  padding-right: 8px;
}

.footer-link:hover {
  border-bottom: 1px solid black;
}
#footer-address:hover{
border-bottom:none;
cursor: default;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.footer-socials i {
  font-size: 30px;
  color: black;
}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: black;
}

.footer-copy span{
 background: linear-gradient(
    90deg,
    rgba(221, 18, 102, 1) 10%,
    rgba(235, 27, 141, 0.8) 20%,
    rgba(248, 165, 11, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-layout {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-col iframe {
    height: 200px;
  }
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  display: flex;
  align-items: flex-start; /* ensures top alignment for multi-line text */
  gap: 10px;
  color: inherit;
  text-decoration: none;
  line-height: 1.5;
}

.footer-link i {
  margin-top: 3px; /* optional tweak for better vertical alignment */
  min-width: 20px;  /* ensures icons don't jump around */
}


/* Please ❤ this if you like it! */
/* Follow Me https://codepen.io/designfenix */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

:root {
  --vs-primary: 29 92 255;
}

/* Dialog Styles */
dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 2rem 3rem 1rem 3rem;
  background: white;
  max-width: 400px;
  border-radius: 20px;
  border: 0;
  box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
  animation: fadeIn 1s ease both;
  z-index: 1000; /* Optional, to ensure it stays on top */
}

@media only screen and (max-width:576px) {
  dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 2rem 2rem 1rem 2rem;
  background: white;
  max-width: 400px;
  border-radius: 20px;
  border: 0;
  box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
  animation: fadeIn 1s ease both;
  z-index: 1000; /* Optional, to ensure it stays on top */
  width: 300px;
}
}


dialog::backdrop {
  animation: fadeIn 1s ease both;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
  backdrop-filter: blur(20px);
}

dialog .x {
  filter: grayscale(1);
  border: none;
  background: #323335;
    width: 40px;
  height:40px;
  border-radius: 50%;
  font-size: 23px;
  color: white;
  position: absolute;
  top: 10px !important;
  right: 10px !important;
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  transform-origin: center;
}

dialog .x:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

dialog h2 {
  font-weight: 600;
  font-size: 2rem;
  padding-bottom: 1rem;
}

dialog p {
  font-size: 1.1rem;
  line-height: 1.5rem;
  padding: 0.5rem 0;
  text-align: justify;
}

dialog p a:visited {
  color: rgb(var(--vs-primary));
}

/* General Styles */

/*button.primary {*/
/*  display: inline-block;*/
/*  font-size: 0.8rem;*/
/*  color: #fff !important;*/
/*  background: #323335;*/
/*  transition: all 0.25s ease;*/
/*  box-sizing: border-box;*/
/*  border: 0;*/
/*  cursor: pointer;*/
/*  box-shadow: 0 10px 20px -10px rgb(var(--vs-primary) / 50%);*/
/*  width: 40px;*/
/*  height:40px;*/
/*  border-radius: 50%;*/
/*  position: relative;*/
/*  margin-left: 180px;*/
/*}*/
/*.primary i{*/
/*  font-size: 18px;*/
/*}*/

/*button.primary:hover {*/
/*  box-shadow: 0 20px 20px -10px rgb(var(--vs-primary) / 50%);*/
/*  transform: translateY(-5px);*/
/*}*/

/* Animation */
/*@keyframes fadeIn {*/
/*  from {*/
/*    opacity: 0;*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*  }*/
/*}*/

.head {
  /* border: 2px solid white; */
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  position: relative;
  display: block;
  text-align: center;
  font-size: 50px;
  padding: 20px;
  margin-top: 20px;
  z-index: 1;
}



/* .head :nth-child(2) {
  background: linear-gradient(
    to right,
    #f71083,
    #f8cd0b
  ); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
} */

.head .circle1 {
  /* border: 2px solid; */
  width: 400px;
  height: 400px;
  position: absolute;
  top: 20%;
  right: 0px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(248, 165, 11, 0.6) 0%,
    rgba(248, 165, 11, 0.2) 70%,
    transparent 100%
  );
  filter: blur(60px);
  z-index: 0;
}

.flexbox {
  font-family:var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  position: relative;
  padding-bottom: 20px;
}
.left {
  flex-basis: 33%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 1;
}
.left .box {
  border: 1px solid rgba(255, 255, 255, 0.438);
  border-right: transparent;
  border-bottom: transparent;
  width: max-content;
  padding: 10px 20px;
  border-radius: 20px;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.253),
    black
  );
}
.left .box h1 {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.781);
}
.flexbox p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.603);
}
.left .b2 {
  border: 1px solid rgba(255, 255, 255, 0.438);
  border-top: transparent;
  border-left: transparent;
  background: linear-gradient(
    to top left,
    rgba(255, 255, 255, 0.253),
    black,
    rgba(221, 18, 102, 0.432)
  );
}
.mid {
  flex-basis: 33%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  bottom: 50px;
  
}

.right {
  flex-basis: 33%;
  flex-grow: 1;
}
.right p {
  width: 60%;
  text-wrap: wrap;
}
.circle2 {
  /* border: 2px solid; */
  width: 400px;
  height: 400px;
  position: absolute;
  top: 20%;
  left: 0px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(221, 18, 102, 0.432) 0%,
    rgba(235, 27, 141, 0.2) 70%,
    transparent 100%
  );
  filter: blur(60px);
  z-index: 0;
}

@media (max-width: 1060px) {
  .head {
    font-size: 4rem;
    position: relative;
    top: 80px;
    
  }
  .left .box h1 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.781);
  }
  .flexbox p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.603);
  }
  .mid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;  
  margin-top: 30px;
}
  .right p {
    width: 80%;
    text-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .head {
    font-size: 4rem;
    position: relative;
    top: 80px;
    
  }
  .left .box h1 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.781);
  }
  .flexbox p {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.603);
  }
  .mid img {
    width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 65px;
  }
  .right p {
    width: 100%;
    text-wrap: wrap;
  }
  .head .circle1 {
    /* border: 2px solid; */
    width: 200px;
    height: 200px;
  }
  .circle2 {
    /* border: 2px solid; */
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 580px) {
  .head {
    font-size: 4rem;
    position: relative;
    top: 55px;
    
  }
  .left {
    flex-direction: row;
    gap: 10px;
  }
  .left .box {
    line-height: 1;
  }
  .left .box h1 {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.781);
  }
  .flexbox {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .flexbox p {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.603);
  }
  .right p {
    font-size: 10px;
  }
  button {
    font-size: 8px;
    border: 2px solid rgba(248, 165, 11, 0.6);
    color: rgba(248, 165, 11, 0.6);
  }
  .mid img {
      width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 65px;
  }
  .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .right p {
    width: 70%;
    text-align: center;
    text-wrap: wrap;
  }
  .head .circle1 {
    /* border: 2px solid; */
    width: 150px;
    height: 300px;
  }
  .circle2 {
    /* border: 2px solid; */
    width: 150px;
    height: 300px;
  }
}

@media (min-width: 1060px){
  .head {
        font-size: 4rem;
        position: relative;
        top: 80px;
    
  }
    .head h1{
      font-size: 4rem;

    }
}
.head h1{
  font-weight: 700;
   background: linear-gradient(
    90deg,
    rgba(221, 18, 102, 1) 10%,
    rgba(235, 27, 141, 0.8) 20%,
    rgba(248, 165, 11, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* back to top */


#backToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  font-size: 22px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  cursor: pointer;
  display: none;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#backToTopBtn i {
  background: linear-gradient(
    90deg,
    rgba(221, 18, 102, 1) 10%,
    rgba(235, 27, 141, 0.8) 20%,
    rgba(248, 165, 11, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-weight: 400;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#backToTopBtn.show {
  display: block;
  animation: fadeSlideIn 0.5s ease forwards;
}

#backToTopBtn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}
