/* Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  font-family: "Manrope", sans-serif;
  /* border: red 1px solid; */
}

::selection{
 background: transparent;
}

html,
body {
  width: 100%;
  height: 100%;
}

::-webkit-scrollbar {
  display: none;
}

/* Preloader */

#main {
  position: relative;
}

.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  z-index: 10000002;
}

.clip-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1000000;
}

.loader-top {
  height: 50%;
  width: 100%;
  background: #fff;
  overflow: clip;
  clip-path: inset(0 0 0 0);
  position: absolute;
  top: 0;
}

.loader-bottom {
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 100%;
  background: #fff;
  overflow: clip;
  transform: translateY(-1px);
  clip-path: inset(0 0 0 0);
}

.loader-top h1,
.loader-bottom h1 {
  display: flex;
  justify-content: center;
  font-size: clamp(3rem, 12vw, 12rem);
  text-transform: uppercase;
  font-weight: 200;
  font-family: "Anton", sans-serif;
  color: #151515;
}

.loader-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pre-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000000;
  background: #fff;
}

.loader-wrapper {
  position: relative;
  width: 20vw;
  height: 4px;
  background: rgb(240, 240, 240);
  border-radius: 2px;
  overflow: hidden;
}

.loader {
  position: absolute;
  width: 0;
  height: 100%;
  background: #00c098;
}

/* Navigation */
nav {
  position: fixed;
  width: calc(100% - 100px);
  z-index: 10000001;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px clamp(10px, 6vw, 80px);
  border-radius: 15px;
  margin: 20px 50px 0;
}

.hamburger {
  display: none;
}

a {
  text-decoration: none;
  font-size: clamp(1rem, 4vw, 1rem);
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  transition: all 0.3s ease-in-out;
}

.circle {
  width: 10px;
  height: 10px;
  background-color: rgba(128, 128, 128, 0.171);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

nav .nav-list a:hover {
  scale: 1.05;
}

a:hover .circle {
  background-color: #00c098;
  scale: 1.5;
}

nav .home:hover {
  background-color: #00c098;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

nav .home:hover a {
  color: #0000008e;
}

nav .home:hover i {
  color: #0000008e;
}

nav .home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  height: 40px;
  width: 120px;
  background-color: #353535cc;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;

  i {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
  }

  a {
    font-weight: 900;
    color: #fff;
  }
}

nav .nav-list {
  display: flex;
  gap: 5vw;
}

/* page1 */
#page1 {
  width: 100%;
  min-height: 100vh;
  background-color: #151515;
  padding: 0 3vw 0;
  z-index: 0;
}

.content {
  padding-top: clamp(15vh, 10vw, 13vh);
}

.content h1,
span {
  font-size: clamp(2.5rem, 6.5vw, 6.5rem);
  font-weight: 300;
  font-family: "Boldonse", sans-serif;
  color: #fff;
  text-align: end;
}

.digit {
  display: inline-block;
  position: relative;
  font-size: inherit;
  width: 1.3em;
  height: 1.55em;
  overflow: hidden;
}

.zero,
.seven {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.zero {
  top: 0;
}

.seven {
  top: 100%;
}

.content p {
  margin-top: clamp(0px, 5vw, 30px);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  width: 40%;
  margin-bottom: clamp(30px, 3vw, 50px);
}

i {
  color: #00c098;
}

.img-content {
  width: 100%;
  height: clamp(50vh, 10vw + 50vh, 90vh);
  border-radius: 30px;
  overflow: hidden;
}

.img-content img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/*page2 */
#page2 {
  width: 100%;
  min-height: 100vh;
  background-color: #151515;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 30px;
  padding: 0 3vw;
}

#page2 .div1 {
  grid-column: span 5 / span 5;
  grid-row: span 2 / span 2;
}

#page2 .div2 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-row-start: 3;
}

#page2 .div3 {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 3;
}

.div1 h2 {
  font-size: clamp(4rem, 8vw, 10rem);
  font-weight: 700;
  text-align: center;
  margin-top: clamp(1vh, 5vw, 10vh);
  overflow: hidden;
}

.div1 p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-top: clamp(0px, 5vw, 30px);
  width: 70%;
  margin: 30px auto 0;
  margin-bottom: clamp(2vh, 4vh, 5vh);
}

.div2 .about-img {
  width: 83%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
}

.div2 .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.9);
}

.div3-border {
  border: 3px solid #fff;
  border-radius: 30px;
}

.div3 .numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.div3 .experience {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1vw;
  background-color: #b3e5fc;
  border-radius: 20px;
  padding: clamp(1vw, 2vw, 3vw) clamp(4vw, 8vw, 6.5vw);
  margin: clamp(0.5vw, 2vw, 3.5vw) 0;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid #8abbd3;
}

.experience h3 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  color: #0a192f;
}

