
@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;
}
body{
  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: #210055;  /* 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;
}
.cover-section3{
  width: 100%;
  max-width: inherit;
  background: white;
  display: flex;
  place-content: center;
}
.cover-section2{
  width: 100%;
  max-width: inherit;
  background: linear-gradient(to bottom, rgb(4 4 4), rgb(9 9 57));
  display: flex;
  place-content: center;
}
.cover-section1{
  width: 100%;
  max-width: inherit;
  background: linear-gradient(to right, rgb(20, 5, 66) 50%, rgb(24, 24, 24) 51%);
  display: flex;
  place-content: center;
}


.cover-section6{
  width: 100%;
  max-width: inherit;
  background: linear-gradient(180deg,#b94fe8,#7d39e9);
  display: flex;
  place-content: center;
}
.cover-section7{
  width: 100%;
  max-width: inherit;
  background: #181325;
  display: flex;
  place-content: center;
  padding: 3rem 0rem 2rem 0rem;
}
  /* Header styles */
  header {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  /* Menu container */
  .menu {
    position: absolute;
    top: 0.5rem !important;
    left: 50%;
    flex-wrap: wrap;
    max-width: 1200px;
    transform: translateX(-50%);
    border-radius: 10px;
    width: 90%;
    height: 10%;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideDown 0.5s ease-in-out forwards;

  }
  @keyframes slideDown {
    from {
      transform: translate(-50%,-50vh)
       /* start outside the top */
    }
    to {
      transform: translate(-50%,0vh) /* slide into place */
    }
  }

  .email-label, .name-label, .phone-label, .message-label{
    transition: opacity 0.3s ease;
  }

  /* First div: Logo */
  .logo {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
  }

  .logo img {
    max-height: 100%;
    width: auto;
    padding: 1vw;
  }

  /* Second div: Navigation */
  .nav-container {
    width: fit-content;
    display: flex;
    justify-content: start;
  }

  nav.nav {
    display: flex;
  }

  /* List styles */
  nav ul {
    list-style: none;
    display: flex;
    gap: 0.5vw;
    position: relative;
  }

  nav li {
    position: relative;
  }

  /* Links */
  nav a {
    text-decoration: none;
    color: #f1f1f1;
    padding: 0.5em 0.5em;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  nav a:hover{
    color: rgb(244, 255, 215);
  }
  /* Submenu styles */
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(11, 11, 11);
    border: 1px solid #3e3e3e80;
    border-radius: 10px;
    width: 12rem;
    max-width: 20rem;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
  }

  .submenu.open {
    max-height: 80vh;
    opacity: 1;
    height: auto;
    pointer-events: auto;
  }

  .submenu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2.5% 0%;
  }
  .submenu ul li i{
    color: transparent;
    transition: color 0.3s ease;
    display: flex;
  }

  .submenu ul a li{
    border-radius: 10px;
    padding: 4%;
    margin: 0% 2.5% 0% 2.5%;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .submenu ul a li:hover{
    background-color:#131313;
  }
  .submenu ul a li:hover i{
    color: white;
}
  .submenu ul a{
    text-decoration: none;
    background-color: transparent;
    color: #ffffff;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  #submenu-li-icon-container div p{
    color: rgb(255 255 255 / 50%);
    font-weight: 300;
  }

  /* Third div: Buttons */
  .dsk-buttons {
    width: fit-content;
    display: flex;
    justify-content: end;
    gap: 0.5em;
    padding: 1vw;
    filter: hue-rotate(-8deg);
  }
  .dsk-buttons button {
    cursor: pointer;
  }
  .buttons {
    display: flex;
    justify-content: center;
  }
  video::-webkit-media-controls {
  display: none !important;
}
  .buttons button {
    border: none;
    cursor: pointer;
  }
  .contact-button{
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    border: none;
    color: white;
    transition: background-color 0.2s ease, color 0.2s ease, border 0.3s ease, box-shadow 0.6s ease;
    box-shadow: inset 0px 0px 1px 1px solid #ffffff26 !important;
    border-radius: 30px !important;
    text-transform: uppercase;
  }
  .contact-button::before{
    content: "";
    position: absolute;
    top: 0;
    display: flex;
    left: 0;
    transition:mask-image 0.4s ease, -webkit-mask-image 0.4s ease, opacity 0.5s ease, mask-image 0.5s ease, mask-repeat 0.5s ease, mask-size 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
    opacity: 0;
    border: 1px solid transparent;
    height: 100%;
    place-self: center;
    background: linear-gradient(90deg, transparent 60%, #520fe185 130%);
    border-radius: 30px;
    z-index: 5;
    
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 60%, rgba(0,0,0,1) var(--mask-stop, 100%));
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    /* Standard */
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 60%, rgba(0,0,0,1) var(--mask-stop, 100%));
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
  }
  .contact-button:hover{
    background-color:rgba(255, 255, 255, 0.034);
    z-index: 2;
  }
  .contact-button p, .get-started-button p{
    font-weight: 600 !important;
    font-family: 'poppins' !important;
  }
  .get-started-button{
    outline: 1px solid #ffffff4f !important;
    background: rgba(0, 0, 0, 0);
    color: #cab1ff;
    transition: color 0.2s ease, box-shadow 0.3s ease;
    border: 1px solid #ffffff26 !important;
    position: relative;
    border-radius: 30px !important;
    display: flex;
    align-items: center;
    overflow: visible;
    place-content: center;
    text-transform: uppercase;
    box-shadow: 0px 1px #510fe1, 0px -1px #ba9cfb, 0px -5px 8px -6px #ae91ff, 0px 3px 8px -3px #510fe1, inset 0px 0px 15px -5px #6f38e8a3, inset 0px 0px 3px 0px #080117f2;
  }
  .get-started-button::before{
    content: "";
    position: absolute;
    top: 0;
    display: flex;
    left: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    opacity: 0;
    filter: blur(35px);
    height: 100%;
    place-self: center;
    background: linear-gradient(90deg, transparent, #510fe1, transparent);
    border-radius: 30px;
    z-index: -1;
  }
  .get-started-button:hover{
    color: #fff;
    background: rgba(0, 0, 0, 0);
    box-shadow: 0px 1px #6721fd, 0px -1px #ba9cfb, 0px -5px 8px -5px #ae91ff, 0px 3px 4px -3px #510fe1, inset 0px 0px 25px -5px #6f38e8a3,inset 0px 0px 3px 0px #080117f2;
  }
  .get-started-button:hover::before{
    opacity: 1;
  }

  .contact-button.hovered::before {
    transition: mask-image 0.4s ease, -webkit-mask-image 0.4s ease;
    opacity: 1;
    border-radius: 30px;
    box-shadow: inset 0px 0px 2px 1px #ba9cfb, inset 0px -2px 2px 1px #510fe1;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 55%, rgba(0,0,0,1) var(--mask-stop, 100%));
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    /* Standard */
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 55%, rgba(0,0,0,1) var(--mask-stop, 100%));
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    
  }
  /* Mobile menu icon */
  .menu-icon {
    display: none;
    cursor: pointer;
    margin-right: 4%;
  }
  /*Overlay for opening Mobile Slider Menu */
  .section-one-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    display: none; /* Hidden by default */
    z-index: 10; /* Sit above other content */
  }
  /* Sidebar for mobile menu */
  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* hidden by default */
    width: 300px;
    height: 100%;
    background-color: #181818;
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .mobile-sidebar.open {
    right: 0;
  }

  /* Mobile menu header (icon and close) */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Mobile menu content (second and third divs) */
  .mobile-menu-content {
    margin-top: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  /* Mobile navigation (list) */
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .mobile-nav .menu-item {
    cursor: pointer;
    color: white;
    background-color: #404040;
    position: relative;
    transition: background-color 0.3s ease-in-out;
        padding: 0.8em;
    border-radius: 10px;
  }
  .mobile-nav .menu-item:hover{
    background-color: #525252;
  }
  .mobile-submenu a{
    text-decoration: none;
  }
  
  .mobile-submenu.open .menu-item{
    background-color: transparent;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-submenu.open .menu-item i, .mobile-submenu .menu-item i{
    display: none;
    color: transparent;
    transition: color 0.3s ease-in-out;
  }
  .menu-item-services-arrow-icon-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #services-arrow{
    display: flex;
    transition: rotate 0.3s;
  }
  .mobile-submenu.open .menu-item:hover{
    background-color: #2d2d2d;
  }
  .mobile-submenu .menu-item{
    background-color: transparent;
  }
  .mobile-submenu.open .menu-item:hover i{
    display: flex;
    color: white;
  }

  .menu-item div p{
    color: #ffffff77;
  }

  /* Submenu in mobile */
  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    line-height: 1.1em;

  }

  .mobile-submenu.open {
    max-height: 500px; /* adjust as needed */
    display: flex;
    flex-direction: column;
    line-height: 1.1em;

    
  }




    /* Style for each section */
    section {
        height: fit-content;
        width: 100%;
        /*flex-wrap: wrap;
        max-width: 1200px;*/
        display: flex;
        scroll-behavior: smooth; /* Optional, for smooth behavior */
        justify-content: center;
        align-items: center;
        color: white;
        transition: background-color 0.5s;
        overflow: hidden;
      }
    #section2, #section3, #section5, #section6, #section7{
        height: fit-content;
        width: 100%;
        flex-wrap: wrap;
        max-width: 1200px;
        display: flex;
        scroll-behavior: smooth; /* Optional, for smooth behavior */
        justify-content: center;
        align-items: center;
        color: white;
        overflow: hidden;
        transition: background-color 0.5s;
    }

      /* Optional: Add some responsiveness or styles */



      /* Container for the two main divs */
  .content-container {
    display: flex;
    height: 100vh;
    width: 100%;
    transition: flex-direction 0.3s ease;
    
  }
  @media screen and (orientation: landscape){
    .content-container{
      min-height: 100vh;
    }
  }
  @media screen and (orientation: portrait){
    .content-container{
      min-height: 800px;
    }
  }
/* Add styles for centered content container */
.centered-content-left {
    position: absolute; /* Overlay on top of canvas if needed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;

    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
    z-index: 3; /* Above canvases */
    pointer-events: none; /* Let mouse events pass through if needed */
}
.main-video-header-container{
    display: flex;
    scale: 1;
    justify-content: center;
    place-items: center;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    max-width: 600px;
}

.centered-content-right{
    max-width: 600px;
    position: absolute;
    top: 0;
    padding: 5%;
    left: 0;
    width: 100%;
    gap: 1%;
    flex-direction: column;
    height: 100%;
    display: flex;
    text-align: left;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}
.centered-content-right p{
  color: #ffffffba;
}
 /* Style your image and text as needed */
.left-image {
  width: 80%;
  height: auto;
  animation: MoveRightLeftIntroImage 8s infinite;
}
@keyframes MoveRightLeftIntroImage{
  0%{transform:translate(0% , 0%); opacity:1;}
  50%{transform: translate(-5% , 10%);opacity:0.5;}
  100%{transform: translate(0% , 0%);opacity:1;}
}
.right-text {
  color: white; /* or desired text color */
  text-align: center;
  margin: 20px; /* optional padding */
}


  /* Inner divs each take 50% width */
  #combinedLeftDiv, #combinedRightDiv {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }

  /* Left Div styles (Pattern reveal with mask) */
  #combinedLeftDiv {
    background-color: rgb(12, 12, 27);
    background-image: url(/images/background-section-one-technology.png);
    background-repeat: repeat;
    filter: hue-rotate(85deg) brightness(80%) contrast(160%);
    background-size: cover;
  }

  /* Canvas inside left div for mask effect */
  #maskCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* allow mouse events to pass through */
    display: block;
    z-index: 2;
  }

  /* Right Div styles (Animated dots and lines) */
  #combinedRightDiv {
    background-color: #181818; /* or any desired background */
  }





  /* Canvas for dots and lines inside right div */
  #dotsCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 2;
  }


  #text-container {
    color: #fff;
    border-right: 2px solid #ffffff00; /* start transparent */
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    font-weight: bold;
    height: 1.5em;
    /* Apply the animation */
    animation: borderColorFade 1s infinite;
  }
  @keyframes borderColorFade {
    0% {
      border-right-color: #ffffff00; /* transparent */
    }
    50% {
      border-right-color: #fff; /* white */
    }
    100% {
      border-right-color: #ffffff00; /* transparent */
    }
  }

  /* Buttons styling */
  .header-buttons {
    display: flex;
    z-index: 4;
    gap: 10px;
    margin-top: 1%;
    pointer-events: auto;
  }
  .HeaderVideo{
    filter: brightness(200%) contrast(100%) hue-rotate(140deg);
  }
  .header-buttons button {
    cursor: pointer;
    border: none;
    z-index: 2;
    justify-content: center;
    text-align: center;
    align-content: center;
    align-items: center;
    display: flex;
    width: fit-content;
  }





.btn-primary{
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem !important;
  background: #3d3a4e;
  background-size: 400%;
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn-primary:hover::before{
  transform: scaleX(1);
}

.button-content {
  position: relative;
  z-index: 1;
}

.btn-primary::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: linear-gradient(
    82.3deg,
    rgb(114, 37, 230) 10.8%,
    rgb(50, 36, 240) 94.3%
  );
  transition: all 0.475s;
}


















.main-btn{
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem !important;
  background: linear-gradient(
    82.3deg,
    rgb(114, 37, 230) 10.8%,
    rgb(50, 36, 240) 94.3%
  );
  outline: 1px solid #3d3a4e00 !important;
  background-size: 200%;
  color: #fff;
  box-shadow: 0px 0px 50px 0px #201976;
  border: none;
  opacity: 1 !important;
  cursor: pointer;
  transition: outline 0.4s ease, box-shadow 0.4s ease;
}
.main-btn:hover{
  outline: 1px solid #3d3a4e !important;
  box-shadow: 0px 0px 50px 0px #3d3a4e !important;
}
.main-btn:hover::before{
  transform: scaleX(1);
}
.main-btn::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: 0 -50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: #3d3a4e;
  transition: all 0.475s;
  
}





  /* Responsive styles for Section 1*/
  
  @media screen and (orientation: portrait) and (min-width: 1201px){
    .header-buttons button{
      width: fit-content;
    }
    .submenu{
      width: clamp(10em, 25vw, 15em);
    }

    nav a{
          padding: 0.5rem;
    }
    .dsk-buttons{
      width: fit-content;
    }
    .menu{
      height: 8%;
      width:90%;
    }
  }
  @media screen and (orientation: portrait) and (max-width: 1200px){

    .submenu{
      width: 20rem;
    }

    nav a{
          padding: 0.5rem;
    }
    .dsk-buttons{
      width: fit-content;
    }
    .menu{
      height: 8%;
      width:90%;
    }

  }
    @media screen and (orientation: portrait) and (max-width: 992px) {
    nav ul{
        gap: .2em;
    }
    .content-container {
        flex-direction: column-reverse;
      }
  
      /* When mobile toggle is active, reverse order */
      .content-container.mobile-reverse {
        flex-direction: column-reverse;
      }



        .nav-container, .dsk-buttons {
        display: none;
    }
    .menu-icon {
        display: block;
    }
     
  }

  @media screen and (orientation: portrait) and (max-width:768px){
        /* Hide desktop menu elements */
    .nav-container,
    .dsk-buttons {
      display: none;
    }

    /* Show menu icon */
    .menu-icon {
      display: block;
    }
    .menu{
      height: 8%;
    }
  }
    @media screen and (orientation: portrait) and (max-width: 600px){
    .menu{
      height: 7%;
    }

        .nav-container, .dsk-buttons {
        display: none;
    }
    .menu-icon {
        display: block;
    }
  }
  @media screen and (orientation: portrait) and (max-width: 450px){
    .menu{
      height: 7%;
    }

        .nav-container, .dsk-buttons {
        display: none;
    }
    .menu-icon {
        display: block;
    }
  }

  @media screen and (orientation: portrait) and (max-width: 350px){
    .centered-content-right{
      justify-content: center;
      
    }
        .nav-container, .dsk-buttons {
        display: none;
    }
    .menu-icon {
        display: block;
    }
  }
  












  @media screen and (orientation: landscape) and (min-width: 1201px){
    .left-image{
      max-height: 100%;
    }
    .submenu{
      width: 15rem;
    }
    .submenu ul{
      gap: 0.2rem
    }

  }
  @media screen and (orientation: landscape) and (max-width: 1200px){

    .submenu{
      width: 15rem;
    }
    .submenu ul{
      gap: 0.2rem
    }
  }
  @media screen and (orientation: landscape) and (max-width: 992px){
    .menu{
      height: 15%;
    }
    .submenu{
      width: 11rem;
    }
    .submenu ul{
      gap: 0.2rem
    }
  }
  @media screen and (orientation: landscape) and (max-width: 768px){
    nav ul{
      gap: 1.5vw;
    }
    .menu {
      height: 12%;
    }
    .submenu{
      width: 10rem;
    }
    .submenu ul{
      gap: 0.2rem
    }
  }
  @media screen and (orientation: landscape) and (max-width: 600px){
        .submenu{
      width: 8rem;
    }
    .submenu ul{
      gap: 0.2rem
    }
.menu{
      width: 90%;
    }
    .nav-container{
      width: 55%;
    }
    .dsk-buttons{
      width: fit-content;
    gap: 0.2em;
    display: flex;
    flex-wrap: wrap;
    }
    .get-started-button{
      margin-right: 0px;
    }

    .submenu{
      max-width: 15em;
      width: 8em;
    }
    #submenu-li-icon-container div p{
      color: rgb(255 255 255 / 50%);
      font-weight: 300;
  }
  }
 









  /* -----------------------------------------------Section 2------------------------------------------------ */
  /* Container for the two main divs */
  #section2{
    display: flex;
    flex-direction: column;
    z-index: 20;
    position: relative;
  }
  .top-div-sec{
    display: flex;
    flex-direction: column;
    width: 100%;
    place-content: center;
    height: 20%;
    padding: 5% 5% 0% 5%;
  }
  .bottom-div-sec2{
    display: flex;
    width: 100%;
    z-index: 2;
    height: 80%;
    padding: 5% 5% 5% 5%;
    place-content: center;
  }

  .top-div-sec h1{
    display: flex;
    text-align: left;
    line-height: 1;
    padding: 0.25em 0em 0.5em 0em;
  }
  .cards-container{
    width: 100%;
    height: 100%;
    display: flex;
    place-content: center;
    perspective: 1000px;

  }
  .card{
    transition: transform 0.3s ease;
    perspective: 1000px;
    position: relative;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  .card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 10px; /* match your border-radius */
  background: linear-gradient(130deg, #00000059 0%, rgb(171 171 255 / 17%) 100%);
  z-index: 1;
  transition: opacity 1.5s ease-in-out, background 1.5s ease-in-out;
}

.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 10px;
  background: linear-gradient(130deg, rgb(27, 27, 63) 0% , rgb(5, 5, 21) 100%);
  opacity: 0;
  z-index: 2;
  transition: opacity 1.5s ease-in-out, background 1.5s ease-in-out;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

  /* The overlay for the light effect */
  .light {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    pointer-events: none; /* allow clicks to pass through */
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3), transparent 80%);
    /* We'll animate the position of this gradient using JavaScript */
    mix-blend-mode: plus-lighter; /* optional, for lighter glow effect */
    /* Add transition for opacity */
    transition: opacity 0.5s ease-out;
    opacity: 0; /* default visible */
  }
  
  /* Container for particles */
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
  }

  .card-img{
    z-index: 3;
    position: relative;
    width: 100%;
    display: flex;
    height: 100%;

  }

  .card-img img{
    width: auto;
    height: 100%;
    transform-origin: top center;
    transition: none;
  }

  /* Define the keyframes for the rotation sequence */
