.hero{
    height: 100vh;
    height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(130deg, #6cf, #fefefe, #7ff);
    background-size: 200% 200%;
    animation: hero-gra 5s ease infinite;
    color: #6cf;
    overflow: hidden;
    padding: 0 0.5rem;
    position: relative;
}


.hero::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 65%, #fdfdfd);
}

@keyframes hero-gra {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}

.hero h1{
    font-size: clamp(2.5rem, 4vw , 6rem);
    font-weight: 600;
    color: rgb(76, 192, 249);
}

.hero p{
    color: #555;
    font-size: clamp(1rem, 1.5vw, 2rem);
}

.hero img{
    position: relative;
    height: 50%;
    animation: loadup 300ms linear;
}

@keyframes loadup {
    0%{height: 0;}
    100%{height: 50%;}
}

@media screen and (max-width: 530px){
    .hero h1{
        line-height: 2.5lh;
        margin-bottom: 0.5rem;
    }
    .hero p{
        line-height: 1.5lh;
    }
}

.services{
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
}

.services .row{
    margin: 2rem 0;
    width: 100%;
    max-width: 30ch;
}

.services .row:nth-child(even){
    margin-left: 2rem;
}

.services .row p{
    margin-top: 0.5rem;
    color: #555;
    font-weight: 200;
    margin-left: 0.5rem;
    line-height: 1.25lh;
}

.imgs{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 2rem;
}

.imgs img{
    width: 65%;
    box-shadow: 0 0 3rem #000;
}

.imgs img:first-child{
    align-self: flex-end;
}

.blob1{
    mask-image: url('/images/blob1.svg');
    mask-position: center center;
    mask-size: cover;
}

.blob2{
    mask-image: url('/images/blob2.svg');
    mask-position: center center;
    mask-size: cover;
}

footer{
  margin-top: 0;
}

.why-us{
  max-width: 1000px;
}
.margin-b{margin-bottom: 2rem;}


@media screen and (max-width:900px){
    .imgs{
        min-width: 100%;
        min-height: 90%;
        padding: 1rem;
        opacity: 0.2;
        z-index: -1;
        position: absolute;
        min-width: 600px;
    }
    .services{
        justify-content: flex-start;
    }
    .row{
        max-width: none;
        background: #fffc;
        border-radius: 1rem 1rem 1rem 15%;
        padding: 1rem;
        border: 1px solid #a9a9a9;
    }
}

.meet-my-clients, .main-sec{
    padding: 1rem;
    text-align: center;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meet-my-clients{max-width: 600px;margin-top: 3rem;}

.meet-my-clients h2, .main-sec h2{
    color: #6cf;
    font-size: clamp(2.5rem, 4vw , 6rem);
}

.meet-my-clients p, .main-sec p{
    color: #555;
    font-weight: 200;
}

.meet-my-clients a{
    width: fit-content;
    margin: 1rem auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}


.main-sec {
  position: relative;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
}

.main-sec::before,.main-sec::after{
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #66ccff, #3b89af);
  filter: blur(120px);
  opacity: 0.15;
  z-index: 0;
}

.main-sec::after {
   top: unset;
   left: unset;
    bottom: -100px;
    right: -150px;
}

.main-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.main-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.subtext {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.brand-card {
  background: #fdfdfd;
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px) brightness(1.2);
  box-shadow: 0 4px 10px #0001, inset 0 0 5px #ddd8;
}

.brand-card:hover {
  transform: translateY(-6px);
  background: #f5f5f5;
  box-shadow: 0 6px 24px #0002;
}

.brand-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #6cf;
}

.brand-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #6cf, #4ab8ff);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4ab8ff, #6cf);
}
.parallax-sec {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('/images/parallax-desktop.webp') center / cover no-repeat;
  z-index: -1;
}

.parallax-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1.5rem;
}

.parallax-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #6cf;
}

.parallax-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.services-sec{
  padding: 3rem 1rem 0;
  text-align: center;
  z-index: 1;
}

.services-sec h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #6cf;
}

.services-sec > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.services-cont{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  justify-items: center;
}

@media (max-width: 1050px) {
  .services-cont {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-cont {
    grid-template-columns: 1fr;
  }
}

.service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff9;
  border: 1px solid #0001;
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px #0001;
  transition: all 0.25s ease;
  position: relative;
  width: 100%;
  max-width: 350px;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px #0002;
}

.service h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.service-btn {
  display: inline-block;
  background: linear-gradient(135deg, #6cf, rgb(62, 163, 213));
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.service-btn:hover {
  transform: scale(1.05);
}


@media (max-width: 700px) {
  .main-content h2 {
    font-size: 2rem;
  }
  .subtext {
    font-size: 1rem;
  }
   .parallax-bg{
    background-image: url('/images/parallax-mobile.webp');
    filter: brightness(0.7);
  }
}


