/* General reset and box-sizing */
* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
   object-fit: contain;
   font-family: 'Open Sans', sans-serif;
}

/* Scrollbar styling */
::-webkit-scrollbar {
   width: 5px;
   height: 9px;
  
}

::-webkit-scrollbar-thumb {
   background: #444;
   border-radius: 5px;
}

/* Web responsive container styling */
body {
   margin: 0;
   padding: 0;
   overflow-y: auto;
   background-repeat: repeat;
   width: 100%;
   height: 100%;
}

/* Styling for theme button */
.theme {
   padding: 0.625rem 1.25rem;
   font-size: 1rem;
   cursor: pointer;
}

/* Scroll Privacy Policy */
.PrivacyPy{
   color: #fff;
   text-align: center;
   position: relative;
   top: 2rem;
   font-size: 11px;
 }

/* Container with perspective and overflow properties */
.container {
   height: 100%;
   overflow-y: auto;
   overflow-x: hidden;
   perspective: 10px;
   scroll-behavior: smooth;
   transform-style: preserve-3d;
}

/* Keyframes for background animation */
@keyframes bgAnimatedGradient {
   0% {
       background-position: 0 100%;
   }
   25% {
       background-position: 200% 0;
   }
   50% {
       background-position: 0 100%;
   }
   75% {
       background-position: 200% 0;
   }
   100% {
       background-position: 0 100%;
   }
}

/* Styling for images */
.img1, .img2, .img3, .img4 { 
   position: absolute;
   min-height: 100%;
   height: 100%;
   min-width: 100%;
   width: 100%;
   object-fit: cover;
   z-index: -1;
   display: flex;
   border-radius: 10px;
}

/* Navigation bar styling */
nav {
   height: 6vh;
   width: 95%;
   display: flex;
   margin: 0 auto;
   justify-content: space-between;
   border-radius: 20px;
   align-items: center;
   padding: 0 1rem;
   transform-style: preserve-3d;
}

/* Toggle button span */
.toggle-btn span {
   width: 20px;
   height: 4px;
   background: #fff;
   display: block;
   margin-top: 4px;
   border-radius: 20%;
   transform-style: preserve-3d;
}

/* Font Awesome shop icon */
.fa-shop {
   height: 30px;
   width: 30px;
   padding: 1rem;
   font-size: 1.5vw;
   cursor: pointer;
   transform-style: preserve-3d;
}

/* Image text styling */
.imgs {
   position: relative;
   color: #fff;
   padding: 0 1.5rem;
   font-size: 1.25rem;
   display: inline-flex;
   transform-style: preserve-3d;
}

/* Hover effect for image text */
.imgs:hover {
   color: #444;
   transform-style: preserve-3d;
}