@keyframes rotateSequence {
  0% {
    transform: rotate(0deg);
  }
  33% {
    transform: rotate(18deg);
  }
  66% {
    transform: rotate(-6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
  .card-img:hover img{
    animation: rotateSequence 0.9s ease-in-out forwards;
    
  }
  .card-title{
    z-index: 3;
    position: relative;
    cursor: default;
  }
  .card-description p{
    z-index: 6;
    position: relative;
    cursor: default;
    color: #ffffffc4;
  }
  .card-img-button-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: auto;
    z-index: 10;
  }
  .button-container-sec2{
    position: relative; /* To contain pseudo-elements */
    display: flex;
    align-items: center;
    text-align: center;

  }

  /* Style for the button itself */
  .button-container-sec2 button {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 5px;
    color: white;
    z-index: 10;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: color 0.5s ease;
  }

  /* Pseudo-elements for layered backgrounds */
  .button-container-sec2::before,
  .button-container-sec2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px; /* Same as button border-radius */
    background-image: linear-gradient(32deg, #c029fb, #7722c3);
    z-index: 11; /* Behind the button */
    transition: opacity 0.5s ease-in-out;
  }

  /* Additional background layer for hover effect */
  .button-container-sec2::after {
    opacity: 0;
    background-image: linear-gradient(32deg, #7722c3,  #c029fb);
    z-index: 11; /* Between pseudo-elements and button */
  }

  /* Hover effects: fade in second background and optionally change button style */
  .button-container-sec2:hover::after {
    opacity: 1;
  }
  .sec2-title-img-card-gap{
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
  }
  .card-includers{
    gap: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    place-content: space-between;
  }
  #btn-sec2-see-more-second{
    border: none;
    z-index: 11;
    cursor: pointer;
    width: fit-content;
  }
  .title-disc-card-container-sec2{
    gap: 0.5rem;
  display: flex;
  flex-direction: column;
  }
  @media screen and (orientation: portrait) and (min-width: 1201px){
    .cards-container{
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }
    #btn-sec2-see-more-second{
      display: flex;
      width: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .cards-container{
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .card{
      height: initial;
    }
    .card-includers{
      gap: 1rem;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      place-content: space-between;
    }

    .card-img{
      z-index: 3;
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      display: flex;
      height: 100%;
    }
    .card-img-button-container{
      height: 4em;
      width: 4em;
    }
 .card-img img {
    width: auto;
    height: auto;
    transform-origin: top center;
    transition: none;
  }
  }

  @media screen and (orientation: portrait) and (max-width: 1200px){
    .cards-container{
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }
    #btn-sec2-see-more-second{
      display: flex;
      width: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .cards-container{
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .card{
      height: initial;
    }
    .card-includers{
      gap: 1rem;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      place-content: space-between;
    }

    .card-img{
      z-index: 3;
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      display: flex;
      height: 100%;
    }
    .card-img-button-container{
      height: 4em;
      width: 4em;
    }
 .card-img img {
    width: auto;
    height: auto;
    transform-origin: top center;
    transition: none;
  }
  }
    @media screen and (orientation: portrait) and (max-width: 992px) {
    .cards-container{
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }
    #btn-sec2-see-more-second{
      display: flex;
      width: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .card-img{
      z-index: 3;
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      display: flex;
      height: 100%;
    }
    .card-img-button-container{
      height: 3em;
      width: 3em;
    }
 .card-img img {
    width: auto;
    height: auto;
    transform-origin: top center;
    transition: none;
  }
  }

  @media screen and (orientation: portrait) and (max-width:768px) {

    .cards-container{
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }

    #btn-sec2-see-more-second{
      display: flex;
      width: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .card-img{
      z-index: 3;
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      display: flex;
      height: 100%;
    }

  }

  @media screen and (orientation: portrait) and (max-width:450px){
    .card-img{
            z-index: 3;
      position: relative;
      aspect-ratio: 1 / 1;
      display: flex;
      width: 100%;
      height: 100%;
    }
    .cards-container{
      grid-template-columns: repeat(1, 1fr);
            gap: 1rem;
      display: grid;
      height: fit-content;
    }
    #btn-sec2-see-more-second{
      display: flex;
      width: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
  }










    @media screen and (orientation: landscape) and (min-width: 1201px){
    .top-div-sec{
      height: 25%;
    }
    .bottom-div-sec{
      height: 75%;
      align-items: center;
    }
    #btn-sec2-see-more-second{
      display: flex;
      width: fit-content;
    }
    .cards-container{
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .card{
      height: initial;
    }
    .card-includers{
      gap: 1rem;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      place-content: space-between;
    }
    .card-img-button-container{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
      height: fit-content;
      z-index: 10;
    }
    .card-img{
      z-index: 3;
      position: relative;
      width: 10%;
      display: block;
      height: 100%;
    }
    .card-img img{
      width: 100%;
      height: auto;
      transform-origin: top center;
      transition: none;
    }
  }

    @media screen and (orientation: landscape) and (max-width: 1200px){
    .top-div-sec{
      height: 25%;
    }
    .bottom-div-sec{
      height: 75%;
      align-items: center;
    }

    #btn-sec2-see-more-second{
      display: flex;
      width: fit-content;
    }
    .cards-container{
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .card{
      height: initial;
    }
    .card-includers{
      gap: 1rem;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      place-content: space-between;
    }
    
    .card-img-button-container{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
      height: fit-content;
      z-index: 10;
    }
    .card-img{
      z-index: 3;
      position: relative;
      width: 10%;
      display: block;
      height: 100%;
    }
    .card-img img{
      width: 100%;
      height: auto;
      transform-origin: top center;
      transition: none;
    }
  }
   

  @media screen and (orientation: landscape) and (max-width: 992px){

    .top-div-sec{
      height: 35%;
    }
    .bottom-div-sec2{
      height: 65%;
      align-items: center;
    }
    .cards-container{
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }

    #btn-sec2-see-more-second{
      display: flex;
      width: fit-content;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .card-img{
      z-index: 3;
      position: relative;
      width: 2rem;
      aspect-ratio: 1 / 1.2;
      display: flex;
      height: 100%;
    }
        .card-includers{
      gap: 1rem;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      place-content: space-between;
    }
  }




  @media screen and (orientation: landscape) and (max-width:768px){
    .top-div-sec{
      height: 35%;
    }
    .bottom-div-sec2{
      height: 65%;
      align-items: center;
    }
    .cards-container{
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem;
      display: grid;
      height: fit-content;
    }

    #btn-sec2-see-more-second{
      display: flex;
    }
    .button-container-sec2{
      width: fit-content;
    }
    .card-img{
      z-index: 3;
      position: relative;
      width: 2rem;
      aspect-ratio: 1 / 1.2;
      display: flex;
      height: 100%;
    }
    .card-includers{
      gap: 1rem;
            width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      place-content: space-between;
    }
  }


























  /* -----------------------------------------------Section 3------------------------------------------------ */
  /* Container for the two main divs */
  #section3{
    display: flex;
    flex-direction: column;
    z-index: 21;
    position: relative;
  }
  .top-div-sec{
    display: flex;
    flex-direction: column;
    width: 100%;
    place-content: center;
    height: 20%;
    color: rebeccapurple;
    
  }
  /*THE TOP DIV IS DEFINED IN THE SEC2 - WE JUST REUSED THEM*/
  .bottom-div-sec3{
    display: flex;
    width: 100%;
    flex-direction: column;
    z-index: 2;
    height: 80%;
    padding: 5% 5% 5% 5%;
    place-content: center;
    align-items: flex-start;
    justify-content: center;
    transition: all 0.5s ease;
  }
  .line-container-sec3{
    width: 90%;
    align-self: center;
  }
  .buttons-container-sec3{
    flex-direction: row;
    place-content: center;
    text-align: center;
    display: flex;
  }
  .buttons-container-sec3 ul{
    display: flex ; 
    flex-direction: row; 
    width: 50%; 
    list-style-type: none; 
    place-items: center; 
    align-items: center; 
    justify-content: center;
  }
  .buttons-container-sec3 ul div {
    margin: auto;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s ease;
  }
  .buttons-container-sec3 ul div li{
    text-decoration: none;
    color:black;
    font-weight: 500;
  }
  .rect-container-sec3{
    width: 100%;
    height: 90%;
    background: white;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    border-radius: 15px;
    transition: height 0.5s ease;
    
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
  #div-sec1, #div-sec2, #div-sec3, #div-sec4{
    animation: fadeIn 0.8s ease-in-out forwards;

  }
  .rect-sec3-two-div-covered{
    display: flex; 
    width: 100%;
    height: 100%;
    padding: 1.5em;
  }
  .application-video-card-sec3{
    flex-direction: row-reverse;
  }
  /* Animation keyframes */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50px);
  }
}

/* Helper classes */
.fade-in-right {
  animation: fadeInRight 0.3s ease forwards;
}

.fade-out-left {
  animation: fadeOutLeft 0.3s ease forwards;
}






  .sec-3-rect-1-style{
    width: 100%; 
    height: 100%;
    background-image: linear-gradient(135deg, #8d809beb 30%, #8d809b 30%);
    position: relative; /* to position overlay absolutely within */
    overflow: hidden; /* ensure overlay stays within bounds */
  }
  /* Create the overlay layer with pattern */
  .sec-3-rect-1-style::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;

  }



  .sec-3-rect-2-style{
    width: 100%; 
    height: 100%;
    background-image: linear-gradient(45deg, #5f9ea0 70% ,#5f9ea0ed 70%);
    position: relative; /* to position overlay absolutely within */
    overflow: hidden; /* ensure overlay stays within bounds */
  }
  /* Create the overlay layer with pattern */
  .sec-3-rect-2-style::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
  }








    .sec-3-rect-3-style{
    width: 100%; 
    height: 100%;
    background-image: linear-gradient(135deg,#8891ffeb 30%,#8891ff 30%);
    position: relative; /* to position overlay absolutely within */
    overflow: hidden; /* ensure overlay stays within bounds */
  }
  /* Create the overlay layer with pattern */
  .sec-3-rect-3-style::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
  }





  .sec-3-rect-4-style{
    width: 100%; 
    height: 100%;
    background-image: linear-gradient(45deg, #9110ad 70%,#9110ade5 70%);
    position: relative; /* to position overlay absolutely within */
    overflow: hidden; /* ensure overlay stays within bounds */
  }
  /* Create the overlay layer with pattern */
  .sec-3-rect-4-style::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;

  }



  .rect-left-div-sec3{
    height: initial;
    width: 40%;

  }
  .rect-right-div-sec3{
    height: initial;
    width: 60%;
  }
  .image-container-sec3{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
  }
  .image-container-sec3 img{
    width: 65%;
    display: flex;
  }
  .text-container-sec3{
    height: 100%;
    width: 100%;
    align-items: start;
    justify-content: start;
  }
  .text-container-sec3 h2{
    display: flex;
    height: auto;
    width: 100%;
  }
  #h2-title-1-sec3{
    color: #ffffff;
   }
  #h2-title-2-sec3{
    color: #f6f0ff;
   }
  #h2-title-3-sec3{
    color: #fff;
   }
  #h2-title-4-sec3{
    color: #fff;
   }
  .text-container-sec3 h4{
    display: flex;
    height: auto;
    width: 100%;
    text-align: left;
  }
  .text-container-sec3 ul{
    list-style-type: none;
    padding: 0;
    margin: 5% 0% 5% 0%;
    gap: 1em;
    display: grid;
    width: 100%;
    height: fit-content;
  }
  .text-container-sec3 ul li{
    color: rgb(255 255 255);
    line-height: 1rem;
    font-weight: 500;
    position: relative;
    display: flex;
    place-items: center;
    gap: 0.5rem;
  }
  #ourServicesColorSec3{
    transition: color 0.5s ease;
  }
  #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
    font-family: 'X7DesignFont';
    font-size: 4rem;
    color: rgb(37, 37, 37);
    transition:color 0.4s ease;
  }


  .next-part-div-sec3{
    width: 100%;
    height: auto;
    padding: 0% 5% 5% 5%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
  }

  .includers-buttons-container-sec3{
    background-color: white;
    box-shadow: 0px 0px 75px -10px #0000001D;
    padding: 2.5em 0em 2.5em 1.5em;   
    place-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 15px;
  }

  .includers-container-np-sec3{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
  }
  .next-text-div-sec3{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 50%;
    height: auto;
    padding-right: 5%;
  }
  .next-pic-div-sec3{
    display: flex;
    background-color: #1e1e1e;
    width: 50%;
    height: auto;
    aspect-ratio: 1/1;
    place-content: center;
    align-items: center;
    border-radius: 30px 0px 0px 30px;
  }
  .next-text-title-container-sec3{
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .next-text-div-sec3 ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
  .next-text-div-sec3 ul li{
    display: flex;
    flex-direction: column;

  }
  .next-text-div-sec3 ul li h3{
    color: #1e1e1e;
    font-weight: bold;
  }
  .next-text-div-sec3 ul li p{
    color: rgb(113, 113, 113);
    margin-left: 1rem;
  }
  .next-pic-container-sec3 {
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    place-content: center;
    z-index: 1;
    position: relative;
  }
  .first-img-next-pic-sec3{
    position: absolute;
    aspect-ratio: 1/2;
    height: 100%; 
    background: url(/images/sec4-div-left-main-img.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    
  }
  .second-img-next-pic-sec3{
    position: absolute;
    top: 0; /* align to top */
    left: 0; /* align to left */
    aspect-ratio: 1/2;
    height: 70%;
    background: url(/images/sec4-div-top-left-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
  }
  .third-img-next-pic-sec3{
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    aspect-ratio: 1.5 / 1;
    background: url(/images/sec4-div-left-img-top-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 4;
  }
  .fourth-img-next-pic-sec3{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    aspect-ratio: 1.5 / 1;
    background: url(/images/sec4-div-left-img-bottom-right.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5;
  }
  .first-img-next-pic-sec3, .second-img-next-pic-sec3, .third-img-next-pic-sec3, .fourth-img-next-pic-sec3{
    transition: opacity 0.8s ease-in-out, z-index 0.8s ease-in-out;
  }


  .buttons-div-sec3{
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
    border-top: 1px solid rgb(238, 238, 238);
    gap: 1rem;
    place-content: center;
    padding: 1rem;
  }
  .buttons-div-sec3 button{
    background: #1e1e1e;
    border: none;
    color: white;
    padding: 1em;
    width: 20%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .buttons-div-sec3 button:hover{
    background: #424242;
  }
  .buttons-div-sec3 button h3{
    font-weight: normal !important;
    font-family: Poppins ,sans-serif;
  }

  @media screen and (orientation: portrait) {
    .rect-right-div-sec3{
      display: flex;
      place-content: center;
    }
    .text-container-sec3 ul{
      margin: 3% 0% 5% 0%;
    }
    .top-div-sec{
      height: 20%;
    }
    .bottom-div-sec3{
      height: 80%;
    }
  }


  @media screen and (orientation: landscape) {
    .text-container-sec3 ul{
      margin: 3% 0% 0% 0%;
    }



  /* Smooth scrolling for UX */
  html {
    scroll-behavior: smooth;
  }

  /* 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, #a200ff, #8400ff); /* 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,#8400ff, #a200ff);
  }

  /* Firefox */
  body {
    scrollbar-width: thin; /* Makes it slimmer */
    scrollbar-color: #8400ff transparent; /* Thumb + transparent track */
  }
  }







  @media screen and (orientation: portrait) and (min-width: 1201px){

    .buttons-container-sec3 ul{
      width: 100%;
      margin: auto;
    }
    .rect-sec3-two-div-covered{
      flex-direction: row;
    }
    #sec3-texts-title{
      display: flex;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: none;
    }
    .includers-container-np-sec3{ 
      display: flex;
      flex-direction: column-reverse;
    }
    .next-text-div-sec3{
      width: 100%;
    }
    .next-pic-div-sec3 {
      width: 70%;
      border-radius: 0px 0px 30px 30px;
      place-self: center;
    }
    .includers-buttons-container-sec3{
      padding: 0em 1.5em 2.5em 1.5em;
    }
    .next-text-div-sec3{
      padding-right: 0%;
      padding-top: 5%;
    }
    .buttons-div-sec3 button{
      padding: 0.7em;
      width: 30%;
    }
          .application-video-card-sec3{
    flex-direction: row-reverse;
  }
  }
  @media screen and (orientation: portrait) and (max-width: 1200px){

    .buttons-container-sec3 ul{
      width: 100%;
      margin: auto;
    }
    .rect-sec3-two-div-covered{
      flex-direction: row;
    }
    #sec3-texts-title{
      display: flex;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: none;
    }
    .includers-container-np-sec3{ 
      display: flex;
      flex-direction: column-reverse;
    }
    .next-text-div-sec3{
      width: 100%;
    }
    .next-pic-div-sec3 {
      width: 70%;
      border-radius: 0px 0px 30px 30px;
      place-self: center;
    }
    .includers-buttons-container-sec3{
      padding: 0em 1.5em 2.5em 1.5em;
    }
    .next-text-div-sec3{
      padding-right: 0%;
      padding-top: 5%;
    }
    .buttons-div-sec3 button{
      padding: 0.7em;
      width: 30%;
    }
          .application-video-card-sec3{
    flex-direction: row-reverse;
  }
  }



  
@media screen and (orientation: portrait) and (max-width: 992px){

    .buttons-container-sec3 ul{
      width: 100%;
      margin: auto;
    }
    .rect-sec3-two-div-covered{
      flex-direction: row;
    }
    #sec3-texts-title{
      display: flex;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: none;
    }
    .includers-container-np-sec3{ 
      display: flex;
      flex-direction: column-reverse;
    }
    .next-text-div-sec3{
      width: 100%;
    }
    .next-pic-div-sec3 {
      width: 70%;
      border-radius: 0px 0px 30px 30px;
      place-self: center;
    }
    .includers-buttons-container-sec3{
      padding: 0em 1.5em 2.5em 1.5em;
    }
    .next-text-div-sec3{
      padding-right: 0%;
      padding-top: 5%;
    }
    .buttons-div-sec3 button{
      padding: 0.7em;
      width: 30%;
    }
          .application-video-card-sec3{
    flex-direction: row-reverse;
  }
  }








@media screen and (orientation: portrait) and (max-width: 768px){
    .buttons-container-sec3 ul{
      width: 100%;
      margin: auto;
    }
    .rect-sec3-two-div-covered{
      flex-direction: row;
    }
    #sec3-texts-title{
      display: flex;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: none;
    }
    .includers-container-np-sec3{ 
      display: flex;
      flex-direction: column-reverse;
    }
    .next-text-div-sec3{
      width: 100%;
    }
    .next-pic-div-sec3 {
      width: 70%;
      border-radius: 0px 0px 30px 30px;
      place-self: center;
    }
    .includers-buttons-container-sec3{
      padding: 0em 1.5em 2.5em 1.5em;
    }
    .next-text-div-sec3{
      padding-right: 0%;
      padding-top: 5%;
    }
    .buttons-div-sec3 button{
      padding: 0.7em;
      width: 30%;
    }
          .application-video-card-sec3{
    flex-direction: row-reverse;
  }
  }

  @media screen and (orientation: portrait) and (max-width:600px){
    .buttons-container-sec3 ul{
      width: 100%;
      margin: auto;
    }
    .rect-sec3-two-div-covered{
      flex-direction: column;
    }
    #sec3-texts-title{
      display: none;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: flex;
    }
    .rect-sec3-two-div-covered{
      display: flex;
      place-items: center;
    }
    .rect-left-div-sec3{
      width: 80%;
    }
    .rect-right-div-sec3{
      width: 100%;
    }
    .next-pic-div-sec3{
      width: 80%;
      place-self: center;
    }
        .buttons-div-sec3 button{
      padding: 0.5em;
    width: 40%;
    }
    

  }










@media screen and (orientation: landscape) and (min-width: 1201px){
    .second-img-next-pic-sec3{
      height: 70%;
    }
    .top-div-sec{
      height: 20%;
    }
    .bottom-div-sec3{
      height: 80%;
    }
    .buttons-container-sec3 ul{
      width: 80%;
    }
        #sec3-texts-title{
      display: flex;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: none;
    }
              .application-video-card-sec3{
    flex-direction: row-reverse;
  }
  }







 @media screen and (orientation: landscape) and (max-width: 1200px){
      .second-img-next-pic-sec3{
      height: 70%;
    }

    .top-div-sec{
      height: 20%;
    }
    .bottom-div-sec3{
      height: 80%;
    }
    .buttons-container-sec3 ul{
      width: 80%;
    }
        #sec3-texts-title{
      display: flex;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: none;
    }
    .application-video-card-sec3{
      flex-direction: row-reverse;
  }
  }





  @media screen and (orientation: landscape) and (max-width: 992px){

    .top-div-sec{
      height: 30%;
    }
    .bottom-div-sec3{
      height: 70%;
    }
    .buttons-container-sec3 ul{
      width: 80%;
    }
        #sec3-texts-title{
      display: flex;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: none;
    }
    .application-video-card-sec3{
      flex-direction: row-reverse;
  }
  .third-img-next-pic-sec3, .fourth-img-next-pic-sec3{
    width:50%;
  }
  .first-img-next-pic-sec3{
    height: 80%;
  }
  .second-img-next-pic-sec3{
    height: 60%;
    }
  }



  @media screen and (orientation: landscape) and (max-width: 768px){
        .second-img-next-pic-sec3{
      height:40%;
    }
    .top-div-sec{
      height: 30%;
    }
    .bottom-div-sec3{
      height: 70%;
    }
    .buttons-container-sec3 ul{
      width: 80%;
    }
    #sec3-texts-title{
      display: flex;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: none;
    }
              .application-video-card-sec3{
    flex-direction: row-reverse;
  }
  .first-img-next-pic-sec3{
    height: 70%;
  }
  .third-img-next-pic-sec3, .fourth-img-next-pic-sec3{
    width:60%;
  }
  }

  @media screen and (orientation: landscape) and (max-width: 600px){
    #sec3-texts-title{
      display: none;
    }
    #sec3-icons1, #sec3-icons2, #sec3-icons3, #sec3-icons4{
      display: flex;
    }
    .application-video-card-sec3{
    flex-direction: row-reverse;
  }
  .includers-container-np-sec3{
    display: flex;
  flex-direction: column-reverse;
  place-items: center;
  }
  .next-pic-div-sec3{
    width: 80%;
  }
  .next-text-div-sec3{
    width: 100%;
    padding: 5% 0% 0% 0%;
    gap: 1.5rem;
  }
  .includers-buttons-container-sec3{
    padding: 0em 1.5em 2.5em 1.5em;
  }
  .next-pic-div-sec3{
    border-radius: 0px 0px 30px 30px;
  }

  .buttons-div-sec3 button{
    width: 40%;
  }
 .second-img-next-pic-sec3 {
    height: 70%;
  }
  }
  @media screen and (orientation: landscape) and (max-width: 400px){
  .next-pic-div-sec3 {
    width: 100%;
  }
  .buttons-div-sec3 button{
    width: 30%;
  }
  }

