@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ffffff;
  --tetiary: #c1c1c1;
  --secondary: #f7cb1a;
  --text: #0d0d0d;
  --text-light: #1e1e1e;
}

html,
body {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* ------------------------------------
scroll bar
---------------------------------------- */
body::-webkit-scrollbar {
  width: 0.4em;
}

body::-webkit-scrollbar-track {
  background: var(--bg-gr);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  height: 3rem;
  border-radius: 2px;
}

/*----------------------------------------------
   general
  ------------------------------------------- */

a {
  text-decoration: none;
  font-family: "Kanit", sans-serif;
  font-size: 18px;
  color: var(--neutral);
  transition: 0.5s ease;
}

a:hover {
  color: var(--accent);
  text-decoration: none;
}

h1 {
  font-family: "inter", system-ui;
  font-size: 25px;
  text-transform: capitalize;
  color: var(--neutral);
}

p {
  color: var(--bg-alt);
}

h2,
h3,
h4,
h5,
h6,
p {
  font-family: "inter", sans-serif;
}

.section {
  padding: 2rem;
  height: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.min-section {
  height: auto !important;
  padding: 25px;
  border-top: 1px solid var(--bg-gr);
  border-bottom: 1px solid var(--bg-gr);
}

body {
  background: var(--primary);
  margin: 0;
  font-family: "Inter", sans-serif;
}

/* ------------------------------------------
reveal
---------------------------------------- */
/* 
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(10px);
}
 */
/* ------------------------------
header
--------------------------------- */

.header {
  width: 100%;
  /* Semi-transparent */
  z-index: 1000;
  /*     backdrop-filter: blur(10px);
 */
position: absolute;}

.rgt-hd {
  display: flex;
  align-items: center;
}

.rgt-hd .hd-cll {
  background: var(--secondary);
  padding: 10px 20px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  text-transform: capitalize;
  font-family: "inter", sans-serif;
  transition: fade 0.5s ease;
}

.rgt-hd .hd-cll:hover {
  border:1px solid  var(--secondary);
  background: transparent;
  color: var(--secondary);

}



.rgt-hd .hd-cll i span {
  position: absolute;
  margin-left: -5px;
  margin-top: -16.5px;
  height: 10px;
  max-width: 10px;
  width: 10px;
  padding: 10px;
  background: var(--secondary);
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  display: flex;
  opacity: 0.5;
  animation: pulseanimate infinite 2s ease-in-out 2s;
}

@keyframes pulseanimate {
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.rgt-hd .hd-cll i {
  position: relative;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  margin-top: -5px;
}

.hd-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.hd-cont .logo {
  max-width: 70px;
  overflow: hidden;
  align-items: center;
}
 .hd-cont .logo .mob_loo{
    display: none;
    visibility: hidden;
  }


.hd-cont .logo img {
  width: 100%;
}

/* hero */
/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
overflow: hidden;

}

/* Background image */
.bg-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: 0;
  background-image: url(/asset/hero-img.png);
  /* make it fill the screen */
  background-size: cover; /* cover ensures it fills screen proportionally */
  background-position: center; /* center the image */
  background-repeat: no-repeat; /* prevent tiling */
}

/* Background video */
.bg-video {
  inset: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mix-blend-mode: screen;
}

.bg-image,
.bg-video {
   position: absolute; /* ✅ not fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content container */
.hero-content {
    position: relative;
  z-index: 3; /* ensures text appears above video/image */
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 5rem;
  height: 100%;
}

/* Left and right layout */
.left {
  flex: 1;
}

.right {
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Text styles */
.year {
  font-weight: 500;
  font-size: 60px;
  line-height: 72px;
  color: var(--primary);
  font-family: "Bebas Neue", sans-serif;

}

.glass-text {
  font-size:9vw;
  font-weight: 500;
  letter-spacing: -10px;
  line-height: 1;
  text-transform: lowercase;

  color: var(--primary);
  margin-bottom: 2rem;
}

.desc {
  max-width: 500px;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
  color: var(--primary);
}

/* Right-side list */
.right ul {
  list-style: none;
}

.right li {
  margin-bottom: 0.3rem;
  opacity: 0.9;
  color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .right {
    text-align: left;
    margin-top: 2rem;
  }
  .glass-text {
    font-size: 11vw;
  }
}
@media (max-width: 769px) {
  .hero-content {
      padding: .3rem;
      display: flex;
      flex-wrap: wrap-reverse;
    

  }
  .right {
    text-align: right;
    width: 100%;
    padding: 0;
    height: 100%;
    position: relative;
    margin: 2rem 0;
    
  }
  .right ul li{
    font-weight: 600;

    font-size: 0.96rem;
  }
  .right ul{
    width: 100%;
 position: absolute;
  top: calc(50% - 70px);   /* move 70% down, adjust offset if needed */
  left: 0;
  }
  .left{
    position: absolute;
    align-items: flex-end;
    height: auto;
    bottom: 50px;

  }
  .glass-text {
    font-size: 12vw;
    font-weight: 600;
    letter-spacing: -3px;
    text-align: center;
    
  }
  .year{
    display: none;
    visibility: hidden;
  }
  .rgt-hd .hd-cll {
  display: none;
  
}
}
/* hero */
/* -----------------------------
menu icon
-------------------------- */

.menu-icon {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  
}


.line {
  width: 40px;
  height: 2px;
  border-radius: 3px;
  position: absolute;
  background-color: var(--primary);
  transition:  0.1s ease;
  z-index: 999;
}

.line1 {
  transform: translateY(-6px);
}

.line2 {
  transform: translateY(6px);
}



.menu-icon.active .line1 {
  transform: rotate(45deg);
  left: 0;
}

.menu-icon.active .line2 {
  transform: rotate(-45deg);
}

/* ------------------------------
nav
----------------------------------- */
.nav-togg{
  display: none;
  visibility: hidden;
}


  .nav-menu_des{
    position: relative;
    top: 0;
    display: flex;
    align-items: left;
    justify-content: space-evenly; /* evenly spread items */
    align-items: center;
    color: var(--primary);
    width: 40%;
    z-index: 998;
    
    padding: 0 20px;
  }
  .nav-menu_des a{
text-transform: capitalize;
transition: .3s ease;

  }
.nav-menu_des a:hover{
  color: #ccc;
}
.nav-menu {

  display: none;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100vh;
  background-color: var(--text);
  transition: right 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: left;
  padding-top: 4rem;
  padding-left: 1rem;
  color: white;
  z-index: 998;
}

.nav-menu span {
  background-color: var(--bg-gr);
  height: 1px;
  width: 100%;
}

.nav-menu.active {
  right: 0;
}

.nav-menu a {
  color: white;
  font-style: normal;
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: none;
    font-size: 30px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0px;
  margin: 5px 15px;
  transition: 0.5s ease;
}

.nav-menu a:hover {
  color: var(--accent);
  transform: scalex(1.05);
}

.nav-sic {
  justify-content: left;
  margin: 15px 0;
  display: block;
  margin-top: 5rem;
}

.nav-sic p {
  margin-left: 20px;
}

.sic-ico{
  margin-top: 20px;
  padding: 0;
}

/* -----------------------------------------
CLIENTS
-------------------------------------------------- */
.qb-box{
  display: flex;
  align-items: center;
  width: 100%;
  height: 50vh;
  justify-content: space-between;
  padding:  2rem;
}
.qbox-cont{
  text-align: left;
  width: 70%;
}

.qbox-btn{
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s ease;
}
.qbox-btn svg{
  width: 40px;
  stroke-width: 1px;
}
 .sk-qbox-btn .qbt-lnk{
   font-size: 25px;
  color: var(--primary);
  -webkit-text-stroke:0px;  
  
}
.qbt-lnk{
  margin-left: 15px;
  font-size: 25px;
  color: var(--text);
  -webkit-text-stroke: 0.5px var(--secondary);  
}
.qbox-cont{
   font-size: 46px;
  font-weight: 600;
  line-height: 51px;
    font-family: "Inter", sans-serif;

}
.qbox-btn:hover .qbt-lnk{
transform: translateX(10px);
}


.min-section {
  width: 100%;
  overflow: hidden; /* hide scroll overflow */
  padding: 20px 0;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
padding-bottom: 3rem;}

.row {
  display: flex;
  align-items: center;
  gap: 0px;
  animation: scroll 25s linear infinite;
  width: max-content; /* ensures animation length fits all images */
}

.row img {
  height: 140px;
  padding: 50px;
  transition: transform 0.3s ease;
}

.slider-container .sl-ros{
  border: 1px solid var(--tetiary);
  padding: 3rem;

}


/* ✅ Seamless scroll keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* moves exactly one set width */
  }
}

/* ✅ Slow down (not stop) on hover */
.slider-container:hover .row {
  animation-play-state: paused;
}


@media screen and (max-width: 769px){
.qb-box{
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 1.5rem;
}
.qbox-cont{
   font-size: 28px;
  font-weight: 500;
  width: 100%;
  line-height: 40px;
}
.qbox-btn{
  font-size: 18px;
  color: var(--primary);
  background-color:var(--secondary);  
  border-radius: 50px;
  padding: 20px 30px;
  width: 100%;
}
.qbt-lnk{

  color: var(--text-light);
  -webkit-text-stroke: none;  
}





.row img {
  height: 100%;
  width: 100%;
padding: 20px;
}

.row {
    animation-duration: 30s; /* even slower on small phones */
  display: flex;
  align-items: center;
  width: 100%;
    

  }
  .slider-container .sl-ros{
  gap: 0;

}


}

/* ---------------------- 
service section
----------------------------*/

.serv-sec{
  padding: 10px;
  height: auto;
    background-color: var(--text);

}
.ser-hd{
  display: flex;
  width: 100%;
  justify-content: space-between;
  

}
.ser-log{
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 80px;
}

.ser-log img{
  opacity: 0.2;
width: 70PX;
object-fit: cover;
}

.ser-arr {
    position: relative;


}
.ser-arr  i{
color: #ffffff;
width: 100%;

}
.ser-arr span{
  position: absolute;
 justify-content: center;
 align-items: center;
 display: flex;
  display: flex;
  width: 90px;
  height: 90px;
  background-color: var(--text);
  border: 10px solid var(--primary);
  border-radius: 50%;
  top: -60px;

}
.ser-tit{
  padding: 0 20px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}
.ser-tit span{
  padding: 4px;
  border: 2px solid;
  border-right-color: var(--secondary);
  border-top-color: var(--secondary);
margin-right: 10px;
}
.pjs-sec{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(720px, 1fr));
  gap: 20px;
  margin-top: 10rem;
  justify-content: center;
  padding: 10px;
  align-items: center;
  height: auto;
  
}
.pjs-sec a{
  margin-top: 3rem;
}
.psec-list{
  padding: 1rem;
  text-align: left;
  display: block;
  overflow: hidden;
  
}
.psec-list .ps-li-img{
  width: 820px;
  height: 550px;
  margin: 20px 0;
  overflow: hidden;
  
}
.psec-list .ps-li-img:hover img{
  transform: scale(1.1);
}
.psec-list .ps-li-img img{
  width: 820px;
  height: 100%;
object-fit: cover;
transition: .5s ease;
}
.ps-li-tit h1{
  padding: 10px 0;
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--text);
  text-align: left;
  
  width: 100%;

  
}
.ps-li-dec p{
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 300px;
  text-transform: lowercase;
  color: var(--text-light);

}
.ps-li-tags{
  padding: 20px 0;
  display: inline-flex;
  gap: 10px;
}
.ps-li-tags span{
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--text-light);
  font-weight: 700;
  font-size: 13px; 
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--text);
  
}
.pj-ft-txt{
  width: 100%;
  align-items: center;
  padding: 2rem;
  text-align: right;
  position: relative;
  
}
.pj-ft-txt h1{
  text-transform: capitalize;
  font-weight: 500;
  font-size: 60px;
  font-family: "Arimo", sans-serif;
    color: var(--text);

}
.pj-ft-txt a b{
  color: var(--text);
  
}
.pj-ft-txt a span{
  color: var(--secondary);
  font-family: "Inter", sans-serif;
  margin-top: -15px;

}
.pj-ft-txt a{
  display: flex;
  right: 1rem;
  position: absolute;
  align-items: center;
  
}
.pj-ft-txt a img{
  width: 50px;
  transition: .3s ease;
}
.pj-ft-txt a:hover img{
transform: translateX(-10px);
}