.experience .num {
  text-shadow: 0px 0px 10px rgba(179, 229, 252, 0.6);
}

.div3 .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  padding: clamp(1vw, 1.8vw, 3vw) clamp(4vw, 8vw, 9vw);
}

.div3 .cta p {
  font-size: clamp(1rem, 2vw, 2rem);
  text-align: center;
  font-weight: 700;
}

.div3 .cta .dash {
  background-color: #00c098;
  padding: 10px 30px;
  border-radius: 20px;
}

/* page3 */
#page3 {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #151515, #0a0d12);
  padding: 0 3vw;
}

.marq-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.marq-content h3 {
  font-size: clamp(1.7rem, 5vw, 4rem);
  font-weight: 700;
  color: #00c09acb;
  text-align: center;
}

.marq1,
.marq2 {
  white-space: nowrap;
  overflow-x: hidden;
  margin-bottom: clamp(0.5rem, 1vw, 2rem);
}

.marq1 h1,
.marq2 h1 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 500;
  color: grey;
  text-transform: uppercase;
  display: inline-block;
}

.marq1 h1 {
  animation: anime1 40s linear infinite;
}

.marq2 h1 {
  animation: anime1 40s linear infinite reverse;
}

@keyframes anime1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}

.services {
  margin-top: clamp(4vh, 7vw, 10vh);
  padding: 0 5% clamp(5vh, 13vw, 15vh);
  position: relative;
}

.services h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  text-align: center;
  font-family: "Boldonse", sans-serif;
  background: linear-gradient(to right, #fff, #ddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.service-card {
  -webkit-tap-highlight-color: transparent;
}

.service-card {
  padding: 2.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,192,152,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,192,152,0.1);
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
  background: rgba(0,192,152,0.2);
  transform: scale(1.05);
}

.icon-wrapper i {
  font-size: 1.8rem;
  color: #00c098;
}

.service-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  background: linear-gradient(to right, #fff, #ddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  opacity: 0.9;
}

.background-glow {
  position: absolute;
  width: 80vw;
  height: 80vh;
  background: radial-gradient(circle at 50% 50%, rgba(0,192,152,0.15) 0%, transparent 60%);
  filter: blur(10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* testimonials */

.testimonials {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #0a0d12, #151515);
  padding: 0 3vw;
  overflow: hidden;
}

.testimonials h1 {
  font-size: clamp(2rem, 5vw, 5rem);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: 400;
  color: #00c09acb;
  margin-bottom: clamp(1rem, 3vh, 4rem);
}

.testimonials h1 span {
  font-size: clamp(2rem, 5vw, 5rem);
  font-family: "Boldonse", sans-serif;
  color: #fff;
}

.test-wrapper {
  width: 100%;
  height: 65vh;
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testi-content {
  display: flex;
  gap: clamp(10px, 5vw, 25px);
  flex-wrap: nowrap;
  padding: 0 1rem;
}

.testi-person {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 75px) / 4);
  box-sizing: border-box;
  height: 45vh;
  border-radius: 20px;
  border: 2px solid #1a1a1a;
  padding: 1.2vw 2vw;
  background: #000;
}

.testi-person.offset {
  margin-top: clamp(5rem, 15vh, 12rem);
}

.testi-rev {
  width: 100%;
  height: 25vh;

  p{
     font-weight: 300;
     font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
}

.testi-profile {
  width: 100%;
  height: 10vh;
  margin-top: 5vh;
  display: flex;
  gap: 30px;
}

.second{
    background-color: #f0f0f0de;
    border: 3px solid #00c098;
    
    .testi-rev p{
        color: #000;
    }

    .testi-info h3{
        color: #000;
    }
    .testi-info h4{
        color: grey;
    }
}

.testi-profile img {
  width: 25%;
  height: 80%;
  border-radius: 10px;
  object-fit: cover;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-start;
  align-items: center;

  h4{
    color: grey;
  }
}

/* footer */
.footer {
  min-height: 50vh;
  background-color: #151515;
  width: 100%;
  padding: clamp(2rem, 15vh, 20vh) 3vw clamp(3rem, 10vh, 10vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5vh;
  box-sizing: border-box;
}

.links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 8vw, 13vw);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.sub-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 50px);
  justify-content: center;
}

.social-media {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 30px);
  justify-content: center;
}

.links a {
  font-size: clamp(1rem, 2vw, 1.3rem);
  text-decoration: none;
}

.social-media i {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #f0f0f0;
  transition: transform .3s ease, color .3s ease;
}

.social-media i:hover {
  color: #00c098;
  transform: scale(1.1);
}

.social-media .indiamart {
  position: relative;
  color: #f0f0f0;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.social-media .indiamart::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #00c098;
  height: 2.5px;
  width: 0;
  transition: width .3s ease;
}

.social-media .indiamart:hover::before {
  width: 100%;
}

.footer-name {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin-top: auto;
}