/*---------------------------------------Section 5--------------------------------------------*/
  /* Container for background canvas and content */
  .background-container {
    position: relative;
    width: 100%;
    height: fit-content; /* Full viewport height */
    flex-wrap: wrap;
    max-width: inherit;
    display: flex;
    justify-content: center;
  }
    .background-container::after {
      content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: 
    linear-gradient(
      rgba(36, 36, 46, 1), /* Adjust the alpha for gradient opacity */
      rgba(36, 36, 46, 0),rgba(36, 36, 46, 1)
    ),
    url('/images/sec3_pattern_2.jpg');
  background-repeat: repeat;
  background-size: 15%;
  mix-blend-mode:overlay;
  z-index: 2;
  opacity: 0.3;
  }
  /* Canvas styling to cover the background */
  #backgroundCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1; /* behind content */
  }
#section5 {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: rgb(36, 36, 46);
  height: fit-content;
  width: 100%;
  overflow: hidden;
  place-content: start;

}

 #section5 .top-div-sec{
  width: 100%;
  height: fit-content;
 }
  .bottom-div-sec5{
    padding: 5% 5% 5% 5%;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }
  .bottom-bottom-div-sec5{
    width: 100%;
    height: 6rem;
    border-radius: 100px;
    display: flex;
    background-color: transparent;
    z-index: 5;
    flex-direction: row;
    align-items: center;
    place-content: center;
    padding: 5% 0% 0% 0%;
  }
  .bottom-bottom-inside{
    width: 50%;
    height: 100%;
    border-radius: 100px;
    display: flex;
    background-color: #cfd9ff2b;
    z-index: 5;
    flex-direction: row;
    place-content: space-around;
    align-items: center;
    transition: width 0.3s ease;
  }



   /* Container for the row of divs */
  .section-row {
    display: flex;
    flex-wrap: wrap;
    z-index: 5;
    width: 100%;
    place-content: space-between;
    align-items: center;
  }

  /* Styles for each card (same as your original style) */
  .card-sec5 {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    background: #ececec;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .column-container{
    width:49%; 
    height:fit-content;
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
  .card-6-sec5 {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(45deg, #a07838 0%, #e7c377 35%, #e4c075 50%, #fef7b9 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  /* Image section */
  .card-image {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.5rem;
  }

  .card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  /* Content section */
  .card-content {
    flex: 1;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
  }

  /* Title styling */
  .card-content h3 {
    color: black;
    margin-bottom: 0.4rem;
  }

  /* Description container for animation */
  .card-description-sec5, .card-description-sec5-last {
    overflow: hidden;
    color: black;
    transition: max-height 0.5s ease;
    max-height: 4.2em; /* collapsed height (~3 lines) */
    position: relative;
  }

  /* Expanded state */
  .card-sec5.expanded .card-description-sec5,.card-sec5.expanded .card-description-sec5-last {
    max-height: 1000px; /* large enough to fit all content */
  }

  /* Fade effect at bottom when collapsed */
  .card-description-sec5::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to bottom, transparent, #ececec);
  }




    /* Fade effect at bottom when collapsed */
  .card-description-sec5-last::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    }

  /* Remove gradient when expanded */
  .card-sec5.expanded .card-description-sec5::after,.card-sec5.expanded .card-description-sec5-last::after{
    display: none;
  }

  
  /* "More"/"Less" link styles */
  .expand-text {
    margin-top: 0.4rem;
    color: #706ab3;
    cursor: pointer;
    border-top: 1px solid #f6f6f6;
    width: 100%;
    align-self: flex-start;
    transition: color 0.3s ease;
  }
  .ed{
    margin-top: 0.4rem;
    color: #643700;
    border-top: 1px solid #6437002b;
    cursor: pointer;
    font-size: 0.8rem;
    width: 100%;
    align-self: flex-start;
    transition: color 0.3s ease;
  }
  .expand-text:hover, .ed:hover{
    color: #131313;

  }
.glow-button {
position: relative;
    width: 20%;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(145deg, #6a11cb, #2575fc);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  /* Add a subtle hover effect */
  .glow-button:hover {
    transform: scale(0.95);
  }

  /* Create a pseudo-element for the glow effect */
  .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px; 
    background: radial-gradient(circle, rgba(0, 247, 255, 0.6), transparent 70%);
    border-radius: 50%;
    pointer-events: none; /* so it doesn't block interactions */
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.1s ease;
    z-index: -1; /* behind the button text */
  }
  #desc1, #desc2, #desc3, #desc4, #desc5, #desc6{
    transition: max-height 0.5s ease-in-out;
  }



   
  @media screen and (orientation: portrait) and (min-width:1201px){


    .card-content h3{
      margin-bottom: 0.8rem;
    }
    .card-description-sec5, .card-description-sec5-last{
      max-height: 4rem;
    }


    .bottom-bottom-div-sec5{
      margin-top: 3%;
    }
  .bottom-bottom-inside{
      width: 55%;
      height: 4rem;
      padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .glow-button{
      padding: 0em 0.3em !important;
      width: 5rem;
      aspect-ratio: 1/1;
      border-radius: 50%;
    }
    .card-image{
      max-width: 15%;
    }
    .card-description-sec5, .card-description-sec5-last{
      max-height: 4rem;
    }
  }
  @media screen and (orientation: portrait) and (max-width:1200px){


    .card-content h3{
      margin-bottom: 0.8rem;
    }
    .card-description-sec5, .card-description-sec5-last{
      max-height: 4rem;
    }


    .bottom-bottom-div-sec5{
      margin-top: 3%;
    }
  .bottom-bottom-inside{
      width: 65%;
      height: 4rem;
      padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .glow-button{
      padding: 0em 0.3em !important;
      width: 5rem;
      aspect-ratio: 1/1;
      border-radius: 50%;
    }
    .card-image{
      max-width: 15%;
    }
        .card-description-sec5, .card-description-sec5-last{
      max-height: 3rem;
    }
  }


  @media screen and (orientation: portrait) and (max-width: 992px){
    .card-content h3{
      margin-bottom: 0.6rem;
    }
    .card-description-sec5, .card-description-sec5-last{
      max-height: 3rem;
    }
    .bottom-bottom-div-sec5{
      margin-top: 3%;
    }
  .bottom-bottom-inside{
      width: 80%;
      height: 95%;
      padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .glow-button{
      padding: 0em 0.3em !important;
      width: 5rem;
      aspect-ratio: 1/1;
      border-radius: 50%;
    }
    .card-image{
      max-width: 18%;
    }
        .card-description-sec5, .card-description-sec5-last{
      max-height: 3rem;
    }

  }




  @media screen and (orientation: portrait) and (max-width: 768px){
    .card-content h3{
      margin-bottom: 0.4rem;
    }
    .card-description-sec5, .card-description-sec5-last{
      max-height: 2.5rem;
    }
    .bottom-bottom-inside{
      width: 85%;
      height: 80%;
      padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .glow-button{
      padding: 0em 0.3em !important;
      width: 4.5rem;
      aspect-ratio: 1/1;
      border-radius: 50%;
    }
    .bottom-div-sec5{
      padding: 5% 5% 10% 5%;
    } 
    .top-div-sec{
      padding: 7% 5% 0% 5%;
    }
        .card-image{
      max-width: 10%;
    }
        .card-description-sec5, .card-description-sec5-last{
      max-height: 2rem;
    }
    .column-container{
      width: 100%;
    }
  }




  @media screen and (orientation: portrait) and (max-width: 600px){
    .column-container{
      width: 100%;
    }
    .card-image{
      max-width: 15%;
    }
    .card-content h3{
      margin-bottom: 0.15rem;
    }
    .card-description-sec5, .card-description-sec5-last{
      max-height: 2rem;
    }


    .bottom-bottom-inside{
      width: 100%;
      height: 3.5rem;
      padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .glow-button{
      padding: 0em 0.3em !important;
      width: 4rem;
      aspect-ratio: 1/1;
      border-radius: 50%;
    }
    .bottom-bottom-inside h4{
      padding: 0.5em 1em;
    }
    .bottom-div-sec5{
      padding: 5% 5% 15% 5%;
    } 
    .top-div-sec{
      padding: 10% 5% 0% 5%;
    }
  }


  @media screen and (orientation: portrait) and (max-width: 450px){


    .bottom-bottom-inside h4{
      padding: 0% 2%; 
    }

    .glow-button{
      padding: 0em 0.3em !important;
      width: 3.5rem;
      aspect-ratio: 1/1;
      border-radius: 50%;
    }
        .bottom-bottom-inside{
      width: 100%;
      height: 3rem;
      padding: 0.5em 1em;
      gap: 1rem;
    }
  }








@media screen and (orientation: landscape) and (min-width: 1201px){
    .bottom-bottom-inside{
      width: fit-content;
      height: 100%;
            padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .glow-button{
      padding: 0.55em 0.3em !important;
      border-radius: 50%;
      aspect-ratio: 1/1;
      width: 6rem;
    }
    .card-image{
      max-width: 14%;
    }
    .card-description-sec5, .card-description-sec5-last{
      max-height: 2.2em;
    }
  }
@media screen and (orientation: landscape) and (max-width: 1200px){
    .bottom-bottom-inside{
      width: fit-content;
      height: 80%;
      padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .glow-button{
      padding: 0.55em 0.3em !important;
      border-radius: 50%;
      aspect-ratio: 1/1;
      width: 5rem;
      
    }
            .card-image{
      max-width: 15%;
    }
        .card-description-sec5, .card-description-sec5-last{
      max-height: 2.2em;
    }
  }
@media screen and (orientation: landscape) and (max-width: 992px){
    .bottom-bottom-inside{
      width: fit-content;
      height: 100%;
      padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .bottom-bottom-div-sec5{
      height: 5rem;
      margin-top: 4%;
    }
    .glow-button{
      padding: 0.7em 0.3em !important;
      width: 4.5rem;
    }
        .card-image{
      max-width: 15%;
    }
        .card-description-sec5, .card-description-sec5-last{
      max-height: 2.5em;
    }
  }
  @media screen and (orientation: landscape) and (max-width: 768px){
    .bottom-bottom-inside{
      width: fit-content;
      height: 100%;
      padding: 0.5em 2.5em;
      gap: 1rem;
    }
    .glow-button{
      padding: 0em 0.3em !important;
      width: 4rem;
    }
    .column-container{
      width: 100%;
      padding-top: 1rem;
    }
    .card-image{
      max-width: 10%;
    }
    .card-description-sec5, .card-description-sec5-last{
      max-height: 2.2em;
    }

  }
  @media screen and (orientation: landscape) and (max-width: 600px){
        .card-image{
      max-width: 12%;
    }
        .bottom-bottom-inside{
      width: fit-content;
      height: 60%;
      padding: 0.5em 2.5em;
    gap: 1rem;
    }
    .glow-button{
      padding: 0em 0.3em !important;
      width: 3.5rem;
    }
  }






  


  /*-------------------------------------------Section 6-------------------------------------------*/
    /* Container for the two main divs */
  #section6{
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
      /* Style for the small top center div */
  .top-center-div-sec6-alert {
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    padding: 1rem 2rem;
    height: auto;
    background-color: #0000003f;
    border-radius: 30px;
    overflow: hidden;
    box-sizing: border-box;
    position: absolute  ;
    }
  /* Container for the timer line */
  .timer-container-sec6-alert {
width: 100%;
    position: absolute;
    height: 10%;
    left: 0;
    top: 0;
    background-color: transparent;
    border-radius: 5px;
    overflow: hidden;
    opacity: 1;
  }

  /* The animated line */
  .timer-line-sec6-alert {
    height: 100%;
    width: 0%;
    background-color: #ffffff; /* color of the timer line */
    animation: fillLine 3s forwards; /* animate over 1 second */
    border-radius: 5px 0 0 5px;
    overflow: hidden;

  }

  .container-alert-text{
    display: flex;
    place-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
    overflow: hidden;
  }
  .container-alert-text div{
    width: 20%;
    height: 100%;
    padding: 2px;
    place-content: start;
    display: flex;
    align-items: center;
  }
  .container-alert-text div img{
    width: 60%;
    height: 70%;
    scale: 1.2;
  }
  .container-alert-text p{
    color: white;
    text-align: right;
    text-shadow: 1px 1px 2px black;
  }


 .top-center-div-sec6-not-alert {
position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    padding: 1rem 2rem;
    height: auto;
    background-color: #0000003f;
    border-radius: 30px;
    overflow: hidden;
    box-sizing: border-box;

    }
  /* Container for the timer line */
  .timer-container-sec6-not-alert {
width: 100%;
    position: absolute;
    height: 10%;
    left: 0;
    top: 0;
    background-color: transparent;
    border-radius: 5px;
    overflow: hidden;
    opacity: 1;
  }

  /* The animated line */
  .timer-line-sec6-not-alert {
    height: 100%;
    width: 0%;
    background-color: #ffffff; /* color of the timer line */
    animation: fillLine 3s forwards; /* animate over 1 second */
    border-radius: 5px 0 0 5px;
    overflow: hidden;

  }

  /* Keyframes for the animation */
  @keyframes fillLine {
    from { width: 0%; }
    to { width: 100%; }
  }

    
  .container-not-alert-text{
    display: flex;
    place-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
    overflow: hidden;
  }
  .container-not-alert-text div{
    width: 20%;
    height: 100%;
    padding: 2px;
    place-content: start;
    display: flex;
    align-items: center;
  }
  .container-not-alert-text div img{
    width: 60%;
    height: 70%;
    scale: 1.2;
  }
  .container-not-alert-text p{
    color: white;
    text-shadow: 1px 1px 2px black;
    text-align: right;
  }


  .div-container-sec6{
    width: 90%;
    height: 90%;
    display: flex;
    gap: 1rem;
    flex-direction: row;
  }
  .left-div-sec6{
    text-align: left;
    padding: 5% 3%;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #00000052;
    place-content: center;
  }
  .left-div-sec6 h5{
    color: #ffedaa;
    font-weight: bold;
  }
  .left-div-sec6 h1{
    padding: 0.7em 0em 0.7em 0em;
  }
  .left-div-sec6 p{
    color: rgba(255, 255, 255, 0.829);
  }
  .right-div-sec6{
    background-color: rgba(0, 0, 0, 0.103);
    text-align: left;
    padding: 3%;
    width: 100%;
    height: 100%;
    display: flex;
    place-content: center;
  }


  .container-sec6-right-div {
      height: 100%;
      width: 100%;
      place-content: center;
    }

    .contact-section-sec6 {
      display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    height: 100%;
    }

    /* Contact Form Styles */
    .contact-form-sec6 {
      flex: 1 1 45%;
      background: transparent;
      padding: 10px;
      border-radius: 8px;
      place-content: center;
      width: 100%;
      display: flex;
      gap: 0.5rem;
      flex-direction: column;
      align-items: center;
    }

    /* Contact Form Heading */
    .contact-form-sec6 h1{
      margin-bottom: 20px;
      font-weight: bold;
      text-align: center;
      color: rgb(231, 194, 248);
    }


    /* Container for centering the button */
    .button-wrapper-sec6 {
      display: flex;
      justify-content: center; /* Centers horizontally */
      margin-top: 20px; /* Optional spacing above the button */
    }
.item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    color: #e7c2f8;
    transition: all 0.2s ease;
  }











    /* Responsive Styles */
    @media screen and (orientation: portrait) and (min-width: 1201px){
    #section6{
      height: fit-content;
      padding: 3rem 0rem;
    }
    .left-div-sec6 h1{
      padding: 0.1rem 0rem 1rem 0rem;
    }
    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 1rem;
    }
    .div-container-sec6{
      flex-direction: column;
    }
    .left-div-sec6{
      height:fit-content;
    }
    .right-div-sec6{
      height:fit-content;
    }


    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }

 
    .checkbox-group{
      border-radius: 12px;
      width: 90%;
      padding: 2rem;
      margin-bottom: 5px;
      gap: 1rem;
      display: flex;
      flex-direction: column;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }
    .item{
      padding-left: 3rem;
    }
    .checkmark{
      width: 2.5rem;
      height: 2.5rem;
    }
    .checkmark:after{
      left: 0.85rem;
      top: 0.35rem;
      width: 0.65rem;
      height: 1.2rem;
    }
    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 90%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
    .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.8rem 1.5rem;
    }
  }





         @media screen and (orientation: portrait) and (max-width:1200px){
              #section6{
      height: fit-content;
      padding: 3rem 0rem;
    }

    .left-div-sec6 h1{
      padding: 0.1rem 0rem 0.8rem 0rem;
    }

    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 1rem;
    }

    .div-container-sec6{
      flex-direction: column;
    }
    .left-div-sec6{
      height:fit-content;
    }
    .right-div-sec6{
      height:fit-content;
    }

    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }

    .checkbox-group{
      border-radius: 12px;
      width: 90%;
      padding: 1rem;
      margin-bottom: 5px;
      gap: 1rem;
  display: flex;
  flex-direction: column;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }
    .item{
      padding-left: 2.5rem;
    }
    .checkmark{
      width: 2rem;
      height: 2rem;
    }
    .checkmark:after{
      left: 0.7rem;
      top: 0.25rem;
      width: 0.5rem;
      height: 1rem;
    }
    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 90%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
    .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.8rem 1.5rem;
    }
  }


  @media screen and (orientation: portrait) and (max-width:992px){
        #section6{
      height: fit-content;
      padding: 3rem 0rem;
    }
    .left-div-sec6 h1{
      padding: 0.2rem 0rem 0.8rem 0rem;
    }
    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 1rem;
    }
    .div-container-sec6{
      flex-direction: column;
    }
    .left-div-sec6{
      height:fit-content;
    }
    .right-div-sec6{
      height:fit-content;
    }

    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }


    .checkbox-group{
      border-radius: 12px;
      width: 90%;
      padding: 1rem;
      margin-bottom: 5px;
      gap: 1rem;
  display: flex;
  flex-direction: column;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }

    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 90%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
    .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.6rem 1rem;
    }
  }







     @media screen and (orientation: portrait) and (max-width: 768px){
          #section6{
      height: fit-content;
      padding: 3rem 0rem;
    }

    .left-div-sec6 h1{
      padding: 0.2rem 0rem 0.8rem 0rem;
    }

    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 1rem;
    }

    .div-container-sec6{
      flex-direction: column;
    }
    .left-div-sec6{
      height:fit-content;
    }
    .right-div-sec6{
      height:fit-content;
    }
    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }

    .checkbox-group{
      border-radius: 12px;
      width: 90%;
      padding: 1rem;
      margin-bottom: 5px;
      gap: 1rem;
  display: flex;
  flex-direction: column;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }

    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 90%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
    .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.6rem 0.6rem;
    }
  }








    @media screen and (orientation: portrait) and (max-width: 600px){
          #section6{
      height: fit-content;
      padding: 3rem 0rem;
    }

    .left-div-sec6 h1{
      padding: 0.1em 0em 0.7em 0em;
    }
    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 0.8rem;
    }
    .div-container-sec6{
      flex-direction: column;
    }
    .left-div-sec6{
      height:fit-content;
    }
    .right-div-sec6{
      height:fit-content;
    }


    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }

    .checkbox-group{
      border-radius: 12px;
      width: 90%;
      padding: 1rem;
      margin-bottom: 5px;
      gap: 1rem;
      display: flex;
      flex-direction: column;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }
    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 90%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
            .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.4rem 0.2rem;
    }
  }


  






 @media screen and (orientation: landscape) and (min-width: 1201px){
  #section6{
    height: 40rem;
  }
  .div-container-sec6{
    height: fit-content;
  }
    .left-div-sec6 h1{
      padding: 0.3rem 0rem 1rem 0rem;
    }
    .left-div-sec6 h1, .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
        line-height: 1.5rem;
    }
    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 1rem;
    }
    .div-container-sec6{
      flex-direction: row;
    }
    .left-div-sec6{
      height: 100%;
      width: 50%;
    }
    .right-div-sec6{
      height: 100%;
      width: 50%;
    }

    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }

    .checkbox-group{
      border-radius: 12px;
      width: 100%;
      padding: 0.3rem 1rem;
      margin-bottom: 5px;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }
    .item{
      padding-left: 1.7rem;
      font-weight: 500;
    }
    .checkmark{
      width: 1.4rem;
      height: 1.4rem;
    }
    .checkmark:after{
      left: 0.45rem;
      top: 0.10rem;
      width: 0.35rem;
      height: 0.8rem;
    }
    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 100%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
    .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.7rem 0.9rem;
    }
  }







    @media screen and (orientation: landscape) and (max-width: 1200px){
        #section6{
    height: 30rem;
  }
  .div-container-sec6{
    height: fit-content;
  }
    .left-div-sec6 h1{
      padding: 0.3rem 0rem 1rem 0rem;
    }
    .left-div-sec6 h1, .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
        line-height: 1.5rem;
    }
    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 1rem;
    }
    .div-container-sec6{
      flex-direction: row;
    }
    .left-div-sec6{
      height: 100%;
      width: 50%;
    }
    .right-div-sec6{
      height: 100%;
      width: 50%;
    }


    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }


    .checkbox-group{
      border-radius: 12px;
      width: 100%;
      padding: 0.3rem 1rem;
      margin-bottom: 5px;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }
    .item{
      padding-left: 1.7rem;
      font-weight: 500;
    }
    .checkmark{
      width: 1.4rem;
      height: 1.4rem;
    }
    .checkmark:after{
      left: 0.45rem;
      top: 0.10rem;
      width: 0.35rem;
      height: 0.8rem;
    }
    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 100%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
    .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.7rem 0.9rem;
    }
  }








    @media screen and (orientation: landscape) and (max-width: 992px){
              #section6{
    height:25rem;
  }
  .div-container-sec6{
    height: fit-content;
  }
    .left-div-sec6 h1{
      padding: 0.3rem 0rem 0.5rem 0rem;
    }
    .left-div-sec6 h1, .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      line-height: 1.3rem;
    }
    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 1rem;
    }
    .div-container-sec6{
      flex-direction: row;
    }
    .left-div-sec6{
      height: 100%;
      width: 50%;
    }
    .right-div-sec6{
      height: 100%;
      width: 50%;
    }


    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }

    .checkbox-group{
      border-radius: 12px;
      width: 100%;
      padding: 0.3rem 1rem;
      margin-bottom: 5px;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }
    .item{
      padding-left: 1.5rem;
      font-weight: 500;
    }
    .checkmark{
      width: 1.2rem;
      height: 1.2rem;
    }
    .checkmark:after{
      left: 0.35rem;
      top: 0.0rem;
      width: 0.35rem;
      height: 0.8rem;
    }
    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 100%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
    .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.5rem 0.7rem;
    }
  }











  @media screen and (orientation: landscape) and (max-width: 768px){
    #section6{
      height:20rem;
    }
    .div-container-sec6{
      height: fit-content;
    }
    .left-div-sec6 h1{
      padding: 0.2rem 0rem 0.4rem 0rem;
    }
    .left-div-sec6 h1, .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      line-height: 1.2rem;
    }
    .contact-form-sec6 h1, #additionalInputs h1, #list-three-sec6 h1{
      margin-bottom: 1rem;
    }
    .div-container-sec6{
      flex-direction: row;
    }
    .left-div-sec6{
      height: 100%;
      width: 50%;
    }
    .right-div-sec6{
      height: 100%;
      width: 50%;
    }

    .button-wrapper-sec6{
      width: 80%;
      margin-top:0px;
    }


    .checkbox-group{
      border-radius: 12px;
      width: 100%;
      padding: 0.3rem 1rem;
      margin-bottom: 5px;
    }
    .checkbox-group h2{
      margin-bottom: 5px;
      color: #ffffff;
      font-weight: 666;
    }
    .item{
      padding-left: 1.5rem;
    }
    .checkmark{
      width: 1.2rem;
      height: 1.2rem;
    }
    .checkmark:after{
      left: 0.35rem;
      top: 0.0rem;
      width: 0.35rem;
      height: 0.8rem;
    }
    #additionalInputs{
      display: flex;
      flex-direction: column;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    #msg_editing_for_css{
      width: 100%;
      margin-bottom: 10px;
    }
    textarea{
      border-radius: 12px;
    }
    #list-three-sec6{
      place-items: center;
    }
    #list-three-sec6 p{
      text-align: center;
    }
    #list-three-sec6 .button-wrapper-sec6{
      margin-top: 1rem;
    }
    .top-center-div-sec6-alert, .top-center-div-sec6-not-alert{
      padding: 0.4rem 0.1rem;
    }
  }






