@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
  font-family: 'X7DesignFont'; /* Name you want to use */
  src: url('/fonts/x7design-Regular.woff2') format('woff2'),
       url('/fonts/x7design-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Optional but recommended */
}
  html {
    scroll-behavior: smooth;
  }
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

  /* Chrome, Safari, Edge (WebKit) */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: transparent;
  }

  ::-webkit-scrollbar-track {
    background: #181818; /* Fully transparent track */
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #008cff, #4cafff); /* Blue gradient */
    border-radius: 10px;
    border: 2px solid transparent; /* Creates a gap from track edge */
    background-clip: content-box; /* Prevents background from bleeding into border */
    
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom,#008cff, #4cafff);
  }


body{
  scrollbar-width: thin; /* Makes it slimmer */
  scrollbar-color: #008cff transparent; /* Thumb + transparent track */
  background: #181325;
  /*font-family: poppins;*/
  font-family: Poppins ,sans-serif;
  padding: 0;
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  place-items: center;
    
}
::selection {
  background: #000000;  /* Selection background color */
  color: white;         /* Selection text color */
}
img{
  user-select: none;         /* Disable text selection */
  pointer-events: none;      /* Disable interaction (like dragging) */
  -webkit-user-drag: none;   /* Prevent dragging in WebKit browsers */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.menu{
    position: relative !important;
    top: 0.5rem !important;
    left: 50%;
    flex-wrap: wrap;
    max-width: 1200px;
    border-radius: 10px;
    background: none !important;
    width: 90%;
    /*height: 10% !important;*/
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideDown 0.5s ease-in-out forwards;
}
nav a:hover{
  color: rgb(130, 240, 255) !important;
}
.mobile-sidebar.open{
    position: absolute;
}
.mobile-header, .menu-icon p{
    color: white;
}
.cover-sec1-gr{
    width: 100%;
    max-width: inherit;
    background: black;
    display: flex;
    place-content: center;
}


.cover-sec1-gr header{
    width: 100%;
    height: 100vh;
    position: relative;
    place-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
    min-height: 450px;
}
.media-behind-texts-sec1-gr{
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(to top, #050003 5%, rgba(0, 0, 0, 0) 40%), url(/images/image-sec1-gr.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; /* Adjust as needed */
    top: 0;
    left: 0;
}

.texts-on-media-sec1-gr{
    position: relative;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    max-width: 1200px;
    display: flex;

}
.texts-container-sec1-gr{
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    place-content: space-between;
    color: white;
    padding: 0% 5%;
}
.texts-container-sec1-gr div h1{
    text-align: center;
}
.title1-sec1-gr{
    width: fit-content;
    max-width: 100%;
    place-self: center;
    height: auto;
    text-align: left;
}
.title1-sec1-gr{
    font-size: 4.5rem !important;
    align-items: center;
    font-weight: 500;
    transition: transform 0.2s linear, opacity 0.2s linear;
  will-change: transform, opacity;
}

.cards-option-gr div p{
  line-height: 1.2;
}
.p-in-sec1-gr{
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.title2-sec1-gr {
  position: relative;
  display: flex;
  font-size: 2rem !important;
  font-weight: 350;
  color: white;
  place-self: center;
  z-index: 2;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

  background: linear-gradient(270deg, #fff, #8dc4f8, #68a9e6, #8dc4f8, #fff); /* initial gradient */
  background-size: 1000% 100%; /* large background to animate */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




.wave-text span {
    display: inline-block;
    animation: wave 3s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
    animation-delay: 0s;
}
.wave-text span:nth-child(2) {
    animation-delay: 0.15s;
}
.wave-text span:nth-child(3) {
    animation-delay: 0.3s;
}
.wave-text span:nth-child(4) {
    animation-delay: 0.45s;
}
.wave-text span:nth-child(5) {
    animation-delay: 0.6s;
}
.wave-text span:nth-child(6) {
    animation-delay: 0.75s;
}
.wave-text span:nth-child(7) {
    animation-delay: 0.9s;
}
.wave-text span:nth-child(8) {
    animation-delay: 1.05s;
}
.wave-text span:nth-child(9) {
    animation-delay: 1.2s;
}
.wave-text span:nth-child(10) {
    animation-delay: 1.35s;
}
.wave-text span:nth-child(11) {
    animation-delay: 1.5s;
}
.wave-text span:nth-child(12) {
    animation-delay: 1.65s;
}
.wave-text span:nth-child(13) {
    animation-delay: 1.8s;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}







































.texts-container-sec1-gr a{
    width: 13rem;
    height: 2.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.texts-container-sec1-gr a h2{
  text-shadow: 1px 1px 0px white;
}
.button-container-sec1-gr{
    width: 100%;
    height: auto;
    place-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.button-container-sec1-gr p{
    width: 30%;
    height: fit-content;
    text-align: center;
}
.button-container-sec1-gr a h2{
  width: 100%;
  font-weight: 500;
  height: fit-content;
  text-align: center;
}


@media screen and (orientation: portrait) and (min-width: 1201px){
  .title1-sec1-gr{
    font-size: 7rem !important;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .button-container-sec1-gr p{
    width: 60%;
  }
  .texts-container-sec1-gr a{
    width: 18rem;
    height: 3.8rem;
  }
  .title2-sec1-gr{
    font-size: 3.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 5rem !important;
  }
  .two-title-sec1-container{
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (orientation: portrait) and (max-width: 1200px){
  .title1-sec1-gr{
    font-size: 7rem !important;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .button-container-sec1-gr p{
    width: 60%;
  }
    .texts-container-sec1-gr a{
    width: 17rem;
    height: 3.8rem;
  }
  .title2-sec1-gr{
    font-size: 3.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 5rem !important;
  }
  .two-title-sec1-container{
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (orientation: portrait) and (max-width: 992px){
  .title1-sec1-gr{
    font-size: 7rem !important;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .button-container-sec1-gr p{
    width: 80%;
  }
  .texts-container-sec1-gr a{
    width: 18rem;
    height: 3.5rem;
  }

  .title2-sec1-gr{
    font-size: 3.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 5rem !important;
  }
  .two-title-sec1-container{
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (orientation: portrait) and (max-width: 768px){
  .title1-sec1-gr{
    font-size: 5rem !important;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .button-container-sec1-gr p{
    width: 70%;
  }
  .texts-container-sec1-gr a{
    width: 15rem;
    height: 2.7rem;
  } 
  .title2-sec1-gr{
    font-size: 3rem !important;
  }
  .title1-sec1-gr{
    font-size: 4rem !important;
  }
  .two-title-sec1-container{
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (orientation: portrait) and (max-width: 600px){
  .title1-sec1-gr{
    font-size: 4rem !important;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .button-container-sec1-gr p{
    width: 90%;
  }
  .texts-container-sec1-gr a{
    width: 13rem;
    height: 2.5rem;
  }
  .title2-sec1-gr{
    font-size: 2.4rem !important;
  }
  .title1-sec1-gr{
    font-size: 3.3rem !important;
  }
  .two-title-sec1-container{
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (orientation: portrait) and (max-width: 450px){
  .title1-sec1-gr{
    font-size: 3rem !important;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .button-container-sec1-gr p{
    width: 90%;
  }
  .texts-container-sec1-gr a{
    width: 13rem;
    height: 2.3rem;
  }
  .title2-sec1-gr{
    font-size: 1.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 2.2rem !important;
  }
  .two-title-sec1-container{
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
}



@media screen and (orientation: landscape) and (min-width: 1201px){
  .menu {
    height: 4.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 4.5rem !important;
  }

  .texts-container-sec1-gr a{
    width: 13rem;
    height: 2.5rem;
  }
  .button-container-sec1-gr p{
    width: 50%;
  }
  .title2-sec1-gr{
    font-size: 2rem !important;
  }
}

@media screen and (orientation: landscape) and (max-width: 1200px){
  .menu {
    height: 4.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 4.5rem !important;
  }

  .texts-container-sec1-gr a{
    width: 13rem;
    height: 2.5rem;
  }
  .button-container-sec1-gr p{
    width: 50%;
  }
  .title2-sec1-gr{
    font-size: 2rem !important;
  }
}
@media screen and (orientation: landscape) and (max-width: 992px){
  .menu {
    height: 3.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 3.5rem !important;
  }

  .texts-container-sec1-gr a{
    width: 11rem;
    height: 2.5rem;
  }
  .button-container-sec1-gr p{
    width: 45%;
  }
  .title2-sec1-gr{
    font-size: 1.5rem !important;
  }
}
@media screen and (orientation: landscape) and (max-width: 768px){
  .menu {
    height: 3rem !important;
    width: 100%;
  }
  .title1-sec1-gr{
    font-size: 2.5rem !important;
  }

  .texts-container-sec1-gr a{
    width: 8rem;
    height: 2rem;
  }
  .button-container-sec1-gr p{
    width: 65%;
  }
  .title2-sec1-gr{
    font-size: 1.2rem !important;
  }
}































/*--------------------------------Section 2---------------------------------*/
.cover-sec2-gr{
    width: 100%;
    max-width: inherit;
    background: linear-gradient(to top, #111111 0%, #050003 50%);
    display: flex;
    place-content: center;

}
.section2-gr{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    display: flex;
    overflow: visible;
}
.rect-texts-container-sec2-gr{
    width: 100%;
    height: 70vh;
    overflow: visible;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    z-index: 3;
}

.texts-container-sec2-gr{
    color: white;
    z-index: 5;
    position: relative;
    padding: 0% 0% 1.5rem 0%;
    line-height: 1;
}
.texts-container-sec2-gr h1{
    text-align: left;
    font-weight: 400;
}
.texts-container-sec2-gr h4{
    margin-left: 0.2rem;
}

.texts-timelines-container-sec2-gr{
    width: 40%;
    height: 100%;
    z-index: 2;
    place-content: end;
    display: flex;
}
    .timeline-container {
      display: flex;
      max-width: 700px;
      width: 90%;
      position: relative;
      overflow: hidden;
      height: 70vh;
    }

    /* Timeline moved to the right */
    .timeline-items {
      flex: 1;
      display: flex;
      flex-direction: column;
      user-select: none;
      margin-right: 20px;
    }
    .timeline-line-container {
      position: relative;
      width: 5px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      user-select: none;
    }

    .segment-fill {
      position: relative;
      width: 3px;
      background: #011024;
      overflow: visible;
      transition: width 0.3s ease;
    }
    .segment-fill.active {
      width: 5px;
      transition: width 0.3s ease;
      z-index: 2;
      color: white;
    }
    .segment-fill.completed {
      background: #888;
      width: 3px;
      transition: background-color 0.3s ease;
      z-index: 1;
    }

    .progress-fill-green {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: #011024;
      transition: height linear;
      z-index: 3;
    }
    .progress-fill-red {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #00c3f9;
      
      transition: height linear;
      z-index: 2;
    }
    .segment-fill:hover, .segment-fill.completed:hover{
        width: 5px;
    }
    .timeline-item {
      background: transparent; /* dark sky blue */
      padding: 1rem;
      overflow: hidden;
      cursor: pointer;
      color: rgb(66, 66, 66);
      transition: background-color 0.3s ease, background 0.3s ease;
    }
video::-webkit-media-controls {
  display: none !important;
}
    .timeline-item.active {
        color: white;
      background-color: transparent;
    }
    .timeline-item .content {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.6s ease, opacity 0.6s ease;
      user-select: text;
    }
    .timeline-item.active .content {
      max-height: 500px;
      opacity: 1;
    }
    #item-0{
        border-radius: 6px 6px 0px 0px;
    }
    #item-1{
        border-radius: 0px 0px 0px 0px;
    }
    #item-2{
        border-radius: 0px 0px 0px 0px;
    }
    #item-3{
        border-radius: 0px 0px 6px 6px;
    }
    @media (max-width: 600px) {
      .timeline-container {
        flex-direction: column;
        align-items: stretch;
      }
      .timeline-items {
        margin-right: 0;
      }
    }


    .icon-title-container{
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }
    .title-icon{
        width: 1.5rem;
        height: 1.5rem;
    }
    .title-icon img{
        width: 100%;
        height: auto;
    }








.glow-around-rect-sec2-gr{
    width: 100%;
    height: 100%;
    background: linear-gradient(10deg,white 0%,transparent 20%,transparent 80%,white 100%);
    display: flex;
    overflow: hidden;
    padding: 0.12rem;
    border-radius: 6px;
    z-index: 4;
    position: relative;
}
.rect-container-sec2-gr {
    width: 60%;
    height: fit-content;
    overflow: visible;
    display: flex;
    z-index: 3;
    padding: 0.5rem;
    position: relative;

}
.move-down-title2 {
  opacity: 0;
  display: flex;
  place-content: center;
  transform: translateY(-20px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.move-down-title2.loaded {
  opacity: 1;
  transform: translateY(0);
}



.title1-sec1-gr{
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.title1-sec1-gr.loaded{
  opacity: 1;
  transform: translateY(0);
}


.rect-container-sec2-gr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    overflow: hidden;
    border-radius: 6px;
    background: transparent;
}
.shadow-0-around-rect-sec2-gr{
    width: 99%;
    height: 98%;
    filter: blur(5px);
    background: linear-gradient(10deg,rgb(89, 89, 196) 0%,transparent 20%,transparent 80%,rgb(189, 192, 143) 100%);
    border-radius: 6px;
    z-index: 4;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    place-self: center;
    align-self: center;
    right: 0;
    bottom: 0;
}
.shadow-1-around-rect-sec2-gr{
    width: 100%;
    height: 100%;
    filter: blur(15px);
    background: linear-gradient(10deg,rgb(89, 89, 196) 0%,transparent 20%,transparent 80%,rgb(189, 192, 143) 100%);
    border-radius: 6px;
    z-index: 4;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}
.shadow-2-around-rect-sec2-gr{
    width: 100%;
    height: 100%;
    filter: blur(50px);
    background: linear-gradient(10deg,rgb(89, 89, 196) 0%,transparent 20%,transparent 80%,rgb(189, 192, 143) 100%);
    border-radius: 6px;
    z-index: 4;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}
.pattern-1-around-rect-sec2-gr{
    width: 100%;
    height: 100%;
    background-color: transparent;
    overflow: visible;
    padding: 0.4rem;
    position: absolute;
    border-radius: 10px;
}
.pattern-1-around-rect-sec2-gr::before{
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0px 0px 10px 7px #020202, inset 0px 0px 33px 8px #020202;
  z-index: 0;
  border-radius: 13px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--dynamic-gradient-angle, 25deg), #020202 0%, #020202 15%, #020202 80%, transparent 100%), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='3' height='3'><circle cx='2.5' cy='2.5' r='.6' fill='rgba(255,255,255,1)' /></svg>");
  transform: translate(var(--glow-translate-x, 0%), var(--glow-translate-y, 0%));
}
.pattern-2-around-rect-sec2-gr{
    width: 100%;
    height: 100%;
    background-color: transparent;
    overflow: visible;
    padding: 0.4rem;
    position: absolute;
    border-radius: 10px;
}
.pattern-2-around-rect-sec2-gr::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0px 0px 10px 7px #020202, inset 0px 0px 33px 8px #020202;
  z-index: 0;
  border-radius: 13px;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--dynamic-gradient-angle-2, 25deg), #020202 0%, #020202 15%, #020202 80%, transparent 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='3' height='3'><circle cx='2.5' cy='2.5' r='.6' fill='rgba(255,255,255,1)' /></svg>");
  transform: translate(var(--glow-translate-x, 0%), var(--glow-translate-y, 0%));
}
.glow-blurred-rect-sec2-gr{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem;
    overflow: visible;
    z-index: 4;

}
.blurred-glow{
    width: 100%;
    height: 100%;
    background: linear-gradient(10deg,white 0%,transparent 20%,transparent 80%,white 100%);
    z-index: 6;
    border-radius: 6px;
    filter: blur(5px);
}



.bottom-part-sec2-web{
    padding: 3rem 0rem 3rem 0rem;
}
.card-one-inside-bottom-part-sec2-web h2, .title h2{
    place-self: start;
    color: white;
    font-size: 1rem !important;
    font-weight: 500;
    text-align: left;
    line-height: 2rem;
}
.card-one-inside-bottom-part-sec2-web{
    align-items: start !important;
    gap: 0.1rem;
}
.card-one-inside-bottom-part-sec2-web h4{
    text-align: left;
}
.bottom-part-details-container-sec2-web{
    row-gap: 3rem;
    
}
.card-one-inside-bottom-part-sec2-web img{
    width: 3rem;
    z-index: 3;
}
.glow-pic-sec2-icons{
    height: 2.5rem;
    width: 2.5rem;
    position: absolute;
    background: rgba(76, 181, 255, 0.35);
    filter: blur(29px);
    z-index: 2;
    opacity: 0.5;
    transform-origin: center center;
    transition: transform 0.7s ease, opacity 0.7s ease; /* smooth both */
}
.content h4{
    color: #868686;
}






@media screen and (orientation: portrait) and (min-width: 1201px){
  .rect-texts-container-sec2-gr{
    height: 35vh;
  }
  .timeline-container{
    overflow: hidden;
    height: 35vh;
  }
  .card-one-inside-bottom-part-sec2-web h2, .title h2{
    font-size: 1.5rem !important;
  }
  .texts-timelines-container-sec2-gr{
    width: 50%;
  }
  .rect-container-sec2-gr{
    width: 50%;
  }
}
@media screen and (orientation: portrait) and (max-width: 1200px){
  .rect-texts-container-sec2-gr{
    height: 35vh;
  }
  .timeline-container{
    overflow: hidden;
    height: 35vh;
  }
  .card-one-inside-bottom-part-sec2-web h2, .title h2{
    font-size: 1rem !important;
  }
  .texts-timelines-container-sec2-gr{
    width: 50%;
  }
  .rect-container-sec2-gr{
    width: 50%;
  }
}
@media screen and (orientation: portrait) and (max-width: 992px){
  .rect-texts-container-sec2-gr{
    height: fit-content;
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .rect-container-sec2-gr{
    width: 100%;
  }
  .timeline-container{
    max-width: none;
    width: 100%;
  }
  .card-one-inside-bottom-part-sec2-web h2, .title h2{
    font-size: 1rem !important;
  }
  .texts-timelines-container-sec2-gr{
    width: 100%;
    height: 25rem;
  }

}
@media screen and (orientation: portrait) and (max-width: 768px){
  .rect-texts-container-sec2-gr{
    height: fit-content;
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .rect-container-sec2-gr{
    width: 100%;
  }
  .timeline-container{
    max-width: none;
    width: 100%;
  }
  .card-one-inside-bottom-part-sec2-web h2, .title h2{
    font-size: 1.5rem !important;
  }
  .texts-timelines-container-sec2-gr{
    width: 100%;
    height: 25rem;
  }
  .texts-container-sec2-gr{
    line-height: 1.5;
  }
}

@media screen and (orientation: portrait) and (max-width: 600px){
  .rect-texts-container-sec2-gr{
    height: fit-content;
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .rect-container-sec2-gr{
    width: 100%;
  }
  .timeline-container{
    max-width: none;
    flex-direction: row-reverse;
    width: 100%;
  }
  .card-one-inside-bottom-part-sec2-web h2, .title h2{
    font-size: 1.2rem !important;
  }
  .texts-timelines-container-sec2-gr{
    width: 100%;
    height: 25rem;
  }
  .texts-container-sec2-gr{
    line-height: 1.5;
  }
  .card-one-inside-bottom-part-sec2-web{
    gap: 0rem;
  }
}

@media screen and (orientation: portrait) and (max-width: 450px){
  .rect-texts-container-sec2-gr{
    height: fit-content;
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .rect-container-sec2-gr{
    width: 100%;
  }
  .timeline-container{
    max-width: none;
    flex-direction: row-reverse;
    width: 100%;
  }
  .card-one-inside-bottom-part-sec2-web h2, .title h2{
    font-size: 1rem !important;
    line-height: 1;
  }
  .texts-timelines-container-sec2-gr{
    width: 100%;
    height: 25rem;
  }
  .texts-container-sec2-gr{
    line-height: 1.5;
  }
  .card-one-inside-bottom-part-sec2-web{
    gap: 0rem;
  }

  .glow-around-rect-sec2-gr{
    padding: 0.06rem;
  }
}







@media screen and (orientation: landscape) and (min-width: 1201px){
  .texts-container-sec2-gr h1{
    font-size: 2.5rem !important;
  }
  .texts-container-sec2-gr{
    line-height: 1.2;
  }
  .texts-container-sec2-gr h4{
    margin-left: 0.1rem;
  }
  .rect-texts-container-sec2-gr{
    height: 60vh;
  }
  .timeline-container{
    overflow: hidden;
    height: 60vh;
  }
}

@media screen and (orientation: landscape) and (max-width: 1200px){
  .texts-container-sec2-gr h1{
    font-size: 2.5rem !important;
  }
  .texts-container-sec2-gr{
    line-height: 1.2;
  }
  .texts-container-sec2-gr h4{
    margin-left: 0.1rem;
  }
  .rect-texts-container-sec2-gr{
    height: 60vh;
  }
  .timeline-container{
    overflow: hidden;
    height: 60vh;
  }
}

@media screen and (orientation: landscape) and (max-width: 992px){
  .texts-container-sec2-gr h1{
    font-size: 2.2rem !important;
  }
  .timeline-item .content {
  margin-top: 0rem;
  }
  .rect-texts-container-sec2-gr{
    height: fit-content;
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .rect-container-sec2-gr{
    width: 100%;
  }
  .timeline-container{
    max-width: none;
    flex-direction: row-reverse;
    width: 100%;
  }
  .card-one-inside-bottom-part-sec2-web h2, .title h2{
    font-size: 1rem !important;
    line-height: 1;
  }
  .texts-timelines-container-sec2-gr{
    width: 100%;
    height: 25rem;
  }
  .texts-container-sec2-gr{
    line-height: 1.5;
  }
  .card-one-inside-bottom-part-sec2-web{
    gap: 0.6rem;
  }
  .title{
    align-self: center;
  }
  .bottom-part-details-container-sec2-web{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
  }
}
@media screen and (orientation: landscape) and (max-width: 768px){
  .texts-container-sec2-gr h1{
    font-size: 1.8rem !important;
  }
  .rect-texts-container-sec2-gr{
    height: fit-content;
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .rect-container-sec2-gr{
    width: 100%;
  }
  .timeline-container{
    max-width: none;
    flex-direction: row-reverse;
    width: 100%;
  }
  .card-one-inside-bottom-part-sec2-web h2, .title h2{
    font-size: 1rem !important;
    line-height: 1;
  }
  .texts-timelines-container-sec2-gr{
    width: 100%;
    height: 25rem;
  }
  .texts-container-sec2-gr{
    line-height: 1.5;
  }
  .card-one-inside-bottom-part-sec2-web{
    gap: 0rem;
  }
  .title{
    align-self: center;
  }
  .bottom-part-details-container-sec2-web{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
  }
}







.blurred-glow,
.glow-around-rect-sec2-gr,
.shadow-0-around-rect-sec2-gr,
.shadow-1-around-rect-sec2-gr,
.shadow-2-around-rect-sec2-gr,
.pattern-1-around-rect-sec2-gr,
.pattern-2-around-rect-sec2-gr {
  will-change: transform, background-image;
  backface-visibility: hidden; /* Sometimes helps */
}

/* Initial state */
#glow-behind-icon-1,
#glow-behind-icon-2,
#glow-behind-icon-3,
#glow-behind-icon-4,
#glow-behind-icon-5,
#glow-behind-icon-6 {
  transform: scale(1);
  opacity: 0.5;
  transition: transform 0.7s ease, opacity 0.7s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-origin: center center;
}

/* Active animation state */
#glow-behind-icon-1.active,
#glow-behind-icon-2.active,
#glow-behind-icon-3.active,
#glow-behind-icon-4.active,
#glow-behind-icon-5.active,
#glow-behind-icon-6.active {
  transform: scale(1.1);
  opacity: 1;
}









































/*--------------------------------Section 3---------------------------------*/
.cover-sec3-gr{
    width: 100%;
    max-width: inherit;
    background: #111111;
    display: flex;
    place-content: center;

}
.section3-gr{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
}
/* === MAIN GRID FOR FIRST 6 CARDS === */
.portfolio-grid-sec3-gr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 2rem;
  width: 100%;
}

/* === CARD STYLE === */
.card-sec3-gr {
  background: transparent;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: fit-content;
}

.card-sec3-gr:hover {
  transform: scale(1.03);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* === IMAGE CONTAINER & FADE TRANSITION === */
.image-container-sec3-gr {
  position: relative;
  width: 100%;
  height: 12rem;
  overflow: hidden;
}

.image-container-sec3-gr .front-sec3-gr,
.image-container-sec3-gr .back-sec3-gr {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.front-sec3-gr {
  opacity: 1;
  z-index: 1;
}

.back-sec3-gr {
  opacity: 0;
  z-index: 2;
}

.card-sec3-gr:hover .back-sec3-gr {
  opacity: 1;
}

.card-sec3-gr:hover .front-sec3-gr {
  opacity: 0;
}

/* === EXTRA GRID SECTION: TALL + NORMAL CARDS === */
.extra-grid-sec3-gr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
}

.tall-card-sec3-gr {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
  overflow: hidden;
}
.tall-card-sec3-gr .image-container-sec3-gr {
  flex-grow: 1;
  height: auto;
}





@media screen and (orientation: portrait) and (min-width: 1201px){
  .portfolio-grid-sec3-gr{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .image-container-sec3-gr{
    height: 19rem;
  }
  .texts-container-sec2-gr{
    line-height: 1.3;
  }
}


@media screen and (orientation: portrait) and (max-width: 1200px){
  .portfolio-grid-sec3-gr{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .image-container-sec3-gr{
    height: 19rem;
  }
  .texts-container-sec2-gr{
    line-height: 1.3;
  }
}


@media screen and (orientation: portrait) and (max-width: 992px){
  .portfolio-grid-sec3-gr{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .image-container-sec3-gr{
    height: 18rem;
  }

}


@media screen and (orientation: portrait) and (max-width: 768px){
  .portfolio-grid-sec3-gr{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .image-container-sec3-gr{
    height: 18rem;
  }
  .tall-card-sec3-gr{
    height: auto;
  }
}


@media screen and (orientation: portrait) and (max-width: 600px){
  .portfolio-grid-sec3-gr{
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .image-container-sec3-gr{
    height: 18rem;
  }
  .tall-card-sec3-gr{
    height: 50rem;
  }
}


@media screen and (orientation: portrait) and (max-width: 450px){
  .portfolio-grid-sec3-gr{
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .image-container-sec3-gr{
    height: 12rem;
  }
  .tall-card-sec3-gr{
    height: 40rem;
  }
}


@media screen and (orientation: portrait) and (max-width: 400px){
  .tall-card-sec3-gr{
    height: 30rem;
  }
}




@media screen and (orientation: landscape) and (min-width: 1201px){
  
}

@media screen and (orientation: landscape) and (max-width: 1200px){
  
}

@media screen and (orientation: landscape) and (max-width: 992px){
  
}

@media screen and (orientation: landscape) and (max-width: 768px){
  
}



































/*--------------------------------Section 4---------------------------------*/
.cover-sec4-gr{
    width: 100%;
    max-width: inherit;
    background: #dadada; 
    display: flex;
    place-content: center;

}
.section4-gr{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
}
#myForm{
  width: 100%;
  height: fit-content;
  margin: 1rem 0rem 0rem 0rem;
}

.user-info-row {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.input-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-field input {
  width: 100%;
  height: 3rem;
  background: white;
  color: #4b4b4b;
  border-radius: 10px;
  border: 1px solid white !important;
  padding: 0.5rem;
  font-family: 'poppins';
  outline: none;
  transition: border 0.3s ease;
}

.input-field input:hover {
  border: 1px solid rgb(100, 100, 100);
}
#banner-where-use{
  border: none;
}
#banner-where-use, #width, #height {
  width: 100%;
  height: 3rem;
  background: white;
  padding: 0.5rem;
  color: #4b4b4b;
  border-radius: 10px;
}
#banner-where-use:focus{
  outline: none;
}
.banner-text-shape-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.banner-where-use-and-shape-size-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

#width, #height, #add-color-btn {
  background: white;
  border: none;
  border-radius: 10px;
  font-family: 'poppins';
  transition: border 0.3s ease;
  padding: 0.5rem;
  outline: none;
}
#add-color-btn{
  background: white;
  transition: background 0.3s ease, border 0.3s ease;
}
#add-color-btn:hover{
  background: rgb(247, 247, 247);
  border: 1px solid rgb(247, 247, 247);
}
.input-title-lable-container {
  display: flex;
  flex-direction: column;
  width: 60%;
  height: fit-content;
  overflow: hidden;
}

.input-width-lable-container, .input-height-lable-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
}

.dimention-color-container {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dimention-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

#shape-preview {
  margin: 1rem 1rem 1rem 0rem;
  max-height: 10rem;
  background: #00afec !important;
}

.color-button-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 49%;
}

.add-color-btn-and-remove-color-container {
  width: 2rem;
  height: auto;
  display: flex;
  flex-direction: column;
}

.color-editable-btn {
  border: none;
  padding: 0.5rem;
  border-radius: 10px;
  color: white;
  font-weight: 300;
  cursor: text;
  background: #555;
  background-color: rgb(85, 85, 85);
  width: 100%;
  height: 2.5rem;
  display: flex;
  place-content: start;
  align-items: center;
  outline: none;
  overflow: hidden;
}

.color-picker {
  width: 1.5rem !important;
  height: 1.5rem !important;
  cursor: pointer;
  border-radius: 50%;
  border: none;
}

.remove-color-btn {
  background: white !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
  display: flex !important;
  place-content: center !important;
  align-items: center !important;
  border: 1px solid white !important;
  cursor: pointer !important;
  border-radius: 50% !important;
  transition: border 0.5s ease !important;
}

.remove-color-btn:hover {
  border: 1px solid rgb(100, 100, 100) !important;
}

#add-color-btn {
  width: 20%;
  background: white;
  border: 1px solid white;
  border-radius: 10px;
  color: black;
  font-family: 'poppins';
  margin-bottom: 0.5rem;
}

#color-buttons-container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
}

.color-editable-btn:empty:before {
  content: attr(data-placeholder);
  color: #aaa;
  pointer-events: none;
  display: flex;
  place-content: start;
  text-align: left;
  width: 100%;
}

.color-tools-wrapper {
  width: 2rem;
  height: auto;
  display: flex;
  flex-direction: column;
}

.both-description-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.desc1-container, .desc2-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin: 2rem 0rem;
}

.desc1-style, .desc2-style {
  height: 10rem;
  background: white;
  color: #4b4b4b;
  border-radius: 10px;
  font-family: 'poppins';
  outline: none;
  border: 1px solid white !important;
  transition: border 0.3s ease;
  padding: 0.5rem;
  resize: none;
}

.desc1-style:hover, .desc2-style:hover {
  border: 1px solid rgb(100, 100, 100) !important;
}

#logo_image {
  width: 100%;
  height: 15rem;
  display: flex;
  place-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  border-radius: 10px;
}

.logo-uploader-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  place-content: center;
  align-items: center;
}

.img-label-container {
  width: 50%;
  height: fit-content;
}

.image-uploader-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.image-uploader {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.above-image-uploader {
  width: 100%;
  height: 100%;
  place-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px dashed rgba(0, 0, 0, 0.708);
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  transition: background 0.3s ease;
  cursor: pointer;
}

.above-image-uploader:hover {
  background: rgba(128, 128, 128, 0.082);
}

.above-image-uploader img {
  width: 6rem;
  height: auto;
  padding: 0.6rem;
}
.above-image-uploader p{
  color: #848484;
  font-family: 'poppins';
  margin-top: 2rem;
}
.click-to-upload-btn{
  width: 10rem !important;
  place-content: space-around !important;
  align-items: center !important;
  height: 2.5rem !important;
  background: #222222 !important;
  color: white !important;
  padding: 0.5rem !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  border: none !important;
  display: flex !important;
  transition: background 0.3s ease !important;
}
.click-to-upload-btn:hover{
  background: #131313 !important;
}
.click-to-upload-btn img{
  height: auto;
  width: 1rem;
  padding: 0;
}
.click-to-upload-btn p{
  font-family: 'poppins';
  color: white;
  margin-top: 0;
}
#remove-logo-btn {
display: flex;
  flex-direction: row;
  margin-bottom: 0rem;
  background: #ff3737;
  color: white;
  width: auto;
  border-radius: 10px;
  border: none;
  transition: background 0.3s ease,opacity 0.3s ease;
  font-family: 'poppins';
  padding: 0rem 0rem;
  text-align: center;
  place-content: center;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
}

#remove-logo-btn:hover {
  background: #d32c2c;
}
#remove-logo-btn img{
  width: auto;
  height: 1.3rem;
  border: none !important;
}
.button-and-logo-preview-container {
  position: relative;
}

#logo-preview {
  z-index: 3;
  position: relative;
  display: none;
  max-width: 8rem;
  border-radius: 10px;
}

#form-message {
  display: none;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 1rem;
  color: #fff;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#form-message.hide {
  opacity: 0;
}

.multi-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.multi-preview-container img {
  width: 6rem;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid #ccc;
  padding: 2px;

}
.form-submit-container{
  width: 100%;
  height: auto;
  display: flex;
  place-content: center;
  align-items: center;
}
.form-submit-container button {
  width: 10rem;
  height: 2.5rem;
  color: white;
  background: rgb(13, 167, 13);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
}
.form-submit-container button:hover{
  background: green;
}
.form-submit-container button h2{
  color: white;
  font-family: 'poppins';
  font-weight: 400;
}


.title-container-above-form{
  width: 100%;
  height: 2.5rem;
  display: flex;
  flex-direction: row;
  place-content: center;
  align-items: center;
}

.centerize-the-title-container{
  width: fit-content;
  height: 100%;
  border-radius: 150px;
  background: rgb(206, 206, 206);
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
  padding: 0.2rem;
}
.centerize-the-title-container button{
  width: fit-content !important;
  height: 100%;
  background: rgb(63, 63, 63);
  color: white;
  border: none;
  display: flex;
  border-radius: 150px;
  cursor: pointer;
  padding: 0.4rem 1rem;
  transition: background 0.3s ease, padding 0.3s ease, width 0.3s ease;
  gap: 0.3rem;
  align-items: center;
  place-content: center;
}
.centerize-the-title-container button:hover{
  background: rgb(31, 31, 31);
  width: fit-content;
  padding: 0.4rem 1.2rem;
}
.centerize-the-title-container button p{
  color: white;
  font-family: 'poppins';
  display: flex;
  place-content: center;
  align-items: center;
}
.centerize-the-title-container button img{
  width: auto;
  height: 100%;
}
#poster-btn img{
  rotate: 90deg;
}

.centerize-the-title-container button.active-type-btn {
  border: 2px solid #c9c9c9;
  background-color: #757575;
}

#custom-type-input{
width: 100%;
  height: 3rem;
  background: white;
  color: #4b4b4b;
  border-radius: 10px;
  border: 1px solid white;
  padding: 0.5rem;
  font-family: 'poppins';
  outline: none;
  transition: border 0.3s ease;
}

#custom-type-container{
  width: 50%;
  height: 100%;
  margin: 0rem 0rem 1rem 0rem;
  flex-direction: column;
}

#remove_btn_images{
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  background: rgba(255, 51, 51, 0.9);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  width: 1.3rem;
  height: 1.3rem;
  padding: 0.2rem;
  color: white;
  font-size: 1.2rem !important;
  display: flex;
  place-content: center;
  align-items: center;
  transition: background 0.3s ease;
}
#remove_btn_images:hover{
  background: rgba(182, 25, 25, 0.9);
}


#image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

#lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  z-index: 1;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px !important;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

#full_btn_images{
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 0.2rem;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  place-content: center;
  align-items: center;
  width: 1.3rem;
  height: 1.3rem;
  font-size: 1rem !important;
  font-family: 'poppins';
  transition: background 0.3s ease, opacity 0.3s ease;
}
#full_btn_images:hover{
  background: rgba(0, 0, 0, 0.808) ;
}

#preview-image-details{
  width: 10rem;
  border-radius: 8px;
  display: block;
  height: 10rem;
  object-fit: cover;
  object-position: top;
}




@media screen and (orientation: portrait) and (min-width: 1201px){
      .color-editable-btn{
    height: 3.5rem;
  }
      .input-field input, #custom-type-input, #banner-where-use, #width, #height{
    height: 4rem;
  }
.input-field{
    flex: none;
    display: flex;
    flex-direction: column;
    width: 49%;
  }
  
  .user-info-row{
    flex-direction: row;
    width: 100%;
  }
  .banner-where-use-and-shape-size-container{
    flex-direction: column;
  }
  #custom-type-container{
    width: 100%;
  }
  .input-title-lable-container{
    width: 100%;
  }
  .dimention-color-container{
    width: 100%;
  }
  #add-color-btn{
    width: 20%;
    padding: 1rem 0rem;
  }
  #color-buttons-container{
    flex-direction: row;
  }
  .color-button-wrapper{
    width: 49%;
  }
  .desc1-container, .desc2-container{
    width: 100%;
  }
  .both-description-container{
    flex-direction: column;
    gap: 0rem;
  }
  .img-label-container{
    width: 100%;
  }
  .above-image-uploader p{
    padding: 0rem 1rem;
    text-align: center;
  }
  .click-to-upload-btn{
    width: 19rem !important;
  }
  .centerize-the-title-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1,1fr);
    border-radius: 20px;
  }
  .title-container-above-form{
    height: 100%;
    flex-wrap: wrap;
    position: relative;
  }
  .centerize-the-title-container button{
    width: 100% !important;
    height: 3.5rem;
  }
  .form-submit-container button{
    width: 13rem;
  height: 3.5rem;
  }
}


