@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: "Freestyle Script";
    src: url("https://db.onlinewebfonts.com/t/c71d24192ced560b4ba39bfd38506a48.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/c71d24192ced560b4ba39bfd38506a48.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

  html {
    scroll-behavior: smooth;
  }
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.submenu{
  background: transparent;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.178);
}
.submenu ul a li:hover{
  background-color: #ffffff05;
    backdrop-filter: blur(10px);
}
.mobile-sidebar{
  background: transparent;
  backdrop-filter: blur(15px);
}

.mobile-nav .menu-item{
  background-color: #00000027;
}
.mobile-nav .menu-item:hover{
  background-color: #00000056; 
}
.mobile-submenu.open .menu-item:hover{
  background-color: #00000027;
}
nav a:hover{
  color: rgb(130, 240, 255) !important;
}
  /* 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: #000000;
  /*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;
    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;
}
.mobile-sidebar.open{
    position: absolute;
}
.mobile-header, .menu-icon p{
    color: white;
}
.cover-sec1-gr{
    width: 100%;
    max-width: inherit;
    background: #0f1724;
    display: flex;
    place-content: center;
}


.cover-sec1-gr header{
    width: 100%;
    height: 60vh;
    position: relative;
    place-content: center;
    align-items: center;
    display: flex;
    min-height: 400px;
    overflow: hidden;
}

/* Shapes positioned absolutely behind texts */
.shapes{
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1; /* behind texts */
}

/* Your shapes styling */
:root{
  --accent1:#8b5cf6;
  --accent2:#06b6d4;
  --accent3:#f472b6;
  --accent4:#f59e0b;
}
.shape{
  position:absolute;
  transform-origin:center center;
  will-change:transform;
  opacity:.95;
  filter:drop-shadow(0 8px 20px rgba(2,6,23,.5));
}
.circle{width:120px;height:120px;border-radius:50%;transition: width 0.3s ease, height 0.3s ease;
  background:radial-gradient(circle at 30% 20%,var(--accent1),transparent 70%);}
.small-circle{width:72px;height:72px;border-radius:50%;transition: width 0.3s ease, height 0.3s ease;
  background:radial-gradient(circle at 30% 20%,var(--accent2),transparent 70%);}
.square{width:120px;height:120px;transition: width 0.3s ease, height 0.3s ease;
  background:linear-gradient(135deg,var(--accent3),var(--accent4));
  border-radius:18px;}
.triangle{width:0;height:0; transition: width 0.3s ease, height 0.3s ease;
  border-left:70px solid transparent;
  border-right:70px solid transparent;
  border-bottom:130px solid var(--accent1);}
.hex{width:120px;height:70px;transition: width 0.3s ease, height 0.3s ease;
  background:linear-gradient(90deg,var(--accent2),var(--accent3));
  clip-path:polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%);}


  .border-behind-glass{
    width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 80%, rgb(0, 0, 0) 100% );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 80%, rgb(0, 0, 0) 100% );
  mask-repeat: no-repeat;
  mask-size: cover;
  pointer-events: none;
  }
  .behind-glass{
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    box-shadow: inset 0px 0px 20px 5px #dab4ff;
    z-index: 4;
    -webkit-mask-image: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0,0,0,0) 15%, rgba(0,0,0,0) 80%, rgba(0, 0, 0,0) 100% );
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0,0,0,0) 15%, rgba(0,0,0,0) 80%, rgba(0, 0, 0,0) 100% );
    mask-repeat: no-repeat;
    mask-size: cover;
    position: absolute;
    pointer-events: none;
  }
  /* Glass container */
  .glass {
    position: relative;
    width: 400px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    overflow: hidden;
    z-index: 9;
  }

  /* Extra realistic highlights */
  .glass::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    pointer-events: none;
  }

.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: auto;
    display: flex;
    flex-direction: column;
    place-content: space-between;
    color: white;
    padding: 0% 5% 5% 5%; 
}
.texts-container-sec1-gr div h1{
    text-align: center;
    line-height: 1;
}
.title1-sec1-gr{
    width: 100%;
    height: auto;
    text-align: left;
}
.title1-sec1-gr{
    font-size: 4.5rem;
    align-items: center;
    font-weight: 500;
}