/*------------------------------------------Section 7-------------------------------------*/
#section7 {
  position: relative;
  display: flex;
  flex-direction: column;
  place-content: space-between;
  height: fit-content;
  width: 100%;
  overflow: hidden;
  padding: 8% 0% 0% 0%;
}

.sec7-div-up{
  width: 100%;
  height: 25%;
  display: flex;
  flex-direction: row;
  justify-content: space-between ;
  padding: 0% 10%;
}
.sec7-div-down{
  width: 100%;
  height: fit-content;
  padding: 5% 10% 0% 10%;
  display: flex;
  flex-direction: row;
}
.footer-sec7{
  width: 100%;
  height: 10%;
  justify-content: space-between;
  display: flex;
  place-items: center;
  flex-direction: row;
  padding: 0% 10%;
  align-items: end;
}

.div-up-left-div{
  width: 60%;
  height: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
}
.logo-div-footer{
    display: flex;
    width: fit-content;
    height: 50%;
    align-items: center;

}
.x7-description-logo-footer{
    align-items: center;
    display: flex;
    padding-left: 3%;
    width: 60%;
    height: 50%;
    overflow: hidden;
}
.logo-div-footer img{
  width: 5rem;
  height: auto;
  filter: invert(1) brightness(2);
}
.x7-description-logo-footer p{
    color: rgb(112, 114, 139);
}

.div-up-right-div{
  width: 40%;
  height: 50%;
  border-radius: 30px;
  place-items: center;
  text-align: center;
}