@media screen and (orientation: portrait) and (max-width: 1200px){
    .color-editable-btn{
    height: 3.5rem;
  }
    .input-field input, #custom-type-input, #banner-where-use, #width, #height{
    height: 4rem;
  }
  .input-field{
    flex: none;
    display: flex;
    flex-direction: column;
    width: 49%;
  }
  
  .user-info-row{
    flex-direction: row;
    width: 100%;
  }
  .banner-where-use-and-shape-size-container{
    flex-direction: column;
  }
  #custom-type-container{
    width: 100%;
  }
  .input-title-lable-container{
    width: 100%;
  }
  .dimention-color-container{
    width: 100%;
  }
  #add-color-btn{
    width: 30%;
    padding: 1rem 0rem;
  }
  #color-buttons-container{
    flex-direction: row;
  }
  .color-button-wrapper{
    width: 49%;
  }
  .desc1-container, .desc2-container{
    width: 100%;
  }
  .both-description-container{
    flex-direction: column;
    gap: 0rem;
  }
  .img-label-container{
    width: 100%;
  }
  .above-image-uploader p{
    padding: 0rem 1rem;
    text-align: center;
  }
  .click-to-upload-btn{
    width: 18rem !important;
  }
  .centerize-the-title-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1,1fr);
    border-radius: 20px;
  }
  .title-container-above-form{
    height: 100%;
    flex-wrap: wrap;
    position: relative;
  }
  .centerize-the-title-container button{
    width: 100% !important;
    height: 3.5rem;
  }
  .form-submit-container button{
    width: 13rem;
  height: 3.5rem;
  }
}