/* Logo styling */
.new_logo {
   position: relative;
   top: -11rem;
   color: #fff;
   font-size: 4rem;
   text-align: center;
   filter: drop-shadow(0 5px 5px #000);
   transform: translateZ(-20px) scale(3);
}

/* Navigation links */
nav a {
   background: transparent;
   text-decoration: none;
   color: #fff;
   padding: 0 1.5rem;
   font-size: 1.5vw;
   display: inline-flex;
   align-items: center;
   filter: drop-shadow(0 3px 3px #000);
   cursor: pointer;
}

/* Hover effect for navigation links */
nav a:hover {
   color: #000;
   transform-style: preserve-3d;
}

/* Moon icon styling */
.fa-moon {
   color: #fff;
}

/* Hover effect for moon icon */
.fa-moon:hover {
   color: #000;
}

/* Search bar styling */
.search-bar {
   width: 90%;
   max-width: 600px;
   background: #000;
   display: flex;
   position: relative;
   top: -4rem;
   align-items: center;
   border-radius: 15px;
   margin: 5rem auto 0;
   padding: 10px;
   filter: drop-shadow(0 3px 3px #000);
   transform: translateZ(-20px) scale(3);
}

.search-bar input {
   width: 430px;
   flex: 1;
   background: transparent;
   color: #fff;
   border: 0;
   outline: none;
   padding: 4px 20px;
   font-weight: 500;
   font-size: 1rem;
}

::placeholder {
   color: #fff;
   font-weight: 500;
   padding: 15px;
}

/* Search Suggestion Box */
.suggestions-list {
   max-height: 200px;
   overflow-y: auto;
   display: none;
   border-radius: 20px;
   position: relative;
   position: absolute;
   top: 4rem;
   left: -4.3rem;
   background: #000;
   color: #fff;
   width: 595px;
   z-index: 1000;
   filter: drop-shadow(0 2px 2px #000);
}

.suggestions-list li {
   padding: 10px;
   cursor: pointer;
}
.suggestions-list li:hover {
   background-color: #444;
}
/* Search button styling */
.search-bar button {
   width: 2rem;
   height: 2rem;
   border: 0;
   border-radius: 50%;
   background: #000;
   cursor: pointer;
   transition: 1s;
}

/* Hover effect for search button */
.search-bar button:hover {
   color: #15b2e7;
   transform: scale(1.3);
   z-index: 1;
}

/* Scroll Down Button */
.Scroll-down{
  height: 10px;
  width: 10px;
  background: transparent;
  color: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 26rem;
  left: 50%;
  filter: drop-shadow(0 2px 2px #000);
  transform: translateZ(-50px) scale(1);
}

.Scroll-down i{
  color: #fff;
}

/* AI Assistant Subtitles */
#subtitle {
   position: absolute;
   top: 39rem;
   left: 50%; /* Centers the box horizontally */
   transform: translateX(-50%) translateZ(-20px) scale(3); /* Adjust for centering and existing transformations */
   width: 60%;
   max-width: 600px;
   text-align: center;
   color: white;
   text-shadow: 1px 1px #000;
   font-size: 18px;
   background: transparent;
   padding: 10px;
   border-radius: 10px;
   overflow-y: auto;
   filter: drop-shadow(0 2px 2px #000);
}


/* Icon container styling */
.iconss {
   width: 20rem;
   max-width: 20rem;
   height: 50px;
   display: flex;
   margin: 0 auto;
   justify-content: space-between;
   background: transparent;
   align-items: center;
   border-radius: 6px;
   cursor: pointer;
   transform-style: preserve-3d;
}

/* Hover effect for icons */
.iconss:hover {
   color: #ff0000;
   transform-style: preserve-3d;
}

/* Icon list styling */
.iconss ul {
   color: #fff;
   padding: 0 1rem;
   display: inline-flex;
   justify-content: space-between;
   align-items: center;
   transform-style: preserve-3d;
}

/* Icon styling */
.iconss ul a i {
   color: #fff;
   transform-style: preserve-3d;
}

/* Hover effect for icons */
.iconss ul a i:hover {
   color: #15b2e7;
   transform-style: preserve-3d;
}

/* Login hover effect */
.logIn:hover {
   color: #444;
   transform-style: preserve-3d;
}

/* Clearfix for images */
.images::after {
   content: "";
   display: table;
   clear: both;
   transform-style: preserve-3d;
}

/* Number styling */
.number {
   color: #fff;
   font-size: 1.5625rem;
   position: relative;
   top: -2rem;
   left: 7.1rem;
}

/* Slider styling */
.slider {
   background: transparent;
   padding: 20px;
   border-radius: 5px;
   width: 350px;
   display: flex;
   align-items: center;
   justify-content: space-around;
   position: absolute;
   top: 27.7rem;
   left: 29rem;
   filter: drop-shadow(0 3px 3px #000);
   transform: translateZ(109px) scale(0.3);   
}

/* Range input styling */
#range {
   outline: none;
   width: 100%;
   height: 5px;
   border-radius: 5px;
   background: #373737;
}

/* Slider thumb styling */
#range::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 15px;
   height: 15px;
   background: #fff;
   border-radius: 50%;
   box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.05);
   cursor: pointer;
}

/* Scroll down button styling */
.scroll-down {
   height: 30px;
   width: 30px;
   background: transparent;
   position: absolute;
   top: 21rem;
   left: 20.5rem;
   display: block;
   margin: 0 auto;
   border-radius: 10px;
   filter: drop-shadow(0 3px 3px #000);
   cursor: pointer;
   transform: translateZ(-19px) scale(1);
}

/* Scroll down button animation */
@keyframes scrollu-down {
   0% {
       opacity: 0;
   }
   30% {
       opacity: 1;
   }
   60% {
       opacity: 1;
   }
   100% {
       opacity: 0;
       top: 90%;
   }
}

.scroll-down::before, .scroll-down::after {
   content: '';
   position: absolute;
   top: 10%;
   left: 50%;
   border: 2px solid #fff;
   height: 10px;
   width: 10px;
   transform: translate(-50%, -100%) rotate(45deg);
   border-top: transparent;
   border-left: transparent;
   filter: drop-shadow(0 5px 5px #000);
   animation: scrollu-down 1s ease-in-out infinite;
}

.scroll-down::after {
   top: 20%;
   animation-delay: 0.3s;
}

/* Box section styling */
.boxsection {
   height: 100%;
   position: relative;
   top: 30rem;
   background: #000;
   box-shadow: 0 -5px 10px #000;
   border-radius: 2px;
   transform-style: preserve-3d;
   overflow-y: auto;
}

/* CTGIS text styling */
.ctgis {
   color: #ff0000;
}

/* Message for users */
.foruser p {
   color: #fff;
   text-align: center;
   font-size: 20px;
   position: relative;
   top: 10px; /* Adjust as needed */
}