.div-down-list{
    display: flex;
    flex-direction: column;
    width: 25%;
    height: 100%;
    gap: 5%;
}
.div-up-right-div h3{
    height: 50%;
    width: 100%;
    color: rgb(112, 114, 139);
    font-weight: 600; 
}
.media-container-sec7{
  display: flex;
  flex-direction: row;
  margin: auto;
  width: 50%;
  height: 50%;
}
.media-container-sec7 img{
  margin: auto;
  width: auto;
  height: 60%; 
  mix-blend-mode: normal;
  transition: opacity 0.3s ease,mix-blend-mode 0.3s ease;
  opacity: 1;
  cursor: pointer;
}
.media-container-sec7 img:hover{
  mix-blend-mode: overlay;
  opacity: 0.8;
}
.div-down-lis h3{
  font-weight: 700;
  color: white;
  height: 20%;
}
.div-down-list ul{
    gap: 5%;
    list-style-type: none;
    height: fit-content;
    flex-direction: column;
    display: flex;
}
.div-down-list ul li{
  color: rgb(112,114,139);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.div-down-list ul li:hover{
  color: white;
  text-align: left;

}









   @media screen and (orientation: portrait) and (min-width: 1201px){
    #section7{
      padding: 0;
      place-content: space-between;
      gap: 3rem;
    }
    .sec7-div-up{
      flex-direction: column;
      height: 25%;
    }
    .logo-div-footer img{
      width: 8rem;
    }
    .x7-description-logo-footer p, .div-down-list ul li,.div-down-list ul li:hover{
      line-height: 1.8rem;
    }

    .sec7-div-down, .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
      gap: 3rem;
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-up-left-div{
      width: 100%;
      height: 70%;
    }
    .logo-div-footer{
      height:100%;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
      width: 100%;
      height: fit-content;
      background: #2e244942;
      padding: 1rem;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }
    
    .media-container-sec7{
      align-items: center;
      flex: 1;
      place-content: center;
      gap: 7%;
      height: 100%;
      width: 100%;
    }
    .media-container-sec7 img{
      height: 50%;
      padding: 0.1rem;
      place-content: space-between;
      display: flex;
      margin: 0;
      width: 2rem;
    }
    .div-down-list{
      gap: 1%;
    }

  }





   @media screen and (orientation: portrait) and (max-width: 1200px){
    #section7{
      padding: 0;
      place-content: space-between;
      gap: 3rem;
    }
    .sec7-div-up{
      flex-direction: column;
      height: 25%;
    }
    .logo-div-footer img{
      width: 7rem;
    }
    .x7-description-logo-footer p, .div-down-list ul li,.div-down-list ul li:hover{
      line-height: 1.8rem;
    }

    .sec7-div-down, .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
      gap: 3rem;
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-up-left-div{
      width: 100%;
      height: 70%;
    }
    .logo-div-footer{
      height:100%;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
      width: 100%;
      height: fit-content;
      background: #2e244942;
      padding: 1rem;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }
    .media-container-sec7{
      align-items: center;
      flex: 1;
      place-content: center;
      gap: 7%;
      height: 100%;
      width: 100%;
    }
    .media-container-sec7 img{
      height: 50%;
      padding: 0.1rem;
      place-content: space-between;
      display: flex;
      margin: 0;
      width: 2rem;
    }
    .div-down-list{
      gap: 1%;
    }

  }








   @media screen and (orientation: portrait) and (max-width: 992px){
    #section7{
      padding: 0;
      place-content: space-between;
    }
    .sec7-div-up{
      flex-direction: column;
      height: 25%;
    }
    .logo-div-footer img{
      width: 6rem;
    }
    .x7-description-logo-footer p, .div-down-list ul li,.div-down-list ul li:hover{
      line-height: 1.8rem;
    }

    .sec7-div-down, .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
    }
    .sec7-div-down{
      display: grid;
      grid-template-rows: auto;
      grid-template-columns: repeat(2,1fr);
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-up-left-div{
      width: 100%;
      height: 70%;
    }
    .logo-div-footer{
      height:100%;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
      width: 100%;
      height: 30%;
      background: #2e244942;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }
    .media-container-sec7{
      align-items: center;
        flex: 1;
        place-content: center;
        gap: 7%;
        height: 80%;
    }
    .media-container-sec7 img{
      height: 50%;
      padding: 0.1rem;
      place-content: space-between;
      display: flex;
      margin: 0;
      width: 1.8rem;
    }
    .div-down-list{
      gap: 1%;
      width: 100%;
    }

  }








   @media screen and (orientation: portrait) and (max-width: 768px){
    #section7{
      padding: 0;
      place-content: space-between;
    }
    .sec7-div-up{
      flex-direction: column;
      height: 25%;
    }
    .logo-div-footer img{
      width: 5rem;
    }
    .x7-description-logo-footer p, .div-down-list ul li,.div-down-list ul li:hover{
      line-height: 1.5rem;
    }
    .sec7-div-down, .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-up-left-div{
      width: 100%;
      height: 70%;
    }
    .logo-div-footer{
      height:100%;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
      width: 100%;
      height: 30%;
      background: #2e244942;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }
    .media-container-sec7{
      align-items: center;
        flex: 1;
        place-content: center;
        gap: 7%;
        height: 80%;
    }
    .media-container-sec7 img{
      height: 45%;
      padding: 0.1rem;
      place-content: space-between;
      display: flex;
      margin: 0;
      width: 1.6rem;
    }
    .div-down-list{
      gap: 1%;
    }
    
  }



   @media screen and (orientation: portrait) and (max-width: 600px){
    #section7{
      padding: 0;
      place-content: space-between;
    }
    .sec7-div-up{
      flex-direction: column;
      height: fit-content;
    }
    .logo-div-footer img{
      width: 5rem;
    }
    .x7-description-logo-footer p, .div-down-list ul li,.div-down-list ul li:hover{
      line-height: 1rem;
    }
    .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-up-left-div{
      width: 100%;
      height: 75%;
    }
    .logo-div-footer{
      height:auto;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
      width: 100%;
      height: 25%;
      background: #2e244942;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }
    .media-container-sec7{
      align-items: center;
        flex: 1;
        place-content: center;
        gap: 7%;
        height: 80%;
    }
    .media-container-sec7 img{
      height: 55%;
      padding: 0.1rem;
      place-content: space-between;
      display: flex;
      margin: 0;
    }
    .div-down-list{
      gap: 1%;
    }
      .sec7-div-down {
    padding-top: 5%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    place-content: center;
  }
    .div-down-list {
    gap: 0.6rem;
    width: 40%;
  }
  .media-container-sec7 img{
    width: 1.5rem;
  } 
  .div-down-list ul{
    gap:0.4rem;
  }

  }
  @media screen and (orientation:portrait) and (max-width: 400px){
    .logo-div-footer img{
      width: 4rem;
    }
      .sec7-div-down {
    padding-top: 5%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    place-content: center;
  }
    .div-down-list {
    gap: 0.6rem;
    width: 40%;
  }
  .media-container-sec7 img{
    width: 1.5rem;
  } 
  .div-down-list ul{
    gap:0.4rem;
  }
  
  }
















     @media screen and (orientation: landscape) and (min-width: 1201px){
    #section7{
      padding: 0;
      place-content: space-between;
      gap: 5rem;
    }
    .sec7-div-up{
      flex-direction: row;
      height: 20%;
      align-items: center;
      place-items: center;
    }
    .logo-div-footer img{
      width: 7rem;
    }
    .sec7-div-down{
      padding-top: 5%;
    }
    .x7-description-logo-footer p, .div-down-list ul li, .div-down-list ul li:hover{
      line-height: 1.8rem;
    }
     .div-down-list ul li, .div-down-list ul li:hover{
       line-height: 2rem;
     }
    .sec7-div-down, .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
    }
    .sec7-div-down{
      padding-top: 2.5%;
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-down-list ul{
      gap: 0%;
    }
    .div-up-left-div{
      width: 60%;
      height: 100%;
    }
    .logo-div-footer{
      height:100%;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
      flex-direction: column;
      width: 40%;
      height: 50%;
      background: transparent;
      gap: 1rem;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }
    .media-container-sec7{
      align-items: center;
        flex: 1;
        place-content: center;
        gap: 2rem;
        width: 100%;
        height: 80%;
    }
    .media-container-sec7 img{
      height: 2.5rem;
      padding: 0.6rem;
      place-content: space-between;
      display: flex;
      margin: 0;
      aspect-ratio: 1/1;
      width: 2.5rem;
    }
    .div-down-list{
      gap: 1rem;
    }

  }










   @media screen and (orientation: landscape) and (max-width: 1200px){
    #section7{
      padding: 0;
      place-content: space-between;
      gap: 3rem;
    }
    .sec7-div-up{
      flex-direction: row;
      align-items: center;
      height: fit-content;
      gap: 3rem;
    }
    .logo-div-footer img{
      width: 8rem;
    }
    .sec7-div-down{
      padding-top: 5%;
    }
    .x7-description-logo-footer p, .div-down-list ul li, .div-down-list ul li:hover{
      line-height: 2rem;
    }
 
    .sec7-div-down, .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
    }
    .sec7-div-down{
      padding-top: 2.5%;
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-down-list ul{
      gap: 0%;
    }
    .div-up-left-div{
      width: 50%;
      height: 70%;
    }
    .logo-div-footer{
      height:100%;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
    width: 50%;
    height: 30%;
    padding: 1.5%;
    background: #2e244942;
    gap: 1rem;
    flex-direction: column;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }
    .media-container-sec7{
      align-items: center;
        flex: 1;
        place-content: center;
        gap: 2rem;
        width: 100%;
        height: 80%;
    }
    .media-container-sec7 img{
      height: 2.5rem;
      padding: 0.6rem;
      place-content: space-between;
      display: flex;
      margin: 0;
      aspect-ratio: 1/1;
      width: 2.5rem;
    }
    .div-down-list{
      gap: 0.5rem;
    }

  }










   @media screen and (orientation: landscape) and (max-width: 992px){
    #section7{
      padding: 0;
      place-content: space-between;
      gap: 3rem;
    }
    .sec7-div-up{
      flex-direction: row;
      height: fit-content;
      align-items: center;
      gap: 3rem;
    }
    .logo-div-footer img{
      width: 7rem;
    }
    .sec7-div-down{
      padding-top: 5%;
    }
    .x7-description-logo-footer p, .div-down-list ul li, .div-down-list ul li:hover{
      line-height: 1.55rem;
    }
    
    .sec7-div-down, .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
    }
    .sec7-div-down{
      padding-top: 2.5%;
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-down-list ul{
      gap: 0%;
    }
    .div-up-left-div{
      width: 100%;
      height: 70%;
    }
    .logo-div-footer{
      height:100%;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
      width: 100%;
      height: 30%;
      background: #2e244942;
      gap: 0.7rem;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }


    .media-container-sec7{
      align-items: center;
        flex: 1;
        place-content: center;
        gap: 1rem;
        width: 100%;
        height: 80%;
    }
    .media-container-sec7 img{
      height: 2rem;
      padding: 0.35rem;
      place-content: space-between;
      display: flex;
      margin: 0;
      aspect-ratio: 1/1;
      width: 2rem;
    }

    .div-down-list{
      gap: 1rem;
    }

  }






   @media screen and (orientation: landscape) and (max-width: 768px){
    #section7{
      padding: 0;
      place-content: space-between;
      gap: 3rem;
    }
    .sec7-div-up{
      flex-direction: column;
      height: fit-content;
      gap: 3rem;
    }
    .logo-div-footer img{
      width: 5rem;
    }

    .x7-description-logo-footer p, .div-down-list ul li, .div-down-list ul li:hover{
      line-height: 1.4rem;
    }
    
    .sec7-div-down, .sec7-div-up, .footer-sec7{
      padding: 0% 5%;
    }
        .sec7-div-down{
      padding-top: 3%;
    }
    .footer-sec7{
      height: 10%;
      place-items: center;
    }
    .div-down-list ul{
      gap: 0%;
    }
    .div-up-left-div{
      width: 100%;
      height: 70%;
    }
    .logo-div-footer{
      height:100%;
    }
    .x7-description-logo-footer{
      flex: 1;
      height: 100%;
    }
    .div-down-list p, .div-down-list ul li{ /*list title padding from right*/
      padding: 0% 5% 0% 0%;
    }
    .div-up-right-div{
      display: flex;
      width: 60%;
      height: 30%;
      background: #a5a5a50d !important;
      gap: 0.5rem;
    }
    .div-up-right-div h3{
      height: 100%;
      place-content: center;
      flex: 1;
      text-align: center;
    }
    .media-container-sec7{
      align-items: center;
        flex: 1;
        place-content: center;
        gap: 5%;
        height: 80%;
    }
    .media-container-sec7 img{
      height: 70%;
      padding: 0.1rem;
      place-content: space-between;
      display: flex;
      margin: 0;
      width: 7%;
    }
    .div-down-list{
      gap: 1%;
    }

  }





































/* PORTRAIT - min-width: 1201px */
@media screen and (orientation: portrait) and (min-width: 1201px) {
  h1, #text-container { font-size: 2.2rem !important;}
  h2 { font-size: 1.7rem !important;}
  h3, nav a { font-size: 1.4rem !important;}
  p,textarea , .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea,  .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 1.3rem !important ; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 1.2rem !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 1.1rem !important;     font-weight: normal !important;}
  h6 { font-size: 0.85rem !important;     font-weight: normal !important;}
}

/* PORTRAIT - max-width: 1200px */
@media screen and (orientation: portrait) and (max-width: 1200px) {
  h1, #text-container { font-size: 2.2rem !important;}
  h2 { font-size: 1.7rem !important;}
  h3, nav a { font-size: 1.4rem !important;}
  p, textarea , .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea, .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 1.3rem !important; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 1.2rem !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 1.1rem !important;     font-weight: normal !important;}
  h6 { font-size: 0.85rem !important;     font-weight: normal !important;}
}

/* PORTRAIT - max-width: 992px */
@media screen and (orientation: portrait) and (max-width: 992px) {

  h1, #text-container { font-size: 2em !important;}
  h2 { font-size: 1.6em !important;}
  h3, nav a { font-size: 1.35em !important;}
  p, textarea, .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea,  .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 1.05em !important; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 0.95em !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 0.85em !important;     font-weight: normal !important;}
  h6 { font-size: 0.75em !important;     font-weight: normal !important;}
}

/* PORTRAIT - max-width: 768px */
@media screen and (orientation: portrait) and (max-width: 768px) {

  .menu-icon p{
    font-size: 1.7em !important;
  }
  h1, #text-container { font-size: 1.55em !important;}
  h2 { font-size: 1.35em !important;}
  h3, nav a { font-size: 1.1em !important; }
  p, textarea, .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea, .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 1em !important ; }
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 0.9em !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 0.75em !important;     font-weight: normal !important;}
  h6 { font-size: 0.7em !important;     font-weight: normal !important;}
}

/* PORTRAIT - max-width: 600px */
@media screen and (orientation: portrait) and (max-width: 600px) {
  .menu-icon p{
    font-size: 1.3em !important;
  }
  h1, #text-container { font-size: 1.35em !important;}
  h2 { font-size: 1.1em !important;}
  h3, nav a { font-size: 0.95em !important;}
  p, textarea, .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea, .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 0.85em  !important ; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 0.75em !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 0.65em !important; font-weight: normal !important;}
  h6 { font-size: 0.55em !important; font-weight: normal !important;}
}


/* PORTRAIT - max-width: 450px */
@media screen and (orientation: portrait) and (max-width: 450px) {
  .menu-icon p{
    font-size: 1.3em !important;
  }
  h1, #text-container { font-size: 1.15em !important;}
  h2 { font-size: 1em !important;}
  h3, nav a { font-size: 0.9em !important;}

  button {
    font-size: 1em  !important;
  }

  p, textarea, .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea, .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 0.8em   !important; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 0.7em !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 0.60em !important; font-weight: normal !important;}
  h6 { font-size: 0.55em !important; font-weight: normal !important;}
  
}








/* LANDSCAPE - min-width: 1201px */
@media screen and (orientation: landscape) and (min-width: 1201px) {
  h1, #text-container { font-size: 1.4em !important;}
  h2 { font-size: 1.1em !important;}
  h3, nav a { font-size: 0.9em !important;}
  p, textarea, .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea, .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 0.85em  !important; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 0.88em !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 0.72em !important;     font-weight: normal !important;}
  h6 { font-size: 0.6em !important;     font-weight: normal !important;}
}

/* LANDSCAPE - max-width: 1200px */
@media screen and (orientation: landscape) and (max-width: 1200px) {
  h1, #text-container { font-size: 1.2em !important;}
  h2 { font-size: 0.95em !important;}
  h3, nav a { font-size: 0.88em !important;}
  p, textarea, .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea, .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 0.83em  !important; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 0.78em !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 0.68em !important;     font-weight: normal !important;}
  h6 { font-size: 0.58em !important;     font-weight: normal !important;}
}

/* LANDSCAPE - max-width: 992px */
@media screen and (orientation: landscape) and (max-width: 992px) {
  h1, #text-container { font-size: 1.1em !important;}
  h2 { font-size: 0.92em !important;}
  h3, nav a { font-size: 0.85em !important; }
  p, textarea, .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea, .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 0.8em  !important; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li,  #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 0.7em !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 0.65em !important;     font-weight: normal !important;}
  h6 { font-size: 0.55em !important;     font-weight: normal !important;}
}

/* LANDSCAPE - max-width: 768px */
@media screen and (orientation: landscape) and (max-width: 768px) {
  h1, #text-container { font-size: 1em !important;}
  h2 { font-size: 0.88em !important;}
  h3, nav a { font-size: 0.8em !important;}
  p, textarea, .system, .message-row2, .message-row, #formMessage, #width, #height, .color-editable-btn, .color-editable-btn:empty:before, .menu-item span, .text-container-sec3 ul li, #close-sidebar, input[type="text"], input[type="email"], input[type="tel"], textarea, .div-down-list ul li, .div-down-list ul li:hover, input[type="text"]:focus,input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus  { font-size: 0.75em !important ; font-weight: normal !important;}
  h4, .message-row-system, .buttons-container-sec3 ul div li, #chechbox-error, .footer-sec7 h4, .expand-text { font-size: 0.7em !important;     font-weight: normal !important;}
  h5, #chat-header { font-size: 0.6em !important;     font-weight: normal !important;}
  h6 { font-size: 0.5em !important;     font-weight: normal !important;}
}






















.contact-button p, .buttons button, .btn-secondary, .btn-primary, .main-btn {
  font-family: Poppins ,sans-serif;
}



/*Responsive the Buttons*/
@media screen and (orientation: portrait) and (min-width: 1201px){
  .next-text-title-container-sec3 h1{
    line-height: 2.1rem;
    padding: 1rem 0rem;
  }
    .div-down-list ul{
    gap: 1.3rem;
    display: flex;
  }
  .section-row{
    gap: 1rem;
  }
  .column-container{
    width: 100%;
  }
  .centered-content-right{
    max-width: 600px;
  }
  .header-buttons button, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    width: fit-content;
  }
  .contact-button, .get-started-button, .buttons button, .main-btn, .btn-primary, .btn-secondary, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    padding: 0.7rem 1.3rem;
  }
  .menu{
    height: 6rem;
  }
  .submenu{
    width: 20rem;
  }
  .card-description-sec5 p{
    line-height: 1.7rem;
  }
  .text-container-sec3 h4{
    line-height: 1.5rem;
  }
  .text-container-sec3 ul li{
    line-height: 1.4rem;
  }
  .text-container-sec3 ul{
    margin: 5% 0% 5% 0%;
  }
    .pic-place-sec1{
    place-content: center !important;
  }
  .menu-item div {
    gap: 0.3rem;
  }
   #text-container{
    margin-bottom: 0.5rem;
   }
}