@media screen and (max-width:720px) {
  .pj-ft-txt {
    padding: 2rem 0;
  }
  .pj-ft-txt h1{

  font-size: 35px

}
.pj-ft-txt a img{
  width:30px;
}
  .ps-li-tit h1{
  
  font-size: 20px;
  

  
}
.ps-li-dec p{
 font-size: 15px;

}
  .pjs-sec{
display: block;
  }

  .psec-list{
  padding: 0rem;

  
}
.psec-list .ps-li-img{
  width: 400px;
  height: 200px;
  overflow: hidden;
  
}
.psec-list .ps-li-img img{
  width: 420px;
  height: 200px;
object-fit: cover;
}
}

.ser-tit p{
  color: var(--primary);
}


.ser-main{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
  padding: 10px;

}

.ser-m-bx-lft{
  padding: 30px ;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 80%;
}

.ser-m-bx-rgt{
  width: 70%;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
}


.ser-m-bx-lft .bx-lft-tit{
  color: var(--tetiary);
  padding: 10px;
  padding: 10px 0;
  font-size: 18px;
  text-transform: capitalize;
}
.ser-m-bx-lft .bx-lft-dec{
  color: var(--primary);
  padding: 10px 0;
  font-size: 23px;
  font-weight: 500;
}
.bx-lft-img{
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 10px;
  width: 300px;
  height: 200px;
}
.bx-lft-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skill-list{
  width:100%;
  height: 100%;
  list-style:none;
  padding:0;
  padding: 10px;
  margin:0;
}
.skill-list  li:nth-child(1){
  opacity: 1;
}
.skill-list  li{
  position: relative;
  color: var(--primary);
  cursor: pointer;
  text-transform: capitalize;
  padding: 1rem 0;
  font-size: 75px;
  letter-spacing: -5px;
  margin: 20px 0;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  align-items: center;
  display: flex;
  border-bottom: 0.1px solid var(--tetiary);

    transition: all .35s ease;
  opacity: .4;

}
.bx-rgt-no p{
  font-weight: 500;
  color: var(--primary);
}
.bx-rgt-no{
  color: var(--secondary);
  position: absolute;
  right: 30px;
  font-size: 30px;
  top: 10px;
  display: flex;
  font-weight: 200;
  font-family: "Arimo", sans-serif;

}