@media screen and (orientation: portrait) and (max-width: 992px){
    .color-editable-btn{
    height: 3rem;
  }
  .input-field input, #custom-type-input, #banner-where-use, #width, #height{
    
    height: 3rem;
  }
  .input-field{
    flex: none;
    display: flex;
    flex-direction: column;
    width: 49%;
  }
  
  .user-info-row{
    flex-direction: row;
    width: 100%;
  }
  .banner-where-use-and-shape-size-container{
    flex-direction: column;
  }
  #custom-type-container{
    width: 100%;
  }
  .input-title-lable-container{
    width: 100%;
  }
  .dimention-color-container{
    width: 100%;
  }
  #add-color-btn{
    width: 30%;
  }
  #color-buttons-container{
    flex-direction: row;
  }
  .color-button-wrapper{
    width: 49%;
  }
  .desc1-container, .desc2-container{
    width: 100%;
  }
  .both-description-container{
    flex-direction: column;
    gap: 0rem;
  }
  .img-label-container{
    width: 100%;
  }
  .above-image-uploader p{
    padding: 0rem 1rem;
    text-align: center;
  }
  .click-to-upload-btn{
    width: 13rem !important;
  }
  .centerize-the-title-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1,1fr);
    border-radius: 20px;
  }
  .title-container-above-form{
    height: 100%;
    flex-wrap: wrap;
    position: relative;
  }
  .centerize-the-title-container button{
    width: 100% !important;
    height: 2.5rem;
  }
  .form-submit-container button{
    width: 10rem;
  height: 2.5rem;
  }
}