@media screen and (orientation: portrait) and (max-width: 1200px){
  .next-text-title-container-sec3 h1{
    line-height: 2.1rem;
    padding: 1rem 0rem;
  }
    .div-down-list ul{
    gap: 1.3rem;
    display: flex;
  }
  .section-row{
    gap: 1rem;
  }
  .column-container{
    width: 100%;
  }
  .centered-content-right{
    max-width: 600px;
  }
  .header-buttons button, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    width: fit-content;
  }
  .contact-button, .get-started-button, .buttons button, .main-btn, .btn-primary, .btn-secondary, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    padding: 0.7rem 1.3rem;
  }
  .menu{
    height: 6rem;
  }
  .card-description-sec5 p{
    line-height: 1.7rem;
  }
  .text-container-sec3 h4{
    line-height: 1.5rem;
  }
  .text-container-sec3 ul li{
    line-height: 1.4rem;
  }
  .text-container-sec3 ul{
    margin: 5% 0% 5% 0%;
  }
    .pic-place-sec1{
    place-content: center !important;
  }
  .menu-item div {
    gap: 0.3rem;
  }
   #text-container{
    margin-bottom: 0.5rem;
   }
}


@media screen and (orientation: portrait) and (max-width: 992px){
  .mobile-submenu.open {
  line-height: 1.3em;
}
  .div-down-list ul{
    gap: 1.3rem;
    display: flex;
  }
  .section-row{
    gap: 1rem;
  }
  .column-container{
    width: 100%;
  }
  .centered-content-right{
    max-width: 100%;
  }
  .header-buttons button, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    width: fit-content;
  }
  .contact-button, .get-started-button, .buttons button, .main-btn, .btn-primary, .btn-secondary, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    padding: 0.6rem 0.9rem;
  }
  .menu{
    height: 6rem;
  }
  .card-description-sec5 p{
    line-height: 1.7rem;
  }
  .text-container-sec3 h4{
    line-height: 1.5rem;
  }
  .text-container-sec3 ul li{
    line-height: 1.4rem;
  }
  .text-container-sec3 ul{
    margin: 5% 0% 5% 0%;
  }
    .pic-place-sec1{
    place-content: center !important;
  }
  .menu-item div {
    gap: 0.3rem;
  }
  .mobile-sidebar{
    right: -400px;
    width: 400px;
  }
   #text-container{
    margin-bottom: 0.5rem;
   }
}


@media screen and (orientation: portrait) and (max-width: 768px){
  .next-text-title-container-sec3 h1{
    line-height: 1rem;
  }
  .header-buttons button, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    width: fit-content;
  }
  .contact-button, .get-started-button , .buttons button, .main-btn, .btn-primary , .btn-secondary, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    padding: 0.55rem 0.85rem;
  }
  .menu{
    height: 6rem;
  }
    .mobile-sidebar{
    right: -350px;
    width: 350px;
  }
  #text-container{
    margin-bottom: 0.5rem;
 }
  .menu-item div {
    gap: 0rem;
  }
  .mobile-submenu.open {
    line-height: 1em;
  }
  .card-description-sec5 p{
    line-height: 1.4rem;
  }
  .text-container-sec3 h4{
    line-height: 1.3rem;
  }
   .text-container-sec3 ul li {
    line-height: 1.2rem;
  }
  #combinedRightDiv{
    place-items: center;
    display: flex;
  }
  .centered-content-right{
    height: 100%;
    display: flex;
    position: relative;
  }
}


@media screen and (orientation: portrait) and (max-width: 600px){
    .next-text-title-container-sec3 h1{
    line-height: 1rem;
  }
  .header-buttons button , #btn-sec2-see-more-second, .buttons-div-sec3 button{
    width: fit-content;
  }
  .contact-button, .get-started-button , .buttons button, .main-btn, .btn-primary , .btn-secondary, #btn-sec2-see-more-second , .buttons-div-sec3 button{
    padding: 0.5rem 0.8rem;
  }
  .menu{
    height: 5rem;
  }
    .mobile-sidebar{
    right: -300px;
    width: 300px;
  }
  #text-container{
    margin-bottom: 0.5rem;
 }
  .menu-item div {
    gap: 0rem;
  }
  .mobile-submenu.open {
    line-height: 1em;
  }
    .card-description-sec5 p{
    line-height: 1.4rem;
  }
  .text-container-sec3 h4{
    line-height: 1.3rem;
  }
   .text-container-sec3 ul li {
    line-height: 1.2rem;
  }
    #combinedRightDiv{
    place-items: center;
    display: flex;
  }
  .centered-content-right{
    height: 100%;
    display: flex;
    position: relative;
  }
}

@media screen and (orientation: portrait) and (max-width: 450px){
    .header-buttons button , #btn-sec2-see-more-second, .buttons-div-sec3 button{
    width: fit-content;
  }
  .contact-button, .get-started-button , .buttons button, .btn-primary , .main-btn, .btn-secondary, #btn-sec2-see-more-second , .buttons-div-sec3 button{
    padding: 0.5rem 0.8rem;
  }
  .menu{
    height: 5rem;
  }
    #combinedRightDiv{
    place-items: center;
    display: flex;
  }
  .centered-content-right{
    height: 100%;
    display: flex;
    position: relative;
  }
    .menu{
    height: 4rem;
  }
      .mobile-sidebar{
    right: -300px;
    width: 300px;
  }
      .next-text-title-container-sec3 h1 {
        line-height: 1.4rem;
        padding: 0.5rem 0rem;
    }
        .card-description-sec5 p {
        line-height: 1.1rem;
    }
    .card-content h3 {
        margin-bottom: 0.4rem;
    }
    .rect-sec3-two-div-covered{
      gap: 1rem;
    }
        .text-container-sec3 h4 {
        line-height: 0.95rem;
        margin-top: 0.3rem;
    }
        .text-container-sec3 ul li {
        line-height: 0.8rem;
    }
      .div-down-list ul {
        gap: 0.5rem;
        display: flex;
    }
    .div-up-right-div{
      border-radius: 15px;
    }
    
}
@media screen and (orientation: portrait) and (max-width: 380px){
  #combinedRightDiv{
    place-items: end;
    display: flex;
  }
  .centered-content-right{
    height: fit-content;
    display: flex;
    position: relative;
  }
      .menu{
    height: 3rem;
  }
        .mobile-sidebar{
    right: -300px;
    width: 300px;
  }
}














@media screen and (orientation: landscape) and (min-width: 1201px){
  .header-buttons button , #btn-sec2-see-more-second, .buttons-div-sec3 button{
    width: fit-content;
  }
  .contact-button, .get-started-button, .buttons button, .btn-primary , .main-btn, .btn-secondary, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    padding: 0.65rem 0.95rem;
  }
  .menu{
    height:4.5rem;
  }
  .bottom-bottom-inside {
    width: 60%;
    height: 4rem;
    padding: 0.5em 2.5em;
    gap: 1rem;
  }
}
@media screen and (orientation: landscape) and (max-width: 1200px){
  .menu{
    height: 4rem;
  }
  
  .contact-button, .get-started-button, .buttons button, .btn-primary , .main-btn, .btn-secondary, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    padding: 0.6rem 0.9rem;
  }
    .bottom-bottom-inside {
    width: 60%;
    height: 3.5rem;
    padding: 0.5em 2.5em;
    gap: 1rem;
  }
}
@media screen and (orientation: landscape) and (max-width: 992px){
  .contact-button, .get-started-button, .buttons button, .btn-primary , .main-btn, .btn-secondary, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    padding: 0.55rem 0.85rem;
  }
    .menu{
    height: 4rem;
  }
      .bottom-bottom-inside {
    width: 70%;
    height: 3rem;
    padding: 0.5em 2.5em;
    gap: 1rem;
  }
}
@media screen and (orientation: landscape) and (max-width: 768px){
  .contact-button, .get-started-button , .buttons button, .btn-primary , .main-btn, .btn-secondary, #btn-sec2-see-more-second, .buttons-div-sec3 button{
    padding: 0.4rem 0.7rem;
  }
      .menu{
    height: 3rem;
  }
        .bottom-bottom-inside {
    width: 70%;
    height: 3rem;
    padding: 0.5em 2.5em;
    gap: 1rem;
  }
}






















   .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #0d0d0d;
      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: #3000b5;
      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 #1c0049;
  border-top: 6px solid #3d00cc;
  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); }
}

































.not-allowed-yet{
  text-decoration: none;
  position: relative;
  cursor: not-allowed;
  display: flex;
  align-items: center;
}
.not-allowed-yet li{
  cursor: not-allowed !important;
  color: rgb(112,114,139) !important;
}

.not-allowed-yet:hover .not-allowed-link{
  display: flex;
  left: 0.5rem;
  background: #7e3ae9;
  opacity: 1;
}


.not-allowed-link{
  --s: 20px; 
  clip-path: polygon( var(--s) 0, 100% 0, 100% 100%, var(--s) 100%, 0 50% );
  position: absolute;
  width: fit-content;
  height: 2rem;
  background: transparent;
  z-index: 10;
  text-align: center;
  place-content: center;
  align-items: center;
  display: flex ;
  opacity: 0;
  padding: 0.5rem 1rem;
  left: 0rem;
  transition: opacity 0.3s ease, background 0.3s ease, left 0.3s ease-in-out;
  border-radius: 10px;
}
.not-allowed-link img{
  width: 1rem;
  height: 1rem;
  background: transparent;
  display: flex;
  filter: invert(1) brightness(100%) saturate(0%);
}

.not-allowed-link h5{
  width: fit-content;
  display: flex;
  position: relative;
  height: fit-content;
  align-items: center;
  place-content: center;
  gap: 0.3rem;
}







@media screen and (orientation: portrait) and (max-width: 450px){
  .not-allowed-link{
    width: fit-content;
    height: 1.3rem;
    padding: 0.8rem 0.5rem;
  }
}
















.media-container-sec7 a{
  cursor: pointer !important;
  transition: background 0.3s ease, color 0.3s ease, scale 0.3s ease;
  background: transparent !important;
  scale: 1 !important;
  border-radius: 10px;
}
.media-container-sec7 a:hover{
  background: rgb(98 94 213) !important;
  scale: 1.05 !important;
}

.media-container-sec7 a:hover img{
  animation: left-right-icon 1s forwards linear;
  transform: translateX(0);
}

@keyframes left-right-icon{
  0%{ transform: translateX(0rem);}
  15%{transform: translateX(-0.2rem);}
  25%{transform: translateX(0rem);}
  30%{transform: translateX(0.2rem);}
  35%{transform: translateX(0rem);}
  100%{transform: translateX(0rem);}
}












.chatbox-container{
  position: fixed;
  width: fit-content;
  height: auto;
  z-index: 9999;
  bottom: 0.5rem;
  left: 0.5rem;
  border: 2px solid #0000;
  box-shadow: 0px 10px 15px 1px #00000082;
  display: flex;
  flex-direction: column;
  transition: padding 0.3s ease, width 0.3s ease, height 0.3s ease, left 0.3s ease, bottom 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

#user-form{
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  background: transparent;
  border-radius: 10px;
  transition: background 0.3s ease, width 0.3s ease, height 0.3s ease, padding 0.3s ease;
}

.title-in-cb{
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: start;
  place-content: space-between;
  gap: 1rem;
}
.title-in-cb button{
  cursor: pointer;
  display: flex;
  place-content: start;
  background: none;
  opacity: 1;
  border: none;
  align-items: start;
  padding: 0.5rem 0.5rem 0.5rem 0rem;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.title-in-cb button:hover{
  opacity: 0.4;
}
.title-in-cb img{
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  display: flex;
  position: relative;
  filter: brightness(0) saturate(100%) invert(100%);
}

#user-form:hover .support-icon-container img{
  animation: left-right-icon 1s forwards linear;
}
.support-icon-container{
  width: 3.5rem;
  height: 3.5rem;
  aspect-ratio: 1/1;
  background: #0b0913;
  display: flex;
  align-items: center;
  border-radius: 10px;
  place-content: center;
  padding: 0.5rem;
  transition: background 0.3s ease;
}
.inputs-chatbox-container{
  display: flex;
  flex-direction: column !important;
  gap: 0.8rem !important;
  width: 17rem !important;
}
.support-icon-container:hover{
  background: #201c36;
}
.support-icon-container img{
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.chat-back{
background: #0b0913c9;
  transition: padding 0.3s ease;
  width: fit-content;
  height: fit-content;
  border-radius: 10px;
  transition: width 0.3s ease, height 0.3s ease;
  backdrop-filter: blur(20px);
}







.button-wrapper-sec6 {
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-contactus-on-index-bottom {
  width: 9.5rem;
  height: 2.5rem;
  display: inline-flex;
  font-family: 'poppins', sans-serif;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #3a3a3a;
  text-shadow: 1px 1px 1px white;
  background: rgb(224, 224, 224);
  border: none;
  border-radius: 1000px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  }

.button-contactus-on-index-bottom::before {
content: '';
  border-radius: 1000px;
  width: calc(11rem + 4px);
  height: calc(2.5rem + 4px);

  background: linear-gradient(
    var(--angle2, 0deg),
    transparent 20%,
    rgba(255, 255, 255, 0.99) 50%,
    transparent 80%
  );
  
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.555);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s, background 0s , opacity 0.2s ease-out;
}



.button-contactus-on-index-bottom:hover, 
.button-contactus-on-index-bottom:focus {
  color: #5a5a5a;
  text-shadow: 1px 1px 1px white;
  width: 11rem;
}

.button-contactus-on-index-bottom:hover::before, 
.button-contactus-on-index-bottom:focus::before {
  opacity: 1;
}















#user-name, #user-email{
  border: none;
  border-radius: 10px;
  height: 2.5rem;
  padding: 0.5rem;
  outline: none;
  font-family: 'poppins';
}

#start-chat{
  border: none;
  border-radius: 10px;
  height: 2.5rem;
  background: #1a1824;
  color: white;
  cursor: pointer;
  font-family: 'poppins';
  transition: background 0.3s ease;
}
#start-chat:hover{
  background: #3c384e;
}
#user-form p{
  font-family: 'poppins';
  color: white;
  font-weight: 400;
}
.button-title-cb-container{
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: white;
}

.header-containers-container{
  position: relative;
  background: #7d39e9;
  width: 100%;
  height: 3rem;
  z-index: 5;
  display: flex;
}

#chat-header{
  width: 100%;
  display: flex;
  height: fit-content;
  flex-wrap: wrap;
  background: transparent;
  color: white;
  text-align: center;
  place-content: center;
}
.button-title-cb-container button{
  top: 0;
  left: 0.5rem;
  position: absolute;
}
.button-title-cb-container h3{
  display: flex;
  place-content: center;
  text-align: center;
  width: 100%;
  align-items: center;
  top: 0;
  position: absolute;
  left: 0;
  margin-top: 0.5rem;
}
.live-chat-box{
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: orange;
  position: absolute;
 
}

#user-form{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.header-message-container{
  width: 100%;
  height: 100%;
}

#chat-box {
  width: 360px; height: 500px;
  display: flex; flex-direction: column;
  place-content: space-between;
}
#messages {
  flex: 1; overflow-y: auto; padding: 10px;
}
.message { margin: 5px 0; }








.bubble-wrapper{
  width: fit-content;
  max-width: 80%;
  background: #a973ff;
  padding: 0.3rem 1rem;
  border-radius: .4em;
  position: relative;
  left: 0.5rem;
  color: white;
  overflow-wrap: break-word;
}
.bubble-wrapper::after{
content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
    border-right-color: transparent;
    border-left-width: 5px;
    border-left-style: solid;
    border-left-color: transparent;
  border-right-color: #a973ff;
  border-left: 0;
  margin-top: -5px;
  margin-left: -5px;
}

.message-row{
  display: flex;
  align-items: center;
  place-content: start;
  z-index: 2;
}
.message-row2{
  display: flex;
  align-items: center;
  place-content: end;
  z-index: 2;
}
#chat-messages{
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  gap: 1rem;
  max-height: 400px;
  position: relative;
}


#new-chat-btn{
  background: white;
  border: none;
  border-radius: 10px;
  padding: 0.5rem;
  width: 50%;
  display: flex;
  place-self: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
#new-chat-btn:hover{
  background: rgb(201, 201, 201);
}

.bubble-wrapper2{
  width: fit-content;
  max-width: 80%;
  background: black;
  padding: 0.3rem 1rem;
  border-radius: .4em;
  position: relative;
  right: 0.5rem;
  place-self: end;
  color: white;
}
.bubble-wrapper2::after{
  content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left-color: black;
	border-right: 0;
	margin-top: -5px;
	margin-right: -5px;
}


.system { background: #ffeb99; padding: 5px; border-radius: 5px; }
#chat-form { 
  display: flex;
  outline: none;
  background: white;
  position: relative;
}

#chat-input {
  outline: none;
  width: 70%;
  height: 100%;
  padding: 1rem 0rem 1rem 1rem;
  font-family: 'poppins';
  border: none;
  margin-right: 6%;
}
.for-15-send{
  width: 12%;
  height: 100%;
  display: flex;
  place-content: start;
  align-items: center;
}
#chat-input:focus{
  outline: none;
}
#chat-form button{
  position: relative;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: white;
  cursor: pointer;
}

#chat-form button img{
  width: 1.3rem;
  height: 1.3rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#chat-form button:hover img{
  opacity: 0.5;
}