/* transition base */


/* hovered item */
.skill-list li:hover{
  opacity: 1;
  padding-left: 10px;

  color: var(--primary);
}

/* when hovering inside UL — dim everything except active li */
.skill-list:hover li{
  opacity: .2;
}

/* override for the one the cursor is on (keeps it bright & big) */
.skill-list li:hover{
  opacity: 1 !important;
  color: var(--primary);
}

.sk-qbox-btn img{
  width: 30px;
}
.sk-qbox-btn{
  width: 80%;
  padding: 3rem 0;
}

@media screen and (max-width: 769px){
  .sk-qbox-btn{
  width: 100%;
 padding: 4rem 1rem;
 margin: 2rem 0;
}
 .sk-qbox-btn .qbt-lnk{
   font-size: 20px;
color: var(--primary); 
  -webkit-text-stroke:0px;  
  
}
  .ser-arr span{
  
  width: 60px;
  height: 60px;
  background-color: var(--text);
  border: 5px solid var(--primary);
  border-radius: 50%;
  top: -30px;

}
.ser-log img{
width: 45PX;
}

.serv-sec{
 
  height: auto;
}
.ser-main{
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: left;
  align-items: center;
  text-align: left;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
  padding: 10px;

}

.ser-m-bx-lft{
  padding:  10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.ser-m-bx-rgt{
  width: 100%;
  height: 100%;
  padding: 0rem;
  align-items: center;
}
.skill-list  li{
  
  padding: .5rem 0;
  font-size: 25px;
  margin: 20px 0;
  font-weight: 400;
  letter-spacing: .4px;
 

}
.bx-rgt-no{
 
  right: 30px;
  font-size: 15px;
  top: 10px;
  

}
.ser-m-bx-lft .bx-lft-dec{

  font-size: 16px;
  font-weight: 400;
}
.qbox-btn{
  font-size: 15px;

  border-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 15px 25px;
}
.section .sec-tit {
  padding: 0rem;
  
}

}
/* ---------------------- 
service section
----------------------------*/

/*-------------------------------------- 
PROJECT SECTIONS
----------------------------------- */
.section .sec-tit {
  padding: 1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.section .sec-mini-tit {
  width: 100%;
  padding: 2rem 0;
  position: absolute;
}

.section .sec-mini-tit p {
  text-transform: capitalize;
  color: var(--text);
  position: relative;
}

.sec-mini-tit .ser-tit{
  padding: 0 20px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}
.sec-mini-tit .ser-tit span{
  padding: 4px;
  border: 2px solid;
  border-color: var(--primary);
  border-right-color: var(--secondary);
  border-top-color: var(--secondary);
margin-right: 10px;
}


.section .sec-mini-tit h1 {
  font-size: 70px;
  letter-spacing: -4px;
  font-weight: 700;
  line-height: 67px;
  padding: 2rem 0;
  font-family: "Arimo", sans-serif;
  color: var(--text);
}

.prj-sec {
  position: relative;
  top: 90px;
}

.prj-sec .prj-vid video {
  width: 90vw;
  transition: width 0.3s ease;
  top: 10px;
  border-radius: 10px;
}

.prj-bt-con {
  padding: 2rem;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.prj-bt-con .btn-prj {
  background: var(--accent);
  border: 1px solid var(--accent);
  text-transform: uppercase;
  padding: 18px 45px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 4px;
  font-size: 23px;
  color: var(--bg-alt);
  border-radius: 12px;
  box-shadow:
    6px 6px 10px #00050d,
    -6px -6px 15px #022a45;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  outline: none;
  margin-top: 2rem;
}

.prj-bt-con .btn-prj:hover {
  transform: translateY(-5px);
  box-shadow:
    10px 10px 20px #00050d,
    -10px -10px 20px #022a45;
  color: #ffffff;
}

.prj-bt-con .btn-prj:active {
  transform: translateY(2px);
  box-shadow:
    inset 4px 4px 4px #00050d,
    inset -4px -4px 10px #022a45;
  color: #00aacc;
}


@media screen and (max-width:760px){
  .section .sec-mini-tit h1 {
  font-size: 40px;
  width: 100%;
  line-height: 35px;
  font-weight: 700;
  padding: 1rem 0;
}

   .section .sec-mini-tit p {
    font-size: 13px;
  }
.founder-text{
  margin-top: 5rem !important;
}
  .founder-text p{

  font-size: 14px;
}
.founder-text h2{
  font-size:30px;



}

}

/* -----------------------
about mee
------------------------- */
.about-se{
  margin-top: 5rem;
}

.ser-m-bx-rg{
  width: 60%;
  height: 100%;
  margin-top: 0;
  
}

.ser-m-bx-rg .top-ab{
  padding: 3rem 0;
  width: 70%;
}
.ser-m-bx-rg .top-ab span{
  color: var(--secondary);
  font-size: 30px;
    font-family: "Bebas Neue", sans-serif;
  padding-right: 3rem;

}
.ser-m-bx-rg .top-ab h1{
  color: var(--primary);
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 1rem;
  font-family: "Arimo", sans-serif;
  
  
}
.ser-m-bx-rg .top-ab p{
  color: var(--tetiary);
  padding: 1rem 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;

}
.b-line{
  height: 1px;
  width: 100%;
  background-color: var(--tetiary);

}

.bt-ab{
  color: var(--primary);
  margin: 2rem 0;
}
.bt-ab h3{
     font-weight: 500;
  font-size: 40px;
  margin-bottom: 1rem;
  font-family: "Arimo", sans-serif;

}
.bt-ab p{
  font-size: 17px;
}





.founder-section{
  width:100%;
  padding:0px 8vw;
}

.founder-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:50px;
}

.founder-img {
  width: 580px;
  position: relative;
  bottom: -12px;
}
.fo-im-bx{
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 5px;

  border: none;
  border: 2px solid;
  border-right-color: var(--secondary);
  border-top-color: var(--secondary);
}
.founder-img img{
  width:100%;

  height:100%;
  object-fit:cover;
}

.founder-text h2{
  font-size:40px;
  font-weight:700;
    font-family: "Arimo", sans-serif;

  margin-bottom:0px;
  color: var(--primary);
}

.quote img{
width: 60px;
padding-right: 1rem;
}

.founder-text p{
  line-height:1.6;
  margin-bottom:20px;
  max-width:700px;
  color: var(--tetiary);
}

.founder-text hr{
  border:none;
  border-top:1px solid rgba(255,255,255,0.2);
  margin:40px 0 20px;
}

.founder-name h3{
  font-size:32px;
    font-family: "Arimo", sans-serif;

  margin-bottom:6px;
  color: var(--primary);
}

/* MOBILE — image goes down */
@media(max-width:720px){
  .founder-grid{
    grid-template-columns:1fr;
  }
  .founder-img{
    order:2;
  }
  .founder-text{
    order:1;
  }
}

@media(max-width:720px){
  .quote img{
width: 50px;
}
.founder-img {
  width: 370px;
  overflow: hidden;
  justify-content: center;

}
.founder-img img{
  width:100%;
  height:auto;
  object-fit:cover;
}

.side-box {
 margin: 1rem 0;
}


.founder-section{
  padding:0px 3vw;
}
}
/* ----------------------------------------
results
---------------------------------------- */

.prj-sec .prj-img img {
  border-radius: 10px;
}

/* --------------------------------------
PRICING
----------------------------------------- */

.main-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  text-align: left;
  align-items: flex-start;
  position: relative;
  height: 100%;
  top: 300px;
  padding: 20px 50px;
}

.man-con .package-box {
  background: linear-gradient(135deg, #7615fb, #b870f5);
}
.package-box {
  background: linear-gradient(135deg, #21d6ff, #0083b0);
  border-radius: 20px;
  padding: 30px;
  height: 360px;

  flex: 3;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.216);
  -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.216);
  box-shadow: 0 1px 30px rgba(193, 213, 243, 0.383);
}

.package-box h2 {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -1px;
  font-family: "Arimo", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  line-height: 30px;
}

.package-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
}