@media screen and (orientation: portrait) and (max-width: 768px){
  .color-editable-btn{
    height: 2.5rem;
  }
  .user-info-row{
    flex-direction: column;
  }
    .input-field{
    flex: none;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .banner-where-use-and-shape-size-container{
    flex-direction: column;
  }
  #custom-type-container{
    width: 100%;
  }
  .input-title-lable-container{
    width: 100%;
  }
  .dimention-color-container{
    width: 100%;
  }
  #add-color-btn{
    width: 100%;
  }
  #color-buttons-container{
    flex-direction: row;
  }
  .color-button-wrapper{
    width: 100%;
  }
  .desc1-container, .desc2-container{
    width: 100%;
  }
  .both-description-container{
    flex-direction: column;
    gap: 0rem;
  }
  .img-label-container{
    width: 100%;
  }
  .above-image-uploader p{
    padding: 0rem 1rem;
    text-align: center;
  }
  .click-to-upload-btn{
    width: 13rem !important;
  }
  .centerize-the-title-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
    border-radius: 20px;
  }
  .title-container-above-form{
    height: 100%;
    flex-wrap: wrap;
    position: relative;
  }
  .centerize-the-title-container button{
    width: 100% !important;
    height: 2.5rem;
  }
}


@media screen and (orientation: portrait) and (max-width: 600px){
  .user-info-row{
    flex-direction: column;
  }
  .banner-where-use-and-shape-size-container{
    flex-direction: column;
  }
  #custom-type-container{
    width: 100%;
  }
  .input-title-lable-container{
    width: 100%;
  }
  .dimention-color-container{
    width: 100%;
  }
  #add-color-btn{
    width: 100%;
  }
  #color-buttons-container{
    flex-direction: row;
  }
  .color-button-wrapper{
    width: 100%;
  }
  .desc1-container, .desc2-container{
    width: 100%;
  }
  .both-description-container{
    flex-direction: column;
    gap: 0rem;
  }
  .img-label-container{
    width: 100%;
  }
  .above-image-uploader p{
    padding: 0rem 1rem;
    text-align: center;
  }
  .click-to-upload-btn{
    width: 13rem !important;
  }
  .centerize-the-title-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
    border-radius: 20px;
  }
  .title-container-above-form{
    height: 100%;
    flex-wrap: wrap;
    position: relative;
  }
  .centerize-the-title-container button{
    width: 100% !important;
    height: 2.5rem;
  }
}


@media screen and (orientation: portrait) and (max-width: 450px){
  .user-info-row{
    flex-direction: column;
  }
  .banner-where-use-and-shape-size-container{
    flex-direction: column;
  }
  #custom-type-container{
    width: 100%;
  }
  .input-title-lable-container{
    width: 100%;
  }
  .dimention-color-container{
    width: 100%;
  }
  #add-color-btn{
    width: 100%;
  }
  #color-buttons-container{
    flex-direction: row;
  }
  .color-button-wrapper{
    width: 100%;
  }
  .desc1-container, .desc2-container{
    width: 100%;
  }
  .both-description-container{
    flex-direction: column;
    gap: 0rem;
  }
  .img-label-container{
    width: 100%;
  }
  .above-image-uploader p{
    padding: 0rem 1rem;
    text-align: center;
  }
  .click-to-upload-btn{
    width: 13rem !important;
  }
  .centerize-the-title-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
    border-radius: 20px;
  }
  .title-container-above-form{
    height: 100%;
    flex-wrap: wrap;
    position: relative;
  }
  .centerize-the-title-container button{
    width: 100% !important;
    height: 2.5rem;
  }
}







@media screen and (orientation: landscape) and (min-width: 1201px){
  .color-button-wrapper{
    width: 100%;
  }
  .color-editable-btn{
    height: 3rem;
  }
  #add-color-btn{
    width: 35%;
    height: 2rem;
  }
  .title-container-above-form{
    height: 3rem;
  }
  .user-info-row{
    flex-direction: row;
  }
  #custom-type-container{
    width: 50%
  }
}

@media screen and (orientation: landscape) and (max-width: 1200px){
  .color-button-wrapper{
    width: 100%;
  } 
  .color-editable-btn{
    height: 3rem;
  }
  #add-color-btn{
    width: 35%;
    height: 2rem;
  }
  .title-container-above-form{
    height: 3rem;
  }
  .user-info-row{
    flex-direction: row;
  }
  #custom-type-container{
    width: 50%
  }
}

@media screen and (orientation: landscape) and (max-width: 992px){
  .color-button-wrapper{
    width: 49%;
  }
  .color-editable-btn{
    height: 2.5rem;
  }
  #add-color-btn{
    width: 40%;
    height: 2rem;
  }
  .title-container-above-form{
    height: 2.5rem;
  }
  .user-info-row{
    flex-direction: column;
  }
  #custom-type-container{
    width: 100%
  }
  .input-title-lable-container{
    width: 60%;
  }
  .dimention-color-container{
    width: 40%;
  }
  .banner-where-use-and-shape-size-container{
    flex-direction: row;
  }
  .both-description-container{
    flex-direction: row;
  }
  .desc1-container, .desc2-container{
    width: 50%;
  }
}

@media screen and (orientation: landscape) and (max-width: 768px){
  .input-title-lable-container{
    width: 100%;
  }
  .dimention-color-container{
    width: 100%;
  }
  .banner-where-use-and-shape-size-container{
    flex-direction: column;
  }
  .both-description-container{
    flex-direction: column;
  }
  .desc1-container, .desc2-container{
    width: 100%;
  }
}

















































/*--------------------------------Section 5---------------------------------*/
.cover-sec5-gr{
    width: 100%;
    max-width: inherit;
    background: linear-gradient(0deg, #181818, #111);
    display: flex;
    place-content: center;

}
.section5-gr{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
}

.price-cards-container-gr{
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 2rem;

}
.card-title-gr{
  width: 100%;
  height: 4rem;
  background: #333333;
  color: white;
  display: flex;
  place-content: center;
  align-items: center;
}
.cards-container-gr{
  width: 100%;
  height: fit-content;
  background: rgb(224, 224, 224);
  overflow: hidden;
  scale: 1;
  transition: scale 0.3s ease;
}
.cards-container-gr:hover{
  scale: 1.025;
}
.down-arrow-card-gr{
  width: 100%;
  height: 1.5rem;
  display: flex;
  place-content: center;
  align-items: start;
}
.down-arrow-card-gr svg{
  width: auto;
  height: 3rem;
}
.text-and-price-button-container-gr{
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  place-content: center;
  align-items: center;
  gap: 0.5rem;
}
.price-div-gr{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  place-content: center;
  align-items: center;
  gap: 0.5rem;
}
.first-price-button{
  width: 7rem !important;
  height: auto !important;
  background: rgb(125, 125, 125) !important;
  border: none !important;
  border-radius: 150px !important;
  padding: 0.5rem 0.3rem !important;
  transition: width 0.3s ease !important;
}

.second-price-button{
  width: 7rem !important;
  height: auto !important;
  background: rgb(64, 64, 64) !important;
  border: none !important;
  border-radius: 150px !important;
  padding: 0.5rem 0.3rem !important;
  transition: width 0.3s ease !important;
}
.first-price-button:hover, .second-price-button:hover{
  width: 8rem !important;
}
.price-div-gr button h1{
  color: white;
  font-family: 'poppins';
  font-weight: 300;
}
.price-div-gr h2{
  display: flex;
  align-items: center;
  place-content: center;
}
.payment-h2-text-gr{
  font-weight: 300 !important;
}
.cards-option-gr{
  width: 100%;
  height: auto;
  place-content: center;
  align-items: center;
  gap: 0.8rem;
  display: flex;
  flex-direction: column;
  padding: 1rem 0rem;
  margin: 1rem 0rem;
  background: rgb(207, 207, 207);
}
.cards-option-gr div{
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  place-content: start;
  padding-left: 1rem;
  gap: 0.4rem;
}
.each-price-card-description-gr{
  width: 100%;
  height: auto;
  padding: 0rem 1rem;
  margin: 0rem 0rem 1rem 0rem;
}
.each-price-card-description-gr p{
  color: rgb(43, 43, 43);
  font-family: 'poppins';
  font-weight: 300;
}
.footer-of-the-card-price-gr{
  width: 100%;
  height: fit-content;
  background: #333333;
  display: flex;
  place-content: center;
  align-items: center;
}
.footer-of-the-card-price-gr button{
  width: 8rem !important;
  height: 2.5rem !important;
  border: 1px solid #ffffff4b !important;
  border-radius: 30px !important;
  margin: 1rem 0rem !important;
  padding: 0.3rem 0.5rem !important;
  color: white !important;
  background: #0000008c !important;
  align-items: center;
  display: flex;
  place-content: center;
  transition: width 0.3s ease, background 0.3s ease, border 0.5s ease !important;
}
.footer-of-the-card-price-gr button:hover{
  width: 9rem !important;
  background: #000000b6 !important;
  border: 1px solid #ffffffab !important;
}
.footer-of-the-card-price-gr button h2{
  font-family: 'poppins';
  font-weight: 300;
}
  .card-title-gr h1{
    text-align: center;
  }


@media screen and (orientation: portrait) and (min-width: 1201px){
  .price-cards-container-gr{
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(1,1fr);
  }
  .second-price-button, .first-price-button{
    padding: 1.1rem 0.3rem !important;
  }
    .footer-of-the-card-price-gr button{
    width: 12rem !important;
    padding: 1.5rem 0.5rem !important;
  }
  .footer-of-the-card-price-gr button:hover{
    width: 13rem !important;
  }
  .each-price-card-description-gr{
    height: 10rem;
  }
  .card-title-gr h1{
    font-size: 1.65rem !important;
  }
}


@media screen and (orientation: portrait) and (max-width: 1200px){
  .price-cards-container-gr{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
  }
  .second-price-button, .first-price-button{
    padding: 0.8rem 0.3rem !important;
  }
  .footer-of-the-card-price-gr button{
    width: 12rem !important;
    padding: 1.5rem 0.5rem !important;
  }
  .footer-of-the-card-price-gr button:hover{
    width: 13rem !important;
  }
  .each-price-card-description-gr{
    height: 10rem;
  }
  .card-title-gr h1{
    font-size: 1.65rem !important;
  }
}


@media screen and (orientation: portrait) and (max-width: 992px){
  .price-cards-container-gr{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
  }
  .second-price-button, .first-price-button{
    padding: 0.8rem 0.3rem !important;
  }
  .each-price-card-description-gr{
    height: 7rem;
  }
  .card-title-gr h1{
    font-size: 1.45rem !important;
  }
}


@media screen and (orientation: portrait) and (max-width: 768px){
  .price-cards-container-gr{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
  }
  .second-price-button, .first-price-button{
    padding: 0.7rem 0.3rem !important;
  }
  .each-price-card-description-gr{
    height: 7rem;
  }
  .card-title-gr h1{
    font-size: 1.3rem !important;
  }
}


@media screen and (orientation: portrait) and (max-width: 600px){
  .price-cards-container-gr{
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: auto;
  }
  .second-price-button, .first-price-button{
    padding: 0.6rem 0.3rem !important;
  }
  .each-price-card-description-gr{
    height: 5rem;
  }
}


@media screen and (orientation: portrait) and (max-width: 450px){
  .price-cards-container-gr{
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: auto;
  }
  .second-price-button, .first-price-button{
    padding: 0.5rem 0.3rem !important;
  }
    .each-price-card-description-gr{
    height: 5rem;
  }
}







@media screen and (orientation: landscape) and (min-width: 1201px){
  
}

@media screen and (orientation: landscape) and (max-width: 1200px){
  
}

@media screen and (orientation: landscape) and (max-width: 992px){
  
}

@media screen and (orientation: landscape) and (max-width: 768px){
  
}




































#upload-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.5);
  display: none;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#upload-overlay .upload-content {
  text-align: center;
}

#upload-overlay img {
width: 250px;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  object-fit: cover;
  clip-path: circle(37.10% at 50% 50%);
}
.type-loop {
  font-family: 'poppins';
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid black;
  margin-bottom: 1rem;
  animation: typing-loop 5s steps(33) infinite, blink 0.7s step-end infinite;
  text-align: center;
}

/* Typing + Pause + Backspace loop */
@keyframes typing-loop {
  0% {
    width: 0;
  }
  30% {
    width: 10ch; /* fully typed in 1.5s (30% of 5s) */
  }
  70% {
    width: 10ch; /* hold for 2s (40% of 5s) */
  }
  100% {
    width: 0; /* delete in 1.5s (30% of 5s) */
  }
}

/* Blinking cursor */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}










@media only screen and (max-width: 812px) and (orientation: portrait) {
  /* Good for responsive layout */
}

@media only screen and (max-width: 812px) and (orientation: landscape) {
  /* Good for responsive layout */
}


  .fade-up-delay1, .fade-left-delay1, .fade-right-delay1, .zoom-delay1 { opacity: 0; will-change: transform, opacity; }










     .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #000000;
      color: #fff;
      padding: 1rem;
      display: none;
      justify-content: space-between;
      align-items: center;
      z-index: 9999;
      font-family: sans-serif;
    }

    .cookie-banner.show {
      display: flex;
    }

    .cookie-banner button {
      background-color: #005eb5;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      font-size: 0.9rem !important;
      cursor: pointer;
      border-radius: 5px;
    }











#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000; /* or any background color */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner animation */
.spinner {
  border: 6px solid #003449;
  border-top: 6px solid #0084b8;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}
#loader p{
  color: white;
  font-family: 'poppins';
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

























.media-container-sec7 a:hover{
  background: rgb(94, 149, 213) !important;
}
.not-allowed-yet:hover .not-allowed-link{
  background: rgb(94, 149, 213) !important;
}
.not-allowed-yet li{
  color: rgba(112, 114, 139, 0.59) !important;
}
.footer-sec7 h6 a{
  color: rgb(94, 149, 213) !important;
}


































.support-icon-container{
  background: #0e1720;
}
.support-icon-container:hover{
  background: #1a2a3a;
}
.chat-back{
  background: #111111c9;
}

#user-form p{
  color: white;
}
.button-title-cb-container{
  color: white;
}
.header-containers-container{
  background: #1a2a3a;
}
.live-chat-box{
  background: orange;
}
#chat-header{
  color: rgb(230, 230, 230);
}

.bubble-wrapper{
  background: #32485e;
  color: white;
}
.bubble-wrapper::after{
  border-right-color: #32485e;
}

.bubble-wrapper2{
  background: black;
  color: white;
}
.bubble-wrapper2::after{
  border-left-color: black;
}

#new-chat-btn{
  background: white;
}
#new-chat-btn:hover{
  background: rgb(201, 201, 201);
}





























:root {
    --bg: #1a1e24;
    --color: #eee;
    --font: Montserrat, Roboto, Helvetica, Arial, sans-serif;
}
.wrapper {
    padding: 1.5rem 0;
    filter: url('#goo');
    scale: 1;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.wrapper .button-sec1-main{
  transition: scale 0.3s ease-in-out;
}
.wrapper .button-sec1-main:hover{
  scale: 1.05;
}

.button-sec1-main {
    display: inline-block;
    text-align: center;
    background: var(--color);
    color: var(--bg);
    font-weight: bold;
    padding: 1.18em 1.32em 1.03em;
    line-height: 1;
    border-radius: 1em;
    position: relative;
    min-width: 8.23em;
    text-decoration: none;
    font-family: var(--font);
    display: flex;
    align-items: center;
}

.button-sec1-main:before,
.button-sec1-main:after {
    width: 4.4em;
    height: 2.95em;
    position: absolute;
    content: "";
    display: inline-block;
    background: var(--color);
    border-radius: 50%;
    transition: transform 0.5s ease-in-out;
    transform: scale(0);
    z-index: -1;
}

.button-sec1-main:before {
    top: -25%;
    left: 20%;
}

.button-sec1-main:after {
    bottom: -25%;
    right: 20%;
}

.button-sec1-main:hover:before,
.button-sec1-main:hover:after {
    transform: none;
}



.mobile-sidebar{
  background-color: #00050fb2 !important;
}
.mobile-nav .menu-item{
  background-color: #39405b !important;
}
.mobile-submenu #menu-item1:hover, .mobile-submenu #menu-item3:hover, .mobile-submenu #menu-item4:hover{
  background-color: #575f81 !important;
}
.mobile-submenu #menu-item2:hover{
  background-color: transparent !important;
}

.mobile-nav .menu-item:hover{
  background-color: #575f81 !important;
}
#ServicesContainer:hover{
  background-color: #39405b !important;
}











.logo-sub-btn, .poster-sub-btn, .banner-sub-btn, .bcard-sub-btn, .others-sub-btn{
  cursor: pointer;
}
























.portfolio-links {
  display: none;
  margin-top: 10px;
  gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: repeat(2,1fr);
}

.portfolio-links button {
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  color: white;
  font-family: 'poppins';
  cursor: pointer;
}
.web-btn-port, .graph-btn-port, .vid-btn-port, .app-btn-port{
transition: transform 0.5s ease, opacity 0.5s ease, background 0.3s ease;
  background: rgb(94, 149, 213);
}

.web-btn-port:hover, .graph-btn-port:hover, .vid-btn-port:hover, .app-btn-port:hover{
  background: rgb(57, 95, 139);
}

.media-container-sec7 a:hover{
  background: rgb(94, 149, 213) !important;
}
.not-allowed-yet:hover .not-allowed-link{
  background: rgb(94, 149, 213) !important;
}
.not-allowed-yet li{
  color: rgba(112, 114, 139, 0.59) !important;
}
.footer-sec7 h6 a{
  color: rgb(94, 149, 213) !important;
}






















#start-chat{
  background: #58799e;
  color: white;
  text-shadow: 1px 1px 0px #224163;
}
#start-chat:hover{
  background: #87afdb;
}

#close-sidebar{
  font-size: 1.5rem !important;
}






























.dsk-buttons{
  filter: hue-rotate(300deg) saturate(90%);
}











/* iOS only */
@supports (-webkit-touch-callout: none) and (-webkit-overflow-scrolling: touch) {
  .pattern-1-around-rect-sec2-gr::before, .pattern-2-around-rect-sec2-gr::before{
    box-shadow: none;
    background-image: none;
    outline: none;
  }
  .glow-around-rect-sec2-gr{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 5%, rgb(255, 255, 255) 10%, transparent 20%, transparent 80%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 95%, rgb(255, 255, 255) 100%) !important;
  }
  .blurred-glow{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 5%, rgb(255, 255, 255) 10%, transparent 20%, transparent 80%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 95%, rgb(255, 255, 255) 100%) !important;
  }
  .shadow-2-around-rect-sec2-gr{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(213, 218, 217) 5%, rgb(213, 218, 217) 10%, transparent 20%, transparent 80%, rgb(131, 186, 235) 90%, rgb(131, 186, 235) 95%, rgb(131, 186, 235) 100%) !important;
  }
  .shadow-1-around-rect-sec2-gr{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(213, 218, 217) 5%, rgb(213, 218, 217) 10%, transparent 20%, transparent 80%, rgb(17, 144, 255) 90%, rgb(17, 144, 255) 95%, rgb(17, 144, 255) 100%) !important;
  }
  .shadow-0-around-rect-sec2-gr{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(213, 218, 217) 5%, rgb(213, 218, 217) 10%, transparent 20%, transparent 80%, rgb(92, 179, 255) 90%, rgb(92, 179, 255) 95%, rgb(92, 179, 255) 100%) !important;
  }
}

/* macOS Safari */
@supports (-webkit-touch-callout: none) and (not (-webkit-overflow-scrolling: touch)) {
  .pattern-1-around-rect-sec2-gr::before, .pattern-2-around-rect-sec2-gr::before{
    box-shadow: none;
    background-image: none;
    outline: none;
  }
  .glow-around-rect-sec2-gr{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 5%, rgb(255, 255, 255) 10%, transparent 20%, transparent 80%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 95%, rgb(255, 255, 255) 100%) !important;
  }
  .blurred-glow{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 5%, rgb(255, 255, 255) 10%, transparent 20%, transparent 80%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 95%, rgb(255, 255, 255) 100%) !important;
  }
  .shadow-2-around-rect-sec2-gr{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(213, 218, 217) 5%, rgb(213, 218, 217) 10%, transparent 20%, transparent 80%, rgb(131, 186, 235) 90%, rgb(131, 186, 235) 95%, rgb(131, 186, 235) 100%) !important;
  }
  .shadow-1-around-rect-sec2-gr{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(213, 218, 217) 5%, rgb(213, 218, 217) 10%, transparent 20%, transparent 80%, rgb(17, 144, 255) 90%, rgb(17, 144, 255) 95%, rgb(17, 144, 255) 100%) !important;
  }
  .shadow-0-around-rect-sec2-gr{
    background-image: linear-gradient(10deg, rgb(255, 255, 255) 0%, rgb(213, 218, 217) 5%, rgb(213, 218, 217) 10%, transparent 20%, transparent 80%, rgb(92, 179, 255) 90%, rgb(92, 179, 255) 95%, rgb(92, 179, 255) 100%) !important;
  }
}