.leave-btn{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  place-content: center;
  cursor: pointer;
  position: relative;
  top: 0;
  right: 0;
  flex: 1;
  padding: 0rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.file-btn{
width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  place-content: center;
  cursor: pointer;
  position: relative;
  top: 0;
  right: 0;
  flex: 1;
  padding: 0rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.file-btn:hover{
  opacity: 0.5;
}
.goback-icon-headertext-container{
  width: 50%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  place-content: center;
  position: relative;
  flex: 4;
}
.button-goback-on-mainchat-container{
height: 100%;
  position: relative;
  background: transparent;
  display: flex;
  top: 0;
  left: 0;
  flex: 1;
  padding: 0.2rem;
}

.button-goback-on-mainchat-container button{
width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  place-content: center;
  cursor: pointer;
  position: relative;
  top: 0;
  right: 0;
  flex: 1;
  background: transparent;
  border: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.button-goback-on-mainchat-container button:hover{
  opacity: 0.5;
}

.button-goback-on-mainchat-container button img{
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  opacity: 1;
  transition: opacity 0.3s ease;
  filter: brightness(0) saturate(100%) invert(100%);
  padding: 0.5rem;
}

.header-containers-container img{
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding: 0.6rem;
}
.header-containers-container img:hover{
  opacity: 0.5;
}

.leave-btn img{
  filter: brightness(0) invert(1);
}



































/* Message groups */
.message-group {
  display: flex;
  align-items: flex-start;
  margin: 0.3rem 0;
}

.message-group.user {
  justify-content: flex-start;
}
.message-group.support {
  justify-content: flex-end;
}

/* Circles */
.circle-wrapper {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-image: url('/images/user-profile.png');
  background-position: center;
  background-size: 120%;
  background-repeat: no-repeat;
}
.circle-wrapper2{
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-image: url('/images/x7supporter-profile-img.png');
  background-color: black;
  background-position: center;
  background-size: 80%;
  background-repeat: no-repeat;
}
/* Message stack inside groups */
.message-stack {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 80%;
}




















@media screen and (orientation: landscape) and (max-width: 600px){
  .menu-icon{
    display: flex !important;
  }
  .dsk-buttons{
    display: none !important;
  }
  .nav-container{
    display: none !important;
  }
}


































.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(98 94 213);
}

.web-btn-port:hover, .graph-btn-port:hover, .vid-btn-port:hover, .app-btn-port:hover{
  background: rgb(71, 68, 165);
}
























.progress-container {
  width: 100%;
  background: #ddd;
  border-radius: 4px;
  margin: 5px 0;
}

.chat-message.user {
  position: relative;
  margin-bottom: 10px;
  max-width: 200px;
}

.chat-image {
  width: 70%;
  border-radius: 8px;
}

#upload-progress{
  display: flex;
  position: relative;
  top: 0rem;
  width: fit-content;
  align-items: center;
  z-index: 3;
  place-self: center;
  padding: 0.5rem 2rem;
  gap: 0.5rem;
  border-radius: 0px 0px 15px 15px;
  color: white;
  font-family: 'poppins';
  font-weight: 400;
  background: #7d39e9;
  transition: padding 0.3s ease, width 0.3s ease, height 0.3s ease, gap 0.3s ease, top 0.3s ease;
  place-content: center;
}


.upload-progress-container{
  width: 100%;
  height: fit-content;
  display: flex;
  place-content: center;
}












#portfolio-links{
    opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease;
  overflow: hidden; /* important for height animation */
  display: grid;    /* keep display for layout */
  height: 0;        /* start hidden */
}
#portfolio-links.show {
  opacity: 1;
  transform: translateY(0);
  height: auto; /* expand to full content */
}






























:root {
      --web: #7650ff;
      --graphic: #4ac0ff;
      --video: #ff2e2e;
    }

    /* Overlay container */
    #portfolioContainer {
      position: fixed;
      inset: 0;                     /* top:0; right:0; bottom:0; left:0; */
      display: none;                /* toggled on open */
      background: rgba(0,0,0,0.75);
      z-index: 2000;
      overflow-y: auto;
      opacity: 0;
      transition: opacity 0.45s ease;
      scroll-snap-type: y mandatory;
      padding: 20px 0 140px;        /* extra bottom space so last card has breathing room */
      -webkit-overflow-scrolling: touch;
      overflow-x: hidden;
    }

    /* Close button */
    #closePortfolio {
      position: fixed;
      top: 1rem;
      right: 2rem;
      font-size: 3rem !important;
      font-family: none;
      font-weight: 500;
      z-index: 2100;
      color: #fff;
      border: none;
      cursor: pointer;
      background: black;
      padding: 0.5rem;
      border-radius: 100px;
      height: 3rem;
      display: flex;
      align-items: center;
    }
.banner.initial-hidden {
    opacity: 0;
    /* Reset other transforms to avoid conflict with the transition */
    transform: none !important; 
}

/* Specific off-screen positions for each banner type */
.banner.web.initial-hidden {
    transform: translateX(-100vw) !important; /* Start far left */
}

.banner.graphic.initial-hidden {
    transform: translateX(100vw) !important; /* Start far right */
}

.banner.video.initial-hidden {
    transform: translateX(-100vw) !important; /* Start far left */
}

    /* Banners (cards) */
    .banner {
      width: 72%;
      max-width: 820px;
      line-height: 1;
      height: 300px;
      margin: 80px auto;            /* spacing between stacked cards */
      border-radius: 12px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      justify-content: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      scroll-snap-align: center;
      transform-origin: center center;
      transition: transform 700ms cubic-bezier(.2,.9,.24,1), 
                opacity 700ms ease, 
                filter 350ms ease; /* Keep filter transition shorter for the 'behind' state */
    will-change: transform, opacity;
      backface-visibility: hidden;


    }

    .web{ 
      background: black; 
      overflow: hidden;
      border: 1px solid #7d39e982;
    }
    .after-web-container-all-each-bnr{
      z-index: 2;
      width: 100%;
      height: 100%;
      display: flex;
      background-image: url(/images/pattern-bnr1-port-web.png);
      background-repeat: repeat;
      background-position: center;
      background-size: 80%;
      background-color: transparent;
      overflow: hidden;

      /*
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 80%, transparent);
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-image: linear-gradient(to right, transparent, black 8%, black 80%, transparent);
      mask-repeat: no-repeat;
      mask-size: 100% 100%;
      */
    }
    .graphic{ background: black; overflow: hidden;
    border: 1px solid #4ac0ff82; }
    .video  { background: black; overflow: hidden;
    border: 1px solid #ff4a4a82; }

    /* state when a card goes behind */
    .banner.behind {
      transform: scale(0.90) rotateX(-14deg);
      opacity: 1;
    }

    /* See more button - bottom center */
    .see-more {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      padding: 8px 18px;
      background: transparent;
      color: #fff;
      border-radius: 8px;
      cursor: pointer;
      font-size: 15px;
      border: 1px solid currentColor;
      transition: background 220ms ease, color 220ms ease, transform 160ms ease;
    }
    .see-more:active { transform: translateX(-50%) scale(.98); }

    .see-more.web-btn     { color: var(--web); border-color: var(--web); }
    .see-more.graphic-btn { color: var(--graphic); border-color: #2890c7; }
    .see-more.video-btn   { color: var(--video); border-color: var(--video); }

    .see-more.web-btn:hover     { background: var(--web); color: #fff; }
    .see-more.graphic-btn:hover { background: #2890c7; color: #fff; }
    .see-more.video-btn:hover   { background: var(--video); color: #fff; }






.text-and-svg-flex{
  display: flex;
  flex-direction: row;
  place-content: center;
  width: 100%;
  position: relative;
  gap: 2rem;
  background: linear-gradient(150deg, transparent 50%, #7d39e9 130%);
  align-items: center;
}


#iconSVG{
  width: 200px;
  height: 200px;
}
.h1-h5-container-bnr-port h1{
  width: fit-content;
}
.h1-h5-container-bnr-port h5{
  width: fit-content;
}
.h1-h5-container-bnr-port{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 400;
}

.abs-square-move{
  width: 20%;
  height: 100%;
  position: absolute;
  background: rgb(119, 0, 255);
  overflow: hidden;
  inset: 0;
  z-index: 1;
  left: -20%;
  animation: moveAcross 4s linear infinite;
}

@keyframes moveAcross {
  0%   { left: -20%;}
  70% { left: 120%;}
  71% {left:121%;}
  100%{
    left: 121%;
  }
}





.abs-square-move-gr{
  width: 20%;
  height: 100%;
  position: absolute;
  background: #4ac0ff;
  overflow: hidden;
  inset: 0;
  z-index: 1;
  left: -20%;
  animation: moveAcross 4s linear infinite;
}
.text-and-svg-flex-gr{
  display: flex;
  flex-direction: row;
  place-content: center;
  width: 100%;
  position: relative;
  gap: 2rem;
  background: linear-gradient(150deg, transparent 50%, #4ac0ff 130%);
  align-items: center;
}



















.abs-square-move-vid{
  width: 20%;
  height: 100%;
  position: absolute;
  background: #ff4a4a;
  overflow: hidden;
  inset: 0;
  z-index: 1;
  left: -20%;
  animation: moveAcross 4s linear infinite;
}
.text-and-svg-flex-vid{
  display: flex;
  flex-direction: row;
  place-content: center;
  width: 100%;
  position: relative;
  gap: 2rem;
  background: linear-gradient(150deg, transparent 50%, #ff2e2e 130%);
  align-items: center;
}




@media screen and (orientation: portrait) and (max-width: 992px){
  #iconSVG{
    width: 100px;
  }
  .banner{
    font-size: 1.1rem;
  }
  .h1-h5-container-bnr-port{
    gap: 0.5rem;
  }
  #portfolioContainer{
    padding: 20px 0 70px;
  }
}

@media screen and (orientation: portrait) and (max-width: 450px){
  .banner{
    height: 150px;
    margin: 50px auto;
    font-size: 0.8rem;
    font-weight: 400;
  }
  .banner h1{
    font-weight: 400;
  }
  #iconSVG {
    width: 50px;
  }
  .see-more{
    padding: 5px 12px;
    bottom: 8px;
  }
  .h1-h5-container-bnr-port {
    gap: 0.2rem;
  }
}

















@media screen and (orientation: landscape) and (max-width: 992px){
  #iconSVG{
    width: 140px;
  }
  .banner{
    font-size: 1.2rem;
  }
  .h1-h5-container-bnr-port{
    gap: 0.5rem;
  } 
}














.get-started-container-rect{
  width: 100%;
  height: 100vh;
  display: none;
  background: rgba(0, 0, 0, 0.76);
  z-index: 205;
  position: fixed;
}
.black-rect{
  width: 80%;
  height: 80%;
  background: black;
  border-radius: 15px;
  display: flex;
  place-self: center;
  align-self: center;
  left: 10%;
  position: relative;
  padding: 3rem;
  flex-direction: row;
  gap: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.close-gs-rect{
  position: absolute;
  top: 0rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  line-height: 0;
  padding: 0.5rem;
  filter: blur(0px);
  transition: filter 0.3s ease, fill 0.3s ease;
  z-index: 44;
  overflow: visible;
  cursor: pointer;
}
.cls-1, .cls-2, .cls-3{
  transition: filter 0.3s ease, fill 0.3s ease;
}
.close-gs-rect:hover .cls-1{
  filter: drop-shadow(0 0 90px #f9e82f);
  fill: #fff153;
}
.close-gs-rect:hover .cls-2{
  filter: drop-shadow(0 0 90px #f92f2f);
  fill: #fc5a5a;
}
.close-gs-rect:hover .cls-3{
  filter: drop-shadow(0 0 90px #38f92f);
  fill: #6aff62;
}
.close-gs-rect svg{
  width: 100%;
  height: 100%;
  overflow: visible;
}
.shine-in-gs-rect-left-bottom{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: transparent;
  overflow: hidden;
}
.bottom-left-gs-rect-shine-purple{
  width: 20rem;
  height: 20rem;
  background: #4d0fda;
  filter: blur(60px);
  bottom: -20%;
  left: -20%;
  display: flex;
  position: absolute;
  border-radius: 50%;
}
.bottom-center-gs-rect-shine-purple{
  width: 37rem;
  height: 3rem;
  background: #4d0fda;
  filter: blur(60px);
  bottom: 0%;
  left: -10%;
  display: flex;
  position: absolute;
  border-radius: 50%;
}
.top-right-gs-rect-shine-light-purple{
  width: 10rem;
  height: 10rem;
  background: #4f0985;
  filter: blur(60px);
  top: -7%;
  right: -7%;
  display: flex;
  position: absolute;
  border-radius: 50%;
  z-index: 24;
}
.top-right-gs-rect-shine-light-purple2{
  width: 20rem;
  height: 3rem;
  background: #4f0985;
  filter: blur(80px);
  top: -7%;
  right: -3%;
  display: flex;
  position: absolute;
  border-radius: 50%;
  z-index: 24;
}
.top-right-gs-rect-shine-light-purple3{
  width: 3rem;
  height: 20rem;
  background: #4f0985;
  filter: blur(80px);
  top: -5%;
  right: -3%;
  display: flex;
  position: absolute;
  border-radius: 50%;
  z-index: 24;
}


.left-side-of-black-rect{
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  place-content: space-between;
  position: relative;
}
.left-side-of-black-rect h2{
  font-family: 'poppins';
  color: white;
  font-weight: 400;
  margin-bottom: 2rem;
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.button-container-gs-rect {
  width: 17rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  --gradient-angle: 0deg; /* Initial state */
  /* Remove the transition on the variable, it won't work */
  transition: transform 0.35s ease-in-out; 
  
  /* Apply the animation */
  animation: rotate-gradient 8s linear infinite; /* 8s total for your 8 steps */
  
  background: linear-gradient( 
    var(--gradient-angle), 
    transparent 0%, 
    rgba(255, 255, 255, 0.678) 30%, 
    transparent 40%, 
    transparent 80%, 
    rgba(255, 255, 255, 0.671) 100% 
  );
  padding: 1px;
  border-radius: 50px;
  overflow: hidden;
}

/* Define the keyframes for continuous rotation */
@keyframes rotate-gradient {
  /* 0% and 100% define the total rotation. */
  /* We use the custom property to be able to pause/control it later if needed */
  0% { --gradient-angle: 0deg; }
  100% { --gradient-angle: 360deg; }
}
.continue-gs-form-btn{
  width: 17rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 50px;
  background: white;
  border: none;
  cursor: pointer;
  color: #4f0985;
  z-index: 33;
  transition: color 0.3s ease, background 0.3s ease;
}
.continue-gs-form-btn span{
  font-weight: 600 !important;
  font-family: 'poppins' !important;
  display: flex;
  align-items: center;
  place-content: center;
  line-height: 1;
}
.continue-gs-form-btn:hover{
  background: rgba(255, 255, 255, 0.549);
  color: #2c0549;
}


.shine-in-border-gs-rect-btn{
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  border-radius: 50px;
  overflow: hidden;
  
}
.shine-in-border-gs-rect-btn button{
  width: 100%;
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: 1rem;
  background:black;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  position: relative;
  align-items: center;
  text-align: left;
  padding-left: 1rem;
}
.shine-in-border-gs-rect-btn button p{
  font-family: 'poppins';
  font-weight:350;
  color: white;
}
.shine-in-border-gs-rect-btn button div{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #c7c7c7;
  background: black;
  scale: 1;
  transition: background 0.3s ease;
}
.button-container-gs-rect:hover .shine-in-border-gs-rect-btn button div{
  background: #c7c7c7 ;
  animation: scale-circle-btn-gs-anime 0.35s linear;
}
@keyframes scale-circle-btn-gs-anime{
  0%{
    scale: 1;
  }
  50%{
    scale: 0.7;
  }
  100%{
    scale: 1;
  }
}





.right-side-of-black-rect{
  width: 40%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(-10deg, transparent 15%, #ffffff61 61%, transparent 100%);
  padding: 1px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 45;
  position: relative;
  display: flex;
  place-content: center;
  align-items: center;
}



.after-padding-right-black-rect{
  width: 100%;
  height: 100%;
  display: flex;
  background: black;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.absolute-smoke-bottom-right-black-rect{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}
.absolute-smoke-bottom-right-black-rect div{
  width: 100%;
  height: 5rem;
  filter: blur(50px);
  background: gray;
  bottom: -17%;
  left: 0;
  position: absolute;
  display: flex;
  border-radius: 50%;
}





.slide.active-slide {
    /* Show state */
    opacity: 1;
    place-self: center;
    align-self: center;
    display: flex;
    position: relative;
    pointer-events: auto; /* Make the active slide clickable */
}
/* The slides container should size to its content */
#slides-container {
  position: relative;
    overflow: visible; /* IMPORTANT: Keeps slides from stacking visually outside the box */
    /* ... keep other styles like max-width, max-height, etc. ... */
    
    /* Ensure the container has a defined size to prevent jumping */
    width: 100%; /* Example size, adjust as needed based on parent container */
    
    /* Center the slides within the container */
    display: flex;
    align-items: center;
    justify-content: center;
}
        
        /* Reflection Styling */
.image-reflection {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 20%;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 1) 100%);
  opacity: 0.2;
}
.image-reflection img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0rem 0rem 0.75rem 0.75rem;
  width: 100%;
  object-position: bottom;
}
#slideshow-wrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 90%;
  max-height: 90%;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides-container {
    position: relative;
    overflow: hidden; 
    
    /* ADD OR CONFIRM THESE STYLES: 
       This ensures the container sizes itself to hold the maximum size for the image/reflection.
       Without this, the absolute slides have no fixed size to be contained within. 
    */
    width: 100%; 
    height: 100%;
    
    /* Center the contents (though the slides are absolute now, this helps the buttons) */
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide {
    position: absolute; 
    width: 100%;
    height: fit-content;
    opacity: 0; 
    transition: opacity 0.5s ease-in-out; 
    pointer-events: none; 
    

    place-self: center;
    align-self: center;


    /* Ensure content is centered inside the absolute slide */
    display: flex; 
    place-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slide img {
    /* max-w-full max-h-full h-auto object-contain rounded-xl */
    max-width: 100%;
    max-height: 100%;
    height: auto; 
    border-radius: 0.75rem; /* rounded-xl */
    width: auto;
}

/* Reflection Styling (Kept as is, as it was already pure CSS) */
.image-reflection {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20%;
    transform: scaleY(-1);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.2;
}
.image-reflection img {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0rem 0rem 0.75rem 0.75rem;
    width: 100%;
    object-position: bottom;
}


.slideshow-btn {
    /* p-3 mx-2 md:p-4 text-xl bg-gray-700 text-white rounded-full shadow-lg hover:bg-gray-600 transition duration-300 transform hover:scale-105 focus:outline-none */
    padding: 0.75rem; /* p-3 */
    margin-left: 0.5rem; /* mx-2 */
    margin-right: 0.5rem; /* mx-2 */
    font-size: 1.25rem; /* text-xl */
    
    /* Overrides from your custom CSS removed to re-enable correct styles */
    color: white; /* Default text color for buttons */
    background-color: transparent; /* A darker gray, similar to gray-700 */
    
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    transition: all 0.3s ease; /* transition duration-300 */
    transform: scale(1); /* Initial transform */
    border: none;
    cursor: pointer;
    outline: none; /* focus:outline-none */
}






.slideshow-btn:hover {
    background-color: transparent; /* A lighter gray, similar to hover:bg-gray-600 */
    color: rgb(151, 151, 151) !important;
}

/* Restore the intended styles from your custom overrides (if you still want them) */
.text-white{
  color: rgb(0, 0, 0) !important;
}
.bg-gray-700{
  background-color: rgb(253, 251, 255) !important;
}
.bg-gray-700:hover{
  background-color: rgba(253, 251, 255, 0.671) !important;
}

/* Applying your custom styles to the new classes */
.slideshow-btn {
    color: white !important; /* text-white override */
    background-color: rgba(255, 255, 255, 0) !important; /* bg-gray-700 override */
}






.h2-buttons-gs-container{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}



.button-container-gs-rect.selected {
  transition: transform 0.3s ease;
  transform: scale(1.05);       /* slightly bigger */
  background: linear-gradient(
        var(--gradient-angle), 
        transparent 0%, 
        #7500d4ad 30%, 
        transparent 40%, 
        transparent 80%, 
        #9e28ffad 100%
    );
}













.stage.hidden { display: none; }
.stage.active { display: flex; flex-direction: column; gap: 1rem; z-index: 45;position: relative;}
#stage-2 input, #stage-2 textarea {
  width: 70%;
  padding: 0.75rem;
  margin-bottom: 0rem;
  border-radius: 10px;
  border: none;
  background: #ddd;
  border: none;
  color: black !important;
  font-weight: 400;
  font-family: 'poppins';
}

#stage-2 textarea {
  height: 120px;
  resize: none;
}
.budget-wrapper {
  position: relative;
  display: inline-block;
  align-items: center;
}
.budget-wrapper span {
  position: absolute;
  top: 47%;
  left: 0.75rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: #000;
}
.budget-wrapper input {
  padding-left: 25px; /* space for $ */
}
.go-back-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}
.stage input{
  outline: none;
  border: none;
}























.button-container-gs-rect .shine-in-border-gs-rect-btn.active button div {
  background: #c7c7c7;
  animation: scale-circle-btn-gs-anime 0.35s linear;
}

.button-container-gs-rect .shine-in-border-gs-rect-btn.active button {
  /* optional: slightly scale or glow for active state */
  transition: scale 0.35s ease-in-out;
}



.shine-in-border-gs-rect-btn.active button div{
  background: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
}


.text-white{
  color: rgb(0, 0, 0) !important;
}
.bg-gray-700{
  background-color: rgb(253, 251, 255) !important;
}
.bg-gray-700:hover{
  background-color: rgba(253, 251, 255, 0.671) !important;
}
input::placeholder, textarea::placeholder{
  color: #444 !important;
}
#budget{
  padding-left: 1.5rem !important;
}
.shadow-2xl{
  box-shadow: none !important;
}

#details{
  outline: none;
  border: none;
}

#stage-3 h2{
  margin-bottom: 0rem !important;
}

#stage-3 button{
  place-self: center;
}


/* Common fade effect */
.fade {
  opacity: 0 !important;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.visible {
  opacity: 1 !important;
  pointer-events: auto;
}

#stage-image{
  position: absolute;
  max-width: 90%;
  max-height: 90%;
}
.go-back-btn{
  color:white;
  transition: color 0.3s ease;
}
.go-back-btn:hover{
  color: rgba(255, 255, 255, 0.61);
}

#left-side.stage3-mode{
  place-content: center;
  align-items: center;
  display: flex;
}




#close-sidebar{
  font-size: 1.5rem !important;
}
.go-back-btn img{
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(1);
  
}
.go-back-btn{
  transition: opacity 0.3s ease;
  opacity: 1;
}
.go-back-btn:hover{
  opacity: 0.4;
}
#right-side.stage3-mode3{
  dotlottie-wc{
    scale: 1.5;
  }
}
.portfolio-links{
    overflow: visible !important;
}