.package {
  width: 30%;
}

.package h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: capitalize;
  font-family: "Boldonse", system-ui;
  padding-top: 2rem;
}

.package ul {
  padding-left: 10px;
}
.package ul li {
  list-style-type: none;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  padding: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.side-box {
  background-color: #1b263b;
  border-radius: 20px;
  padding: 30px;
  flex: 1;
}

.side-box h3 {
  color: var(--secondary);
  margin-bottom: 10px;
}

.side-box p {
  margin-bottom: 20px;
  color: var(--primary);
}

.button {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  font-weight: normal;
  display: inline-block;
}

/* -----------------------------------
testimonials
---------------------------- */
.sec-tes {
  margin-top: 300px;
  height: 100%;
}

.testimonial-slider {
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: hidden;
  top: 200px;
  padding: 5rem 0;
}

.testimonial {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, #f0efe7, #fff);
  border-radius: 12px;
  padding: 5rem;
  gap: 2rem;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  flex: 1;
}

.testimonial-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.testimonial-content {
  flex: 1.2;
  text-align: left;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  bottom: 100%;
  width: 100%;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;

  border: 1px solid var(--primary);
}

.author-photo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.author-text h4 {
  margin: 0;
  font-family: "Kanit", sans-serif;
  letter-spacing: 0.5px;
  color: var(--gray-700);
  font-size: 1.5rem;
  cursor: pointer;
}

.author-text p {
  font-size: 0.85rem;
  color: #555;
  cursor: pointer;
}

.quote {
  font-size: 1rem;
  font-family: "Boldonse", system-ui;
  letter-spacing: 0.6px;
  color: var(--text);
  position: relative;
  cursor: pointer;
}
.quote i {
  position: absolute;
  top: -50px;
  font-size: 3rem;
  right: 30px;
  color: var(--accent);
}

.slider-controls {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #071f4f;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary-alt);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.nav-button.left {
  left: -10px;
}

.nav-button.right {
  right: -10px;
}

/* -----------------------------------
contact
-------------------------------------- */






.project-cta{
  width:100%;
  margin: 5rem 0;
  height:80vh;
  background:url('/asset/conb.jpeg') no-repeat center center/cover;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 7vw;
}

.project-content{
  max-width:1000px;
  width:100%;
}

.project-content h1{
  font-size:70px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:25px;
  line-height:1;
    font-family: "Arimo", sans-serif;

}

.project-content p{
  color:#dcdcdc;
  font-size:18px;
  line-height:1.6;
  margin-bottom:40px;
  max-width:550px;
  margin-inline:auto;
}

.btn-row{
  display:flex;
  gap:20px;
  justify-content:center;
  margin-bottom:30px;
}

.btn{
  padding:18px 40px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
}

.btn.primary{
  background:var(--secondary);
  color:#000;
}

.btn.secondary{
  background:var(--primary);
  color:var(--text);
}

.founder-info{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-bottom:25px;
}

.founder-info img{
  width:45px;
  height:45px;
  border-radius:50%;
  object-fit:cover;
}

.founder-info h4{
  color:var(--primary);
  font-size:18px;
  margin:0;
  font-weight:600;
}

.founder-info span{
  color:var(--tetiary);
  font-size:13px;
}


/* MOBILE */
@media(max-width:850px){

  .project-cta{
    height:auto;
    padding:70px 6vw;
  }

  .project-content h1{
    font-size:40px;
    line-height:1.15;
    margin-bottom:10px;
  }

  .founder-info{
    margin-bottom:25px;
  }

  .project-content p{
    font-size:15px;
    width:90%;
    margin-bottom:35px;
  }

  .btn-row{
    flex-direction:column;
  }

  .btn{
    width:100%;
    max-width:290px;
    margin-inline:auto;
  }
}
























#contact {
  margin-top: 100px;
  height: 100vh;
  margin-bottom: 100px;
}

.contact .cont-form {
  margin-top: 70px;
  width: 100%;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 2fr));
}

.contact .cont-form .form-lft {
  padding: 2rem;
  width: 100%;
}

.contact .cont-form .form-rgt .hed-tit h4 {
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

.contact .cont-form .form-rgt .hed-tit {
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.contact .cont-form .form-rgt {
  padding: 2rem;
  height: 450px;
  margin-top: 100px;
  text-align: left;
  justify-content: start;
}

.contact .cont-form .form-rgt .titleb {
  height: 60px;
  margin: 0.5rem;
  width: auto;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.contact .com-info {
  padding: 1rem;
}

.contact .com-info h6 {
  font-weight: 400;
  font-size: 18px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
}

.contact .com-soc {
  width: 100%;
  padding: 5px;
}

.contact .com-soc a i {
  font-size: 20px;
  color: var(--text);
  padding-right: 2rem;
  cursor: pointer;
}
.contact .cont-form .form-lft .cont-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 1rem;
}
.contact .cont-form .form-lft .input-wrap ::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.contact .cont-form .form-lft .input-wrap.w-100 {
  grid-column: span 2;
}

.input-wrap {
  position: relative;
}

.contact .cont-form .form-lft .input-wrap .cont-inp {
  padding: 1rem 1rem;
  font-family: "Kanit", sans-serif;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 40px;
  color: var(--gray-400);
  font-weight: 600;
  transition: 0.5s ease;
  border: 2px solid transparent;
  box-shadow: 0 1px 3px var(--secondary);
}



.contact .cont-form .form-lft .input-wrap .icon {
  position: absolute;
  top: 50%;
  right: calc(1.35rem + 2px);
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-light);
  font-size: 1.25rem;
  transition: 0.3s;
}

.contact .cont-form .form-lft .input-wrap textarea {
  resize: none;
  width: 100%;
  min-height: 150px;
}

.contact .cont-form .form-lft .input-wrap.focus .cont-inp {
  background-color: var(--primary);
  border: 2px solid var(---btn);
}

.contact .cont-form .form-lft .input-wrap.focus .icon {
  color: var(--secondary);
}

.contact .cont-form .form-lft {
  height: 80vh;
}

.contact .cont-form .cont-butt .btn-prj {
  border: none;
  text-transform: uppercase;
  padding: 15px 30px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  font-size: 16px;
  color: var(--text);
  border-radius: 50px;
  background-color: var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  outline: none;
}


.contact .cont-form .cont-butt .btn-prj:active {
  transform: translateY(2px);
  box-shadow:
    inset 4px 4px 4px #00050d,
    inset -4px -4px 10px #022a45;
  color: #00aacc;
}

.titleb input[type="checkbox"]:hover {
  transform: scale(1.08);
}

.titleb input[type="checkbox"]:checked:after {
  font-weight: 900;
  content: "\f058";
  color: var(--secondary);
}

.titleb input[type="checkbox"]:after {
  position: absolute;
  font-family: "font awesome 6 free";
  font-weight: 400;
  content: "\f111";
  font-size: 19px;
  padding: 10px;
  color: var(--tetiary);
}

.titleb input[type="checkbox"] :checked + label {
  animation: grow 0.5s;
}

@keyframes grow {
  50% {
    font-size: 80px;
  }
}

.titleb input[type="checkbox"] {
  -webkit-appearance: none;
  position: relative;
  height: 100%;
  width: 100%;
  cursor: pointer;
  border: 3px solid transparent;
  outline: none;
  border-radius: 10px;
  box-shadow: 4px 15px 15px 25px rgba(247, 249, 233, 0.02);
}

.titleb label h5 {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  color: var(--gray-400);
  text-transform: capitalize;
  font-size: 18px;
}

.titleb label {
  display: flex;
  flex-direction: column;
  margin-left: 3rem;
  text-align: left;
  justify-content: center;
  height: 80%;
  position: absolute;
  bottom: 0;

  width: 100%;
}

/* -------------------------------------
footer
----------------------------------------- */

.foot-sec {
  background: var(--primary);
  display: flex;
  flex-wrap: wrap;
  padding: 3rem;
  margin-top: 200px;
  height: auto;
  justify-content: space-between;
}

.foot-sec .logo {
  width: 300px;
}
.foot-sec .logo img {
  width: 100%;
}

.foot-sec .links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.foot-sec .links ul h4 {
  font-weight: 300;
  color: var(--gray-400);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}
.foot-sec .links ul li {
  list-style-type: none;
  color: var(--txt-alt);
  font-family: "Kanit", sans-serif;
  font-size: 18px;
  padding-left: 15px;
  text-transform: capitalize;
}

.foot-sec .social {
  cursor: pointer;
  padding: 10px;
}
.foot-sec .social a {
  margin-right: 20px;
}
.hr {
  height: 1px;
  width: 100%;
  background-color: var(--gray-600);
}
.all-right {
  padding: 1rem;
  text-align: center;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.all-right h4 {
  color: var(--neutral);
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  font-weight: 400;
}

/* ------------------------------
ABOUT PAGE
----------------------------------- */
.ab-hm {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  position: relative;
  justify-content: left;
  align-items: center;
  width:100%;
  height:100vh;
  padding: 0 2rem;
  background:url('/asset/conb.jpeg') no-repeat center center/cover;


}
.ab-hd {
  z-index: 10;
  transform: translateY(150px);
}
.ab-hm .ab-hd button {
  padding: 18px 40px;
  font-size: 28px;
  font-family: "roboto", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--neutral);
  background-color: var(--secondary);
  outline: none;
  border-radius: 10px;
  border: none;
  pointer-events: none;
  margin: 2rem 0;
}

.ab-hm .ab-hd h1 {
  font-family: "Arimo", sans-serif;
  font-size: 80px;
  font-weight: 700;
  width: 70%;
  color: var(--primary);
}
.ab-img {
  position: relative;
  right: -700px;
  width: 700px;
  top: -550px;
}
.ab-img img {
  position: absolute;
  width: 700px;
}

.ic-dwn {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  top: 80px;
  display: flex;



  
}
.ic-dwn .dwn-con {
  padding: 25px 10px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secondary);
  border-radius: 25px;
}

.dwn-con i {
  color: var(--txt-alt);
  font-size: 18px;
  transition: 0.5s ease-in-out;
  animation: upDown 2s ease-in-out infinite;
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px); /* Move up */
  }
  100% {
    transform: translateY(0); /* Move back to original position */
  }
}

.ab-bd-con {
  position: relative;
  text-align: left;
  justify-content: center;
  padding: 0 3rem;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 80vh;
}
.bd-co1 {
  text-align: left;
  justify-content: start;
  align-items: center;
  width: 35%;
  padding-right: 1rem;
}
.bd-co1 h1 {
  font-family: "roboto", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--neutral);
}
.bd-co2 {
  text-align: left;
  justify-content: start;
  align-items: center;
  width: 65%;
}
.bd-co2 p {
  letter-spacing: 0.5px;
  font-size: 17px;
  font-weight: 400;
  padding-bottom: 2rem;
  color: var(--neutral);
}

.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
}

.stat-box {
  background: var(--accent);
  padding: 3rem;
  flex: 1;
  border-radius: 15px;
  text-align: center;
  min-width: 150px;
}

.counter {
  font-size: 6rem;
  font-weight: 700;
  font-family: "roboto", sans-serif;
  display: block;
  color: var(--txt-alt);
  text-align: left;
  justify-content: center;
  align-items: center;
}

.stat-box p {
  margin-top: 0.5rem;
  color: var(--txt-alt);
  text-align: left;
}
.ab-prt-img {
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}
.ab-prt-img img {
  flex: 1;
  width: 130px;
}
.ab-prt-img img:nth-child(9) {
  width: 100px;
}

.ab-prt {
  margin-top: 100px;
  text-align: left;
}
.ab-prt h1 {
  font-family: "roboto", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--neutral);
}
.ab-prt-txt {
  margin-bottom: 2rem;
}

.our-tem {
  display: flex;
  height: 50vh;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  margin-top: 150px;
  margin-bottom: -200px;
  overflow: hidden;
  box-shadow:
    0px 0px 10px #393939,
    0px 0px 15px #a9baff3a;

  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px 5rem;
}
.our-tem img {
  position: absolute;
  left: -300px;
  top: -400px;
}
.our-tem h1 {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  text-transform: capitalize;
  text-align: left;
  padding: 2rem 3rem;
  letter-spacing: 0.6px;
}
.tem-img {
  position: relative;
}
.our-tem .tem-but {
  position: relative;
}
.our-tem .tem-but h4 {
  color: var(--neutral);
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: left;
  justify-content: start;
  padding: 10px 0;
}
.our-tem .tem-but a button {
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  color: var(--txt-alt);
  margin-top: 1rem;
  outline: none;
  cursor: pointer;
  border: none;
  background: var(--accent);
}


@media screen and (max-width:540px){

 
  .ab-hm{
    height: 100vh;
  }
  .ab-hm .ab-hd h1 {
  font-size: 30px;
  width: 100%;
}
.ab-hm .ab-hd button {
  padding: 14px 30px;
  font-size: 20px;
 
}

}
/* --------------------------------------
projects page
---------------------------------- */
#stores {
  padding: 2rem 0.5rem;
}

.proj-pg {
  margin-top: 200px;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 25px;
}
.st-box {
  width: 400px;
  border: 1px solid var(--accent-bl);
  padding: 15px;
  justify-content: left;
  display: block;
  align-items: center;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s ease;
}
.sal .st-box .et-bx-img {
  height: 400px;
}
.sal .st-box .et-bx-img img {
  height: 400px;
}
.st-box:hover {
  background: var(--secondary);
  border: 2px solid var(--accent-bl);
}
.st-box .et-bx-img {
  padding-right: 15px;
  width: 370px;
  height: 230px;
  overflow: hidden;
  background: var(--primary);
}
.st-box .et-bx-img img {
  width: 370px;
  height: 230px;
  object-fit: cover;
}

.et-tx-tit {
  display: flex;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.et-tx-tit h4 {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--txt-alt);
  padding-right: 10px;
}
.et-tx-tit span {
  background: var(--gray-400);
  font-family: "Boldonse", system-ui;
  padding: 5px 15px;
  font-size: 8px;
  font-weight: 100;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-left: 20px;
}
.et-tx-bd {
  text-align: left;
  align-items: center;
  padding: 18px 0;
}
.et-tx-bd h3 {
  color: var(--gray-500);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.et-ft-lk a {
  text-transform: uppercase;
}

/* 0-----------------------
thank you
----------------------------- */
.thk-sec {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  width: 100%;
  height: 100vh;
}

.sussc {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  max-height: 500px;
  height: 350px;
  width: 350px;
  border-radius: 30px;
  background: var(--neutral);
  overflow: hidden;
  -webkit-box-shadow: 0 1px 10px rgba(238, 238, 238, 0.216);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.216);
  box-shadow: 0 1px 10px rgba(165, 168, 225, 0.326);
}

.section .sussc .pulse {
  justify-content: center;
  text-align: center;
  align-items: center;
  display: flex;
  padding: 3rem;
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 50px;
}

.section .sussc .pulse span {
  position: absolute;
  height: 70px;
  max-width: 60px;
  width: 70px;
  padding: 3rem;
  background: inherit;
  border-radius: 50px;
  opacity: 0.5;
  animation: pulseanimate infinite 2s ease-out 2s;
}

@keyframes pulseanimate {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.section .sussc .pulse i {
  font-size: 40px;
  color: #fff;
  z-index: 99;
}

.section .sussc .succ-tx {
  max-width: 300px;
  width: 100%;
}

.section .sussc .succ-tx h4 {
  font-size: 20px;
}

.section .sussc .succ-tx i {
  padding-top: 1rem;
  text-align: center;
}

.succ-tx a {
  color: var(--text-light);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
#portfolio {
  height: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.port-slide {
  position: relative;
  height: 600px;
  margin: auto;
  place-items: center;
  display: grid;
  cursor: grab;
  width: 100vw;
  overflow: scroll;
}

.port-slide::-webkit-scrollbar {
  width: 0em;
  display: none;
}

.port-slide::-webkit-scrollbar-track {
  border: none;
  display: none;
}

.port-slide::-webkit-scrollbar-thumb {
  display: none;
}

.port-slide .p-slide-track {
  display: flex;
  width: calc(250px * 16);
  animation: scroll 20s linear infinite;
}

/*   .p-slide-track:hover {
  animation-play-state: paused;
} */

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-250px * 8));
  }
}
.p-slide-track:hover {
  animation-play-state: paused;
}
.port-slide .p-slide-track .slide .ti h3 {
  font-size: 15px;
  color: var(--txt-alt);
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
}

.port-slide .p-slide-track .slide {
  height: 500px;
  width: 500px;
  display: flex;
  align-items: center;
  padding: 2px;
}

.port-slide img {
  width: 100%;
  border: 2px solid var(--accent);
}

#portfolio .comp-afr {
  padding: 0 1rem;
  width: 100%;
}

#portfolio .afr-bord {
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
  text-align: center;
  width: 100%;
  background: var(--accent);
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 10px rgba(27, 27, 27, 0.462);
  -moz-box-shadow: 10px 10px 10px rgba(43, 42, 42, 0.638);
  box-shadow: 10px 10px 10px rgba(163, 163, 163, 0.216);
  margin-top: -70px;
}

#portfolio .afr-bord .brd-cont {
  border-right: 2px solid #fff;
  padding: 1.2rem;
  height: 250px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#portfolio .afr-bord .brd-cont:nth-child(3) {
  border: none;
}

#portfolio .afr-bord .brd-cont h5 {
  font-family: "roboto", sans-serif;
  color: #fff9fb;
  letter-spacing: 0.4px;

  font-weight: 500;
}

#portfolio .afr-bord .brd-cont h1 {
  /*  font-family: 'Prompt', sans-serif; usable
*/
  font-family: "roboto", sans-serif;
  letter-spacing: 0.5px;
  color: var(--txt-alt);
  font-weight: 700;
  font-size: 4rem;
}

@media (max-width: 769px) {
  #portfolio .afr-bord {
    display: block;
    width: 100%;
  }

  body::-webkit-scrollbar {
  width: 0px;
}

  #portfolio .afr-bord .brd-cont {
    border-bottom: 2px solid #fff;
    border-right: none;
  }

  .thk-sec {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    width: 100%;
    height: 100vh !important;
  }
  .nav-menu_des{
    display: none;
    visibility: hidden;
  }
  /* -------------------------------
  projects
  --------------------------- */
  .st-box .et-bx-img img {
    width: 330px;

    object-fit: cover;
  }
  #stores {
    padding: 10px;
  }
  .st-box {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
  }
  .proj-pg {
    padding: 10px;
    margin-top: 100px;
  }
  /* ------------------------
  about page
  -------------------- */
  .our-tem .tem-but h4 {
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    text-align: left;
    justify-content: start;
    padding: 10px;
  }
  .our-tem h1 {
    font-size: 2rem;
    text-transform: capitalize;
    text-align: left;
    padding: 20px;
  }
  .our-tem {
    display: block;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 1px;
    text-align: left;
    width: 100%;
    padding: 20px;
  }
  .our-tem img {
    position: absolute;
    left: -10px;
    top: -450px;
  }

  .stats-section {
    display: block;
  }
  .stat-box {
    background: var(--accent);
    padding: 3rem 1rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }

  .counter {
    font-size: 5rem;
  }

  .bd-co1 {
    width: 100%;
    padding: 1rem;
  }
  .bd-co1 h1 {
    font-family: "roboto", sans-serif;
    font-size: 50px;
  }
  .bd-co2 {
    padding: 1rem;
    width: 100%;
  }
  .bd-co2 p {
    font-size: 17px;
    padding-bottom: 2rem;
  }
  .ab-bd-con {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    top: 50px;
  }

  .ic-dwn {
    height: 10vh;
  }

  .ab-img {
    right: -150px;
    width: 75%;
    top: -400px;
  }
  .ab-img img {
    position: absolute;
    width: 150%;
  }

  .ab-hd {
    transform: translateY(100px);
    padding-bottom: 2rem;
  }
  .ab-hm .ab-hd button {
    padding: 15px 25px;
    font-size: 22px;
  }

 


  /* footer */
  .foot-sec {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    padding: 10px;
  }
  .foot-sec .links ul {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: start;
    align-items: start;
    padding: 30px 0;
  }
  /* footer */
  /* contact */
  .contact .cont-form .cont-butt .btn-prj {
    padding: 17px 30px;

    margin: 20px;

    width: 250px;
    display: flex;
    text-align: center;
    justify-content: center;
  }

.contact .cont-form {

  display: block;
 
 
}


  .contact .cont-form {
    margin-top: 40px;
  }
  .contact .cont-form .form-rgt {
    margin-top: 50px;
  }

  .contact .cont-form {
    padding: 0;
    width: 100%;
  }

  .contact .section-title h2 {
    font-size: 20px;
  }

  .contact .cont-form .form-lft {
    padding: 0 !important;
    height: 80vh;
  }

  /* contact */
  /* testimonials */
  .testimonial-slider {
    top: 80px;
  }
  .testimonial {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .sec-tes {
  margin-top: 200px;
}
  .testimonial-content {
    padding: 1rem 0;
  }

  .nav-button.left {
    left: 0;
  }

  .nav-button.right {
    right: 0;
  }

  .quote i {
    display: none;
  }
  .quote {
    font-size: 0.9rem;
  }
  .nav-button {
    top: 40%;
    transform: translateY(-60%);
  }

  /* testimonial  */
  .man-con {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .package {
    width: 100%;
    margin-top: 1rem;
  }
  .package-list {
    display: block;
    width: 100%;
  }
  .package-box {
    height: auto;
  }

  .main-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 0 10px;

    top: 200px;
  }

  .services-section {
    margin-top: 2rem;
  }

  .section {
    padding: 0.5rem;
  }

  .hero {
    margin: 0 2rem;
  }

  .hero-con .hr-cn-btn {
    display: flex;
    flex-direction: column;
  }

  /* ---------------------------------
    logo slide
    --------------------------------- */
  .row img {
    width: 120px;
    margin-left: 2rem;
  }

  .row {
    padding: 25px 0;
    gap: 20px;
    animation: slide 8s linear infinite;
  }

  @keyframes slide {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-200%);
    }
  }
}

@media (min-width: 340px) and (max-width: 800px) {
  /*----------------------------
  header
  ------------------------------ */
  .hd-cont {
    margin: 0 0.5rem;
  }
  
  .hd-cont .logo {
    max-width: 100px;
    margin-left: 0rem;
        z-index: 999;

  }

  .hd-cont .logo img {
    width: 70px;
  }
  
  @media (min-width: 340px) and (max-width: 769px) {
    .hd-cont {
  
  padding: 10px;
}
 .hd-cont .logo .des_loo{
  display: none;
 }
  .hd-cont .logo .mob_loo{
    display: flex;
    visibility: visible;
    width: 45px;
  }
 .nav-togg{
  display: block;
  visibility: visible;
}
.nav-menu {
  display: flex;
  visibility: visible;

}


  }
  /* ------------------------------------------
menu icon 
--------------------------------------------*/
  .nav-menu {
    right: -420px;
    width: 420px;
    height: 100vh;
    padding-top: 10rem;
    padding-left: 15px;
  }
  .nav-menu i{
    font-weight: 200;
  }

  /* 
    ----------------------
    hero
    ----------------------
     */

  .hero {
    padding: 20px;
    margin: 0px;
    justify-content: center;
  }

  .hero-con h1 {
    font-size: 28px;
    letter-spacing: 0.5px;
  }

  .hero-con p {
    font-size: 14px;
  }

  .hero-con .hr-cn-btn {
    margin-top: 1rem;
  }

  .hero-con img {
    max-width: 200px;
    width: 200px;
  }

  .hero-con .hr-cn-btn .cn-bt2 {
    margin-top: -15px;
  }

  /* 
    ----------------------------
    sections
    ----------------------------------- */
  .section {
    height: auto;
  }

 

  .prj-sec {
    position: relative;
    top: 80px;
    height: auto;
  }

  .prj-sec .prj-vid video {
    width: 100vw;
  }

  .prj-bt-con .btn-prj {
    padding: 15px 45px;
    font-size: 19px;
    letter-spacing: 1px;
  }

  .prj-sec .prj-img img {
    max-width: 100%;
    height: auto;
  }
}