.texts-container-sec1-gr button{
    width: 13rem !important;
    height: 2.5rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg,var(--accent1),var(--accent2));
    font-family: 'poppins';
    color: rgb(255, 255, 255);
    font-weight: 400;
    border-radius: 10px;
    scale: 1;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
    transition: scale 0.5s ease-in-out, color 0.3s ease, width 0.3s ease, height 0.3s ease, text-shadow 0.3s ease;
}
.texts-container-sec1-gr button:hover{
    scale: 1.04;
    color: rgb(255, 255, 255);
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.478);
}

.texts-container-sec1-gr div{
    display: flex;
    width: 100%;
    height: 100%;
    place-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}
.texts-container-sec1-gr p{
    width: 40%;
    text-align: center;
}

@media screen and (orientation: portrait) and (min-width: 1201px){
  .title1-sec1-gr{
    font-size: 7rem;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }


  .texts-container-sec1-gr button{
    width: 18rem !important;
    height: 3.8rem;
  }
}

@media screen and (orientation: portrait) and (max-width: 1200px){
  .title1-sec1-gr{
    font-size: 7rem;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }


  .texts-container-sec1-gr button{
    width: 18rem !important;
    height: 3.8rem;
  } 
}

@media screen and (orientation: portrait) and (max-width: 992px){
  .title1-sec1-gr{
    font-size: 7rem;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .texts-container-sec1-gr button{
    width: 15rem !important;
    height: 3.8rem;
  } 
}

@media screen and (orientation: portrait) and (max-width: 768px){
  .title1-sec1-gr{
    font-size: 5rem;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
 

  .texts-container-sec1-gr button{
    width: 13rem !important;
    height: 2.7rem;
  } 
}

@media screen and (orientation: portrait) and (max-width: 600px){
  .title1-sec1-gr{
    font-size: 4rem;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .texts-container-sec1-gr button{
    width: 12rem !important;
    height: 2.5rem;
  }
}

@media screen and (orientation: portrait) and (max-width: 450px){
  .title1-sec1-gr{
    font-size: 3rem;
    align-items: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .texts-container-sec1-gr button{
    width: 10rem !important;
    height: 2.3rem;
  }
}



@media screen and (orientation: landscape) and (min-width: 1201px){
  .menu {
    height: 4.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 4.5rem;
  }

  .texts-container-sec1-gr button{
    width: 13rem !important;
    height: 2.5rem;
  }

}

@media screen and (orientation: landscape) and (max-width: 1200px){
  .menu {
    height: 4.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 4.5rem;
  }

  .texts-container-sec1-gr button{
    width: 13rem !important;
    height: 2.5rem;
  }

}
@media screen and (orientation: landscape) and (max-width: 992px){
  .menu {
    height: 3.5rem !important;
  }
  .title1-sec1-gr{
    font-size: 3.5rem;
  }
  .texts-container-sec1-gr button{
    width: 11rem !important;
    height: 2.5rem;
  }
 
}
@media screen and (orientation: landscape) and (max-width: 768px){
  .menu {
    height: 3rem !important;
    width: 90%;
  }
  .title1-sec1-gr{
    font-size: 2.5rem;
  }

  .texts-container-sec1-gr button{
    width: 8rem !important;
    height: 2rem;
  }

}






































/*-----------------------------------------Section 2-------------------------------------*/
.cover-sec2-ab{
    width: 100%;
    max-width: inherit;
    background: linear-gradient(to top, #f8f8fa 0%, #f8f8fa 50%);
    display: flex;
    place-content: center;

}
.section2-ab{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
}
.left-right-info-container-sec2{
    width: 100%;
    height: 100%;
    display: flex;
    place-content: space-between;
    align-items: stretch;
    flex-direction: row;
    gap: 5rem;
}

.left-info-ab-sec2{
    width: auto;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}
.right-info-ab-sec2{
    width: auto;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.left-info-ab-sec2 h1, .left-info-ab-sec2 h5{
    color: black;
}
.left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-family: 'poppins';
    font-weight: 600;
    font-size: 2rem;
    line-height: 1;
}
.left-info-ab-sec2 p{
    color: rgb(61, 61, 61);
}
.left-info-ab-sec2 h5{
    font-family: 'Pacifico', cursive;
}
.right-info-ab-sec2 img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}





































/*-----------------------------------------Section 3-------------------------------------*/
.cover-sec3-ab{
    width: 100%;
    max-width: inherit;
    background: linear-gradient(to top, #f8f8fa 0%, #f8f8fa 50%);
    display: flex;
    place-content: center;

}
.section3-ab{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
}
.text-items-container-ab-sec3{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.text-container-sec3{
    width: 100%;
    height: fit-content;
    line-height: 1;
    text-align: left;
    display: flex;
}
.text-container-sec3 h1{
    color: black;
    width: 100%;
    text-align: center;
}
.items-container-sec3{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.items-container-sec3 a{
    width: 100%;
    height: 100%;
}
.items{
    width: 100%;
    height: 100%;
    background: white;
    transition: background 0.5s ease, width 0.5s ease, height 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    place-items: center;
}
.icon-items{
    width: 3rem;
    height: 3rem;
    align-items: center;
    place-content: center;
    display: flex;
    background: rgb(15, 23, 36);
    border-radius: 50%;
    transition: background 0.5s ease;
}
.icon-items img{
    width: 80%;
    height: auto;
    display: flex;
    place-content: center;
    align-items: center;
    justify-content: center;
    filter: brightness(100%) invert(0);
    transition: filter 0.5s ease;
}
.items h2{
    color: black;
    font-family: 'poppins';
    font-weight: 450;
    transition: color 0.5s ease;
    cursor: pointer;
}
.items p{
    color: rgb(63, 63, 63);
    font-family: 'poppins';
    font-weight: 300;
    transition: color 0.5s ease;
    cursor: pointer;
}
.items:hover{
    background: rgb(15, 23, 36);
}
.items:hover h2{
    color: white
}
.items:hover p{
    color: rgb(228, 228, 228);
}
.items:hover .icon-items{
    background: white;
}
.items:hover .icon-items img{
    filter: brightness(100%) invert(1);
}




































/*-----------------------------------------Section 4-------------------------------------*/
.cover-sec4-ab{
    width: 100%;
    max-width: inherit;
    background: linear-gradient(to left, #0f1724 50%, #ffffff 50%);
    display: flex;
    place-content: center;

}

.section4-ab{
    width: 100%;
    height: fit-content;
    position: relative;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
}
.left-right-info-container-sec4{
    width: 100%;
    height: 100%;
    display: flex;
    place-content: space-between;
    align-items: stretch;
    flex-direction: row;
    gap: 5rem;
}

.left-info-ab-sec4{
    width: auto;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}
.right-info-ab-sec4{
    width: auto;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2rem;
}

.left-info-ab-sec4 h1{
    color: black;
}
.left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-family: 'poppins';
    font-weight: 600;
    font-size: 2rem;
    line-height: 1;
}
.left-info-ab-sec4 p{
    color: rgb(61, 61, 61);
}

.rect-sec4{
    background: white;
    border-radius: 8px;
    width: 80%;
    height: fit-content;
    padding: 2rem;
    gap: 1rem;
    display: flex;
    flex-direction: row;
}
.img-h2-container{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    line-height: 1;
}
.rect-sec4 div img{
    width: 20px;
    height: 20px;
    margin: 5px 0px 0px 0px;
}
.rect-sec4 div h2{
    color: gray;
    width: 100%;
    height: fit-content;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "Freestyle Script", cursive;
    line-height: 1;
}
.rect-sec4 h3, .characters h3{
    color: black;
    font-weight: 500;
    width: 100%;
    height: fit-content;
    line-height: 1;
    font-family: 'poppins';
}
.rect-sec4 h5, .characters h5{
    color: rgb(78, 78, 78);
    font-weight: 300;
    width: 100%;
    height: fit-content;
    line-height: 1;
    font-family: 'poppins';
}
.characters-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.characters{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    place-content: center;
    align-items: center;
    gap: 0.5rem;
    scale: 1;
    transition: scale 0.5s ease-in-out;
}
.characters:hover{
  scale: 1.05;
}
.chn-container{
    width: 8rem;
    height: 8rem;
    background: rgb(220 218 214);
    border-radius: 100px;
    
}
.chn-container img{
    width: 100%;
    height: auto;
}

.drref{
    transition: background 0.3s ease;
    background: rgb(220 218 214);
}
.drref:hover{
    background: rgb(196, 194, 192);
}
.chn-insta{
    width: 2.2rem;
    height: 2.2rem;
    background: rgb(15, 23, 36);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    place-content: center;
    align-items: center;
    transition: background 0.3s ease;
}
.chn-insta img{
    width: 100%;
    height: auto;
    filter: brightness(100%) invert(1);
}
.characters h3, .characters h5{
    place-content: center;
    align-items: center;
    display: flex;
}
.characters h5{
    font-weight: 500;
}
.characters a{
    width: 100%;
    height: 100%;
    display: flex;
    place-content: center;
    align-items: center;
}
.chn-insta:hover{
    background: rgb(45, 63, 92);
}























/*----------------------------------Section 5--------------------------------------*/
.cover-section7{
    background: black;
}
#section7{
  overflow: hidden;
}
.x7-description-logo-footer p{
  color: rgb(159, 159, 159);
}

.sec7-div-down ul li{
  color: rgb(159, 159, 159);
}
.div-up-right-div h3{
  color: rgb(159, 159, 159);
}
.footer-sec7 h6 a{
  color: #5c7297 !important;
}
#logo-previews{
  color: white;
}
.div-up-right-div{
  background: transparent;
}
#color-section-wrapper{
  margin-top: 1rem;
}



















@media screen and (orientation: portrait) and (min-width: 1201px){
  .texts-container-sec1-gr p{
    width: 70%;
  }
  .chn-container{
    width: 9rem;
    height: 9rem;
  }
  .cover-sec1-gr header{
    height: 35vh;
  }
  .texts-container-sec1-gr div{
    gap: 4rem;
  }
  .title1-sec1-gr{
    font-size: 6rem;
  }
  .rect-sec4 div h2{
    font-size: 2rem;
  }
  .left-info-ab-sec4{
    display: grid;
  }
  .left-right-info-container-sec2{
    align-items: stretch;
    flex-direction: row;
    gap: 1rem;
  }
  .section2-ab, .section3-ab{
    padding: 4rem 2rem 2rem 2rem;
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 2.6rem;
  }
  .items-container-sec3{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    display: grid;
  }
  .cover-sec4-ab{
    background: linear-gradient(to left, #0f1724 50%, #fff 50%);
  }
  .left-right-info-container-sec4{
    align-items: stretch;
    flex-direction: row;
    gap: 4rem;
  }
  .left-info-ab-sec4, .right-info-ab-sec4{
    width: 50%;
  }
  .characters-container{
    display: flex;
    align-items: center;
    place-content: center;
    gap: 2rem;
  }
  .rect-sec4{
    width: 100%;
    padding: 3rem;
    place-self: center;
  }
  .section4-ab{
    padding: 2rem 2rem 4rem 2rem;
  }
  .items{
    padding: 1.5rem 1rem;
  }




    .circle{
    width: 115px;
    height: 115px;
    top: 28% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 120px solid var(--accent1);
    left: 70% !important;
    top: 80% !important;
  }
  .square{
    left: 60% !important;
    top: 25% !important;
    width: 135px;
    height: 135px;
  }
  .hex{
    left: 15% !important;
    top: 70% !important;
    width: 175px;
    height: 90px;
  }
  .small-circle{
    width: 85px;
    height: 85px;
    left: 89% !important;
    top: 50% !important;
  } 
}

@media screen and (orientation: portrait) and (max-width: 1200px){
  .texts-container-sec1-gr p{
    width: 70%;
  }
  .chn-container{
    width: 9rem;
    height: 9rem;
  }
  .cover-sec1-gr header{
    height: 35vh;
  }
  .texts-container-sec1-gr div{
    gap: 4rem;
  }
  .title1-sec1-gr{
    font-size: 6rem;
  }
  .rect-sec4 div h2{
    font-size: 2rem;
  }
  .left-info-ab-sec4{
    display: grid;
  }
  .left-right-info-container-sec2{
    align-items: stretch;
    flex-direction: row;
    gap: 1rem;
  }
  .section2-ab, .section3-ab{
    padding: 4rem 2rem 2rem 2rem;
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 2.6rem;
  }
  .items-container-sec3{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    display: grid;
  }
  .cover-sec4-ab{
    background: linear-gradient(to left, #0f1724 50%, #fff 50%);
  }
  .left-right-info-container-sec4{
    align-items: stretch;
    flex-direction: row;
    gap: 4rem;
  }
  .left-info-ab-sec4, .right-info-ab-sec4{
    width: 50%;
  }
  .characters-container{
    display: flex;
    align-items: center;
    place-content: center;
    gap: 2rem;
  }
  .rect-sec4{
    width: 100%;
    padding: 3rem;
    place-self: center;
  }
  .section4-ab{
    padding: 2rem 2rem 4rem 2rem;
  }
  .items{
    padding: 1.5rem 1rem;
  }



  .circle{
    width: 115px;
    height: 115px;
    top: 28% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 120px solid var(--accent1);
    left: 70% !important;
    top: 80% !important;
  }
  .square{
    left: 60% !important;
    top: 25% !important;
    width: 135px;
    height: 135px;
  }
  .hex{
    left: 15% !important;
    top: 70% !important;
    width: 175px;
    height: 90px;
  }
  .small-circle{
    width: 85px;
    height: 85px;
    left: 89% !important;
    top: 50% !important;
  }
}


@media screen and (orientation: portrait) and (max-width: 992px){
  .texts-container-sec1-gr p{
    width: 70%;
  }
  .texts-container-sec1-gr div{
    gap: 2rem;
  }
  .left-info-ab-sec4{
    display: flex;
  }
  .chn-container{
    width: 12rem;
    height: 12rem;
  }
  .cover-sec1-gr header{
    height: 35vh;
  }
  .title1-sec1-gr{
    font-size: 5rem;
  }
  .rect-sec4 div h2{
    font-size: 2rem;
  }
  .left-right-info-container-sec2{
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }
  .section2-ab, .section3-ab{
    padding: 4rem 2rem 2rem 2rem;
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 2.6rem;
  }
  .items-container-sec3{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    display: grid;
  }
  .cover-sec4-ab{
    background: linear-gradient(to top, #0f1724 50%, #fff 50%);
  }
  .left-right-info-container-sec4{
    align-items: center;
    flex-direction: column;
    gap: 5rem;
  }
  .left-info-ab-sec4, .right-info-ab-sec4{
    width: 100%;
  }
  .characters-container{
    display: flex;
    align-items: center;
    place-content: center;
    gap: 4rem;
  }
  .rect-sec4{
    width: 70%;
    padding: 3rem;
    place-self: center;
  }
  .section4-ab{
    padding: 2rem 2rem 4rem 2rem;
  }
  .items{
    padding: 1.5rem 1rem;
  }



  .circle{
    width: 95px;
    height: 95px;
    top: 30% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 110px solid var(--accent1);
    left: 65% !important;
    top: 80% !important;
  }
  .square{
    left: 60% !important;
    top: 30% !important;
    width: 115px;
    height: 115px;
  }
  .hex{
    left: 15% !important;
    top: 70% !important;
    width: 135px;
    height: 80px;
  }
  .small-circle{
    width: 75px;
    height: 75px;
    left: 87% !important;
    top: 50% !important;
  }
}


@media screen and (orientation: portrait) and (max-width: 768px){
  .texts-container-sec1-gr p{
    width: 80%;
  }
  .chn-container{
    width: 12rem;
    height: 12rem;
  }
  .cover-sec1-gr header{
    height: 45vh;
  }
  .title1-sec1-gr{
    font-size: 4rem;
  }
  .rect-sec4 div h2{
    font-size: 2rem;
  }
  .left-right-info-container-sec2{
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }
  .section2-ab, .section3-ab{
    padding: 2rem;
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 2.2rem;
  }
  .items-container-sec3{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    display: grid;
  }
  .cover-sec4-ab{
    background: linear-gradient(to top, #0f1724 33%, #fff 33%);
  }
  .left-right-info-container-sec4{
    align-items: center;
    flex-direction: column;
  }
  .left-info-ab-sec4, .right-info-ab-sec4{
    width: 100%;
  }
  .characters-container{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    row-gap: 2rem;
    display: grid;
  }
  .rect-sec4{
    width: 100%;
    padding: 1rem;
  }
  .section4-ab{
    padding: 2rem 2rem 4rem 2rem;
  }
  .items{
    padding: 1.5rem 1rem;
  }




  .circle{
    width: 85px;
    height: 85px;
    top: 30% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 95px solid var(--accent1);
    left: 65% !important;
    top: 80% !important;
  }
  .square{
    left: 60% !important;
    top: 30% !important;
    width: 95px;
    height: 95px;
  }
  .hex{
    left: 15% !important;
    top: 70% !important;
    width: 125px;
    height: 70px;
  }
  .small-circle{
    width: 70px;
    height: 70px;
    left: 87% !important;
    top: 50% !important;
  }
}


@media screen and (orientation: portrait) and (max-width: 600px){
  .texts-container-sec1-gr p{
    width: 70%;
  }
  .chn-container{
    width: 10rem;
    height: 10rem;
  }
  .cover-sec1-gr header{
    height: 50vh;
  }
  .title1-sec1-gr{
    font-size: 3rem;
  }
  .rect-sec4 div h2{
    font-size: 2rem;
  }
  .left-right-info-container-sec2{
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }
  .section2-ab, .section3-ab{
    padding: 2rem;
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 1.8rem;
  }
  .items-container-sec3{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    display: grid;
  }
  .cover-sec4-ab{
    background: linear-gradient(to top, #0f1724 33%, #fff 33%);
  }
  .left-right-info-container-sec4{
    align-items: center;
    flex-direction: column;
  }
  .left-info-ab-sec4, .right-info-ab-sec4{
    width: 100%;
  }
  .characters-container{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    row-gap: 2rem;
    display: grid;
  }
  .rect-sec4{
    width: 100%;
    padding: 1rem;
  }
  .section4-ab{
    padding: 2rem 2rem 4rem 2rem;
  }
  .items{
    padding: 1.5rem 0.5rem;
  }




  .circle{
    width: 75px;
    height: 75px;
    top: 25% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 85px solid var(--accent1);
    left: 65% !important;
    top: 80% !important;
  }
  .square{
    left: 60% !important;
    top: 25% !important;
    width: 75px;
    height: 75px;
  }
  .hex{
    left: 15% !important;
    top: 70% !important;
    width: 105px;
    height: 55px;
  }
  .small-circle{
    width: 55px;
    height: 55px;
    left: 85% !important;
    top: 50% !important;
  }
}


@media screen and (orientation: portrait) and (max-width: 450px){
  .texts-container-sec1-gr p{
    width: 80%;
  }
  .chn-container{
    width: 8rem;
    height: 8rem;
  }
  .cover-sec1-gr header{
    height: 50vh;
  }
  .title1-sec1-gr{
    font-size: 2rem;
  }
  .rect-sec4 div h2{
    font-size: 1.5rem;
  }
  .left-right-info-container-sec2{
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }
  .section2-ab, .section3-ab{
    padding: 2rem;
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 1.3rem;
  }
  .items-container-sec3{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    display: grid;
  }
  .cover-sec4-ab{
    background: linear-gradient(to top, #0f1724 37%, #fff 37%);
  }
  .left-right-info-container-sec4{
    align-items: center;
    flex-direction: column;
  }
  .left-info-ab-sec4, .right-info-ab-sec4{
    width: 100%;
  }
  .characters-container{
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    row-gap: 2rem;
    display: grid;
  }
  .rect-sec4{
    width: 100%;
    padding: 1rem;
  }
  .section4-ab{
    padding: 2rem 2rem 3rem 2rem;
  }
  .items{
    padding: 1.5rem 0.5rem;
  }



  .circle{
    width: 70px;
    height: 70px;
    top: 25% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid var(--accent1);
    left: 65% !important;
    top: 80% !important;
  }
  .square{
    left: 60% !important;
    top: 25% !important;
    width: 70px;
    height: 70px;
  }
  .hex{
    left: 15% !important;
    top: 70% !important;
    width: 100px;
    height: 50px;
  }
  .small-circle{
    width: 50px;
    height: 50px;
    left: 85% !important;
    top: 50% !important;
  }
}





@media screen and (orientation: landscape) and (min-width: 1201px){
  .cover-sec1-gr header{
    height: 70vh;
  }
  .rect-sec4{
    width: 100%;
  }
  .section2-ab{
    padding: 4rem 2rem 2rem 2rem;
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 2.5rem;
  }

  .circle{
    width: 100px;
    height: 100px;
    top: 25% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--accent1);
    left: 65% !important;
    top: 70% !important;
  }
  .square{
    left: 60% !important;
    top: 23% !important;
    width: 105px;
    height: 105px;
  }
  .hex{
    left: 15% !important;
    top: 60% !important;
    width: 140px;
    height: 70px;
  }
  .small-circle{
    width: 80px;
    height: 80px;
    left: 90% !important;
    top: 40% !important;
  }
}

@media screen and (orientation: landscape) and (max-width: 1200px){
  .cover-sec1-gr header{
    height: 60vh;
  }
  .rect-sec4{
    width: 100%;
  }
  .section2-ab{
    padding: 4rem 2rem 2rem 2rem;
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 2.5rem;
  }



  .circle{
    width: 100px;
    height: 100px;
    top: 24% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--accent1);
    left: 65% !important;
    top: 70% !important;
  }
  .square{
    left: 60% !important;
    top: 20% !important;
    width: 105px;
    height: 105px;
  }
  .hex{
    left: 15% !important;
    top: 60% !important;
    width: 140px;
    height: 70px;
  }
  .small-circle{
    width: 80px;
    height: 80px;
    left: 90% !important;
    top: 40% !important;
  }
}

@media screen and (orientation: landscape) and (max-width: 992px){
  .texts-container-sec1-gr p{
    width: 60%;
  }
  .cover-sec1-gr header{
    height: 100vh;
  }
  .rect-sec4{
    width: 100%;
  }
  .section2-ab{
    padding: 4rem 2rem 2rem 2rem;
  }
  .left-right-info-container-sec4{
    flex-direction: row;
  }
  .cover-sec4-ab{
    background: linear-gradient(to left, #0f1724 50%, #fff 50%);
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 2rem;
  }









  .circle{
    width: 90px;
    height: 90px;
    top: 18% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 90px solid var(--accent1);
    left: 65% !important;
    top: 68% !important;
  }
  .square{
    left: 60% !important;
    top: 15% !important;
    width: 80px;
    height: 80px;
  }
  .hex{
    left: 15% !important;
    top: 60% !important;
    width: 120px;
    height: 60px;
  }
  .small-circle{
    width: 70px;
    height: 70px;
    left: 90% !important;
    top: 40% !important;
  }
}


@media screen and (orientation: landscape) and (max-width: 768px){
  .texts-container-sec1-gr p{
    width: 40%;
  }
  .cover-sec1-gr header{
    height: 100vh;
  }
  .rect-sec4{
    width: 100%;
  }
  .section2-ab{
    padding: 4rem 2rem 2rem 2rem;
  }
  .left-right-info-container-sec4{
    flex-direction: column;
  }
  .cover-sec4-ab{
    background: linear-gradient(to top, #0f1724 50%, #fff 50%);
  }
  .left-info-ab-sec2 h1, .text-container-sec3 h1, .left-info-ab-sec4 h1, .right-info-ab-sec4 h1{
    font-size: 1.5rem;
  }



  .circle{
    width: 80px;
    height: 80px;
    top: 18% !important;
    left: 10% !important;
  }
  .triangle{
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid var(--accent1);
    left: 65% !important;
    top: 75% !important;
  }
  .square{
    left: 60% !important;
    top: 15% !important;
    width: 80px;
    height: 80px;
  }
  .hex{
    left: 15% !important;
    top: 60% !important;
    width: 100px;
    height: 50px;
  }
  .small-circle{
    width: 60px;
    height: 60px;
    left: 90% !important;
    top: 40% !important;
  }
}














  .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%;
      backdrop-filter: blur(5px);
      background-color: rgba(25, 40, 58, 0.705);
      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: linear-gradient(90deg,rgb(137, 93, 246),rgb(7, 181, 212));
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      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 rgb(137, 93, 246);
  border-top: 6px solid rgb(7, 181, 212);
  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: #0f1724 !important;
}




.not-allowed-yet:hover .not-allowed-link{
  background: #0f1724 !important;
}
.not-allowed-yet li{
  color: rgba(159, 159, 159, 0.57) !important;
}





































.support-icon-container{
  background: #0e1720;
}
.support-icon-container:hover{
  background: #1a2a3a;
}
.chat-back{
  background: #111111c9;
}
#start-chat{
  background: #1a1824;
  color: white;
}
#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);
}



































.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: #0f1724;
}

.web-btn-port:hover, .graph-btn-port:hover, .vid-btn-port:hover, .app-btn-port:hover{
  background: #212f44;
}






.dsk-buttons{
  filter: hue-rotate(282deg) saturate(30%);
}

#start-chat{
  background: #212f44;
  color: white;
  text-shadow: 1px 1px 0px #111a27;
}
#start-chat:hover{
  background: #3e5270;
}
#close-sidebar{
  font-size: 1.5rem !important;
}