.left-right-portrait-container{
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  gap: 3rem;
  padding: 0rem 2rem;
  transition: gap 0.3s ease;
}

.black-rect.portrait-layout {
    padding: 3rem 0rem !important;
}















@media screen and (orientation: portrait) and (min-width: 601px){
  .black-rect{
    flex-direction: column-reverse;
    place-content: space-evenly;
    padding: 3rem;
    max-width: 480px;
    max-height: 1000px !important;
    left: 0;
  }
  .get-started-container-rect{
    place-content: center;
  }
  .left-side-of-black-rect{
    height: fit-content;
  }
  #right-side{
    transition: min-height 0.3s ease;
  }
  #right-side.stage2-mode{
    min-height: 200px;
  }
  #right-side.stage1-mode{
    min-height: 500px;
  }
  .right-side-of-black-rect{
    height: fit-content;
  }
  .right-side-of-black-rect, .left-side-of-black-rect{
    width: 100%;
  }
  .stage.active{
    gap: 0rem;
  }
  .button-container-gs-rect{
    width: 90%;
    margin-bottom: 1rem;
    place-self: center;
    display: flex;
    height: 4rem;
  }
  .continue-gs-form-btn{
    width: 90%;
    place-self: center;
    height: 4rem;
  }
  .left-side-of-black-rect h2{
    margin-bottom: 1rem;
    text-align: center;
  }
  #stage-2 input, #stage-2 textarea{
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  #stage-2 textarea{
    height: 100px;
  }
  .budget-wrapper span{
    position: absolute;
    top: 25%;
    left: 0.75rem;
    transform: translateY(0%);
    pointer-events: none;
    color: #000;
    line-height: 1;
    display: flex;
    align-items: center;
    place-content: center;
  }
  #stage-3{
    text-align: center;
    width: 100%;
    gap: 0.5rem;
  }
   .slideshow-btn {
    padding: 0.6rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .continue-gs-form-btn{
    padding: 1rem;
  }
  .left-right-portrait-container{
    padding: 0rem 2rem;
    gap: 3rem;
  }
}





@media screen and (orientation: portrait) and (max-width: 600px){
  .black-rect{
    flex-direction: column-reverse;
    place-content: space-evenly;
    padding: 3rem;
    max-width: 450px;
    max-height: 1000px !important;
    left: 0;
  }
  .get-started-container-rect{
    place-content: center;
  }
  .left-side-of-black-rect{
    height: fit-content;
  }
  #right-side{
    transition: min-height 0.3s ease;
  }
  #right-side.stage2-mode{
    min-height: 200px;
  }
  #right-side.stage1-mode{
    min-height: 500px;
  }
  .right-side-of-black-rect{
    height: fit-content;
  }
  .right-side-of-black-rect, .left-side-of-black-rect{
    width: 100%;
  }
  .stage.active{
    gap: 0rem;
  }
  .button-container-gs-rect{
    width: 90%;
    margin-bottom: 0.5rem;
    place-self: center;
    display: flex;
    height: 3.2rem;
  }
  .continue-gs-form-btn{
    width: 90%;
    place-self: center;
  }
  .left-side-of-black-rect h2{
    margin-bottom: 1rem;
    text-align: center;
  }
  #stage-2 input, #stage-2 textarea{
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  #stage-2 textarea{
    height: 100px;
  }
  .budget-wrapper span{
    position: absolute;
    top: 25%;
    left: 0.75rem;
    transform: translateY(0%);
    pointer-events: none;
    color: #000;
    line-height: 1;
    display: flex;
    align-items: center;
    place-content: center;
  }
  #stage-3{
    text-align: center;
    width: 100%;
    gap: 0.5rem;
  }
   .slideshow-btn {
    padding: 0.6rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .continue-gs-form-btn{
    padding: 1rem;
  }
  .left-right-portrait-container{
    padding: 0rem 2rem;
    gap: 3rem;
  }
}







@media screen and (orientation: portrait) and (max-width: 450px){
  .black-rect{
    flex-direction: column-reverse;
    place-content: space-evenly;
    padding: 3rem;
    max-width: 450px;
    max-height: 850px !important;
    left: 0;
  }
  .get-started-container-rect{
    place-content: center;
  }
  .left-side-of-black-rect{
    height: fit-content;
  }
  #right-side{
    transition: min-height 0.3s ease;
  }
  #right-side.stage2-mode{
    min-height: 200px;
  }
  #right-side.stage1-mode{
    min-height: 400px;
  }
  .right-side-of-black-rect{
    height: fit-content;
  }
  .right-side-of-black-rect, .left-side-of-black-rect{
    width: 100%;
  }
  .stage.active{
    gap: 0rem;
  }
  .button-container-gs-rect{
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .continue-gs-form-btn{
    width: 100%;
  }
  .left-side-of-black-rect h2{
    margin-bottom: 1rem;
  }
  #stage-2 input, #stage-2 textarea{
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  #stage-2 textarea{
    height: 100px;
  }
  .budget-wrapper span{
    position: absolute;
    top: 25%;
    left: 0.75rem;
    transform: translateY(0%);
    pointer-events: none;
    color: #000;
    line-height: 1;
    display: flex;
    align-items: center;
    place-content: center;
  }
  #stage-3{
    text-align: center;
    width: 100%;
    gap: 0.5rem;
  }
  .slideshow-btn{
    padding: 0.4rem;
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
  .button-container-gs-rect{
    height: 3rem;
  }
  .continue-gs-form-btn{
    padding: 1rem;
  }
  .left-right-portrait-container{
    padding: 0rem 2rem;
    gap: 2rem;
  }
}






@media screen and (orientation: portrait) and (max-width: 400px){
  .black-rect{
    flex-direction: column-reverse;
    place-content: space-evenly;
    padding: 2rem;
    max-width: 450px;
    max-height: 750px !important;
    left: 0;
  }
  .get-started-container-rect{
    place-content: center;
  }
  .left-side-of-black-rect{
    height: fit-content;
  }
  #right-side{
    transition: min-height 0.3s ease;
  }
  #right-side.stage2-mode{
    min-height: 200px;
  }
  #right-side.stage1-mode{
    min-height: 280px;
  }
  .right-side-of-black-rect{
    height: fit-content;
  }
  .right-side-of-black-rect, .left-side-of-black-rect{
    width: 100%;
  }
  .stage.active{
    gap: 0rem;
  }
  .button-container-gs-rect{
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .continue-gs-form-btn{
    width: 100%;
  }
  .left-side-of-black-rect h2{
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  #stage-2 input, #stage-2 textarea{
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  #stage-2 textarea{
    height: 100px;
  }
  .budget-wrapper span{
    position: absolute;
    top: 25%;
    left: 0.75rem;
    transform: translateY(0%);
    pointer-events: none;
    color: #000;
    line-height: 1;
    display: flex;
    align-items: center;
    place-content: center;
  }
  #stage-3{
    text-align: center;
    width: 100%;
    gap: 0.5rem;
  }
  .slideshow-btn{
    padding: 0.4rem;
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
  .button-container-gs-rect{
    height: 3rem;
  }
  .continue-gs-form-btn{
    padding: 0rem;
  }
  .left-right-portrait-container{
    padding: 0rem 1rem;
    gap: 3rem;
  }
  
}












@media screen and (orientation: landscape) and (min-width: 1201px){
  .continue-gs-form-btn{
    padding: 0rem;
  }
  .button-container-gs-rect{
    width: 15rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .continue-gs-form-btn{
    width: 15rem;
    height: 2.5rem;
    display: flex;
    place-content: center;
    align-items: center;
    padding: 1rem;
  }
  .h2-buttons-gs-container{
    height: fit-content;
  }
  .left-side-of-black-rect h2 {
    margin-bottom: 1rem;
  }
  #slideshow-wrapper{
    max-width: 100%;
    max-height: 100%;
  }
  .slideshow-btn{
    padding: 0.5rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
  .stage.active{
    gap: 0.5rem;
    height: 100%;
  }
  #stage-2 input, #stage-2 textarea{
    padding: 0.5rem;
  }
  .budget-wrapper span{
    top: 50%;
  }
  #submit-btn{
    width: 70% !important;
    height: 2.4rem !important;
    padding: 0.5rem !important;
  }
  #right-side.stage2-mode #stage-image{
    scale: 1.2;
  }
  .black-rect{
    padding: 1rem;
    max-height: 400px !important;
    height: 90%;
    max-width: 650px;
    max-height: 550px;
    left: 0%;
    transform: scale(1.5);
  }
  .left-side-of-black-rect{
    margin: 2rem 0rem 0rem 0rem;
    padding-left: 0.5rem;
    overflow-y: auto;
    height: auto;
    overflow-x: visible;
  }
  .right-side-of-black-rect{
    min-height: auto;
  }
  #left-side.stage3-mode{
    overflow: hidden;
  }
  .get-started-container-rect{
    place-content: center;
  }
}












@media screen and (orientation: landscape) and (max-width: 1200px){
  .continue-gs-form-btn{
    padding: 0rem;
  }
  .button-container-gs-rect{
    width: 15rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .continue-gs-form-btn{
    width: 15rem;
    height: 2.5rem;
    display: flex;
    place-content: center;
    align-items: center;
    padding: 1rem;
  }
  .h2-buttons-gs-container{
    height: fit-content;
  }
  .left-side-of-black-rect h2 {
    margin-bottom: 1rem;
  }
  #slideshow-wrapper{
    max-width: 100%;
    max-height: 100%;
  }
  .slideshow-btn{
    padding: 0.5rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
  .stage.active{
    gap: 0.5rem;
    height: 100%;
  }
  #stage-2 input, #stage-2 textarea{
    padding: 0.5rem;
  }
  .budget-wrapper span{
    top: 50%;
  }
  #submit-btn{
    width: 70% !important;
    height: 2.4rem !important;
    padding: 0.5rem !important;
  }
  #right-side.stage2-mode #stage-image{
    scale: 1.2;
  }
  .black-rect{
    padding: 1rem;
    max-height: 400px !important;
    height: 90%;
    max-width: 650px;
    max-height: 550px;
    left: 0%;
    transform: scale(1.2);
  }
  .left-side-of-black-rect{
    margin: 2rem 0rem 0rem 0rem;
    padding-left: 0.5rem;
    overflow-y: auto;
    height: auto;
    overflow-x: visible;
  }
  .right-side-of-black-rect{
    min-height: auto;
  }
  #left-side.stage3-mode{
    overflow: hidden;
  }
  .get-started-container-rect{
    place-content: center;
  }
}









@media screen and (orientation: landscape) and (max-width: 992px){
  .continue-gs-form-btn{
    padding: 0rem;
  }
  .button-container-gs-rect{
    width: 15rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .continue-gs-form-btn{
    width: 15rem;
    height: 2.5rem;
    display: flex;
    place-content: center;
    align-items: center;
    padding: 1rem;
  }
  .h2-buttons-gs-container{
    height: fit-content;
  }
  .left-side-of-black-rect h2 {
    margin-bottom: 1rem;
  }
  #slideshow-wrapper{
    max-width: 100%;
    max-height: 100%;
  }
  .slideshow-btn{
    padding: 0.5rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
  .stage.active{
    gap: 0.5rem;
    height: 100%;
  }
  #stage-2 input, #stage-2 textarea{
    padding: 0.5rem;
  }
  .budget-wrapper span{
    top: 50%;
  }
  #submit-btn{
    width: 70% !important;
    height: 2.4rem !important;
    padding: 0.5rem !important;
  }
  #right-side.stage2-mode #stage-image{
    scale: 1.2;
  }
  .black-rect{
    padding: 1rem;
    max-height: 400px !important;
    height: 90%;
    transform: scale(1);
  }
  .left-side-of-black-rect{
    margin: 2rem 0rem 0rem 0rem;
    padding-left: 0.5rem;
    overflow-y: auto;
    height: auto;
    overflow-x: visible;
  }
  .right-side-of-black-rect{
    min-height: auto;
  }
  #left-side.stage3-mode{
    overflow: hidden;
  }
}






















@media screen and (orientation: landscape) and (max-width: 768px){
  .continue-gs-form-btn{
    padding: 0rem;
  }
  .button-container-gs-rect{
    width: 15rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .continue-gs-form-btn{
    width: 15rem;
    height: 2.5rem;
    display: flex;
    place-content: center;
    align-items: center;
    padding: 1rem;
  }
  .h2-buttons-gs-container{
    height: fit-content;
  }
  .left-side-of-black-rect h2 {
    margin-bottom: 1rem;
  }
  #slideshow-wrapper{
    max-width: 100%;
    max-height: 100%;
  }
  .slideshow-btn{
    padding: 0.5rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
  .stage.active{
    gap: 0.5rem;
    height: 100%;
  }
  #stage-2 input, #stage-2 textarea{
    padding: 0.5rem;
  }
  .budget-wrapper span{
    top: 50%;
  }
  #submit-btn{
    width: 70% !important;
    height: 2.4rem !important;
    padding: 0.5rem !important;
  }
  #right-side.stage2-mode #stage-image{
    scale: 1.2;
  }
  .black-rect{
    padding: 1rem;
    max-height: 400px !important;
    height: 90%;
    transform: scale(0.75);
  }
  .left-side-of-black-rect{
    margin: 2rem 0rem 0rem 0rem;
    padding-left: 0.5rem;
    overflow-y: auto;
    height: auto;
    overflow-x: visible;
  }
  .right-side-of-black-rect{
    min-height: auto;
  }
  #left-side.stage3-mode{
    overflow: hidden;
  }
}