@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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&family=Open+Sans:ital,wght@0,300..800;1,300..800&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&family=Volkhov:ital,wght@0,400;0,700;1,400;1,700&display=swap');


:root {
  --primary-bg: #fff;
  --navbar-link: #0E1F51;
  --navbar-link-hover: #FC7600;
  --logo-h: #c3d100;
  --logo-w: #3a8ecf;
  --logo-s: #e13a3a;
  --btn-orange: #FC7600;
  --heading: #131313;
  --body-text: #828282;
}

/*==============================================
   Base Css
===============================================*/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

html,
body {
  height: 100%;
}

body {
  color: var(--body-text);
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  font-family: 'Bai Jamjuree', sans-serif;
  overflow-x: hidden !important;
}

button:focus {
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  font-weight: 700;
  font-family: 'Bai Jamjuree', sans-serif;
  margin: 0;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
  border: none;
}

/* Navbar Styles */
.custom-navbar {
  position: relative;
  transition: box-shadow 0.3s, background 0.3s;
}

.custom-navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  background: var(--primary-bg);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  position: fixed;
}

.logo-circles {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-bg);
  font-family: 'Bai Jamjuree', sans-serif;
}

.circle-h {
  background: var(--logo-h);
  color: var(--primary-bg);
}

.circle-w {
  background: var(--logo-w);
  color: var(--primary-bg);
}

.circle-s {
  background: var(--logo-s);
  color: var(--primary-bg);
}

.navbar-nav .nav-link {
  color:var(--heading);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0.7rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--navbar-link-hover);
}

.btn-orange {
  background: var(--btn-orange);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 18px;
  transition: background 0.2s;
  border: 1px solid transparent;
  letter-spacing: 0.5px;
}

.btn-orange:hover {
  background: var(--navbar-link);
  color: #fff;
  border: 1px solid transparent;
}
.navbar .btn-orange {
  padding: 9px 20px;
  font-size: 16px;
}
/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -360px;
  width: 320px;
  height: 100vh;
  background: var(--heading);
  z-index: 2000;
  transition: left 0.3s cubic-bezier(.4, 0, .2, 1);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  color: var(--primary-bg);
  font-size: 2rem;
  position: absolute;
  align-self: flex-end;
  margin-bottom: 1.5rem;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.mobile-nav li {
  margin-bottom: 1.2rem;
}

.mobile-nav a {
  color: var(--primary-bg);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--btn-orange);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1500;
}

.overlay.active {
  display: block;
}

/* Hide mobile menu and toggler on desktop */
@media (min-width: 992px) {

  .mobile-menu,
  .overlay,
  .navbar-toggler {
    display: none !important;
  }

  .navbar-collapse {
    display: flex !important;
  }
}

/* Show mobile menu and toggler on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar-toggler {
    display: block !important;
    border: none;
    background: none;
    color: var(--heading);
    font-size: 2rem;
    margin-left: auto;
  }

  .btn-orange {
    width: 100%;
    margin-top: 1rem;
  }
}

.title {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 10px;
  margin: 0;
}

.sub-title {
  font-size: 16px;
  font-weight: 500;
}

/* Hero Section Styles */
.hero-section {
  background: url(../images/hero-bg.png);
  position: relative;
  overflow: hidden;
  padding:50px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.okbaju{
  background: linear-gradient(180deg, #134D2526 0%, #FC760026  100%);
}
.storise{
  
  background: linear-gradient(180deg, #009A4A40 0%, #00000040 100%);

}
.jobset{
  background: linear-gradient(180deg, #009A4A40 0%, #00000040 100%);

}
.storise .portfolio-logo{
width: 150px;
}
.jobset .portfolio-logo{
width: 150px;
}

.portfolio-hero-section-main {
  
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 60px 0 60px 30px;
  /* min-height: 100vh; */
}

.hero-section-main {
  
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 60px 0 60px 0px;
  /* min-height: 100vh; */
}
.portfolio-hero-img{
  width: 100%;
}
.hero-content {
  z-index: 2;
  position: relative;
}

.hero-subtitle {
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  display: inline-block;
  border-left: 4px solid var(--btn-orange);
  border-radius: 3px;
  padding: 5px 20px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--btn-orange);
}

.hero-btn {
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  border-radius: 8px;
}

.hero-features {
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 18px;
  color: var(--heading);
  font-weight: 600;
}

.feature-icon {
  width: 28px;
  height: 28px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.main-hero-img {
  max-width: 100%;

}

.highlight,
#hero-animated-text {
  transition: opacity 0.5s;
  display: inline-block;
}

#hero-animated-text {
  display: inline-block;
  border-right: 2px solid var(--btn-orange);
  white-space: nowrap;
  overflow: hidden;
  /* Only keep the caret blink animation, remove typing animation */
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--btn-orange);
  }
}

/* About Section Styles */
.about-section {
  background: #F6F6F6;
  position: relative;
  padding: 60px 0px;
}

.shap-img {
  position: absolute;
  left: -22px;
  max-width: 200px;
  top: -26px;
  animation: floatY 3s ease-in-out infinite alternate;
}

.shap-img2 {
  position: absolute;
  left: auto;
  right: -4px;
  bottom: -35px;
  max-width: 200px;
  animation: floatY 3s 1.5s ease-in-out infinite alternate;
}

@keyframes floatY {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-20px);
  }
}

.about-label {
  color: #ff8800;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  line-height: 1.4rem;
  margin-bottom: 0.5rem;
}

.about-img {
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Planning Section Styles */
.planning-section {
  background: #EDECFD;
  padding: 60px 0px;
}

.planning-section .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-card {
  background: #F7F7F7;
  border-radius: 10px;
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.07); */
  padding: 20px;
  position: relative;
  /* min-height: 320px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  border: 2px solid #fff;
}

/* .process-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
} */
.process-icon {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.process-icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 0px;
}

.process-step {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 48px;
  color: #E3E4EC;
  font-weight: 700;
  z-index: 0;
  pointer-events: none;
}

.process-title {
  font-size: 20px;
  font-weight: 700;
  color: #14213D;
  margin-bottom: 8px;
  z-index: 1;
}

.process-underline-flex {
  display: flex;
  gap: 10px;
  align-items: center;
}

.process-underline {
  width: 48px;
  height: 6px;
  background: #FC7600;
  border-radius: 3px;
  margin-bottom: 4px;
  margin-top: 5px;
}

.process-underline-flex .process-underline:nth-child(2) {
  width: 20px;
}

.process-desc {
  color: #5B5B5B;
  font-size: 1rem;
  margin-top: 8px;
  z-index: 1;
}


/* Services Section Styles */
.planning-section.services-section {
  background-color: var(--primary-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.service-card {
  background: linear-gradient(180deg, #FFFFFF 60%, #FEFDEE 100%);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 417px;
  border: 1px solid rgba(163, 163, 163, 0.14);
  position: relative;
}
.service-card.bg-color {
  background: linear-gradient(180deg, #FFFFFF 60%, #D9FEFF 100%);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../images/service-img.png') no-repeat center center;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.service-icon {
  background: #ffffff;
  padding: 10px;
  box-shadow: 0px 0px 4px rgba(252, 118, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  width: fit-content;
  z-index: 1;
  margin-bottom: 15px;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  margin-bottom: 0px;
  fill: var(--btn-orange);
}

.service-card h3 {
  font-size: 23px;
  font-weight: 700;
  color: var(--navbar-link);
  margin-bottom: 10px;
}

.service-card ul {
  padding-left: 0;
  margin-bottom: 0;
}

.service-card ul li {
  will-change: inherit;
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card ul li span svg {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  fill: var(--btn-orange);
}

.tech-stack {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  z-index: 1;
  justify-content: space-between;
  width: 100%;
}

.tech-stack-name {
  display: grid;
  text-align: center;
  gap: 5px;
  justify-content: center;
}

.tech-stack img {
  object-fit: contain;
  max-width: 54px;
  margin: auto;
}
.tech-card svg {

  width: 20px;
  height: 20px;
  object-fit: contain;

}

span.svg-img {
  width: fit-content;
  margin: auto;
}



/* technology Section Styles */
.planning-section.technology-section {
  background-color:#F6F6F6;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  align-items: center;
  background-color: var(--primary-bg);
  border: 1px solid rgba(163, 163, 163, 0.14);
  border-radius: 10px;
  overflow: hidden;
  border-left: 0px;
  border-bottom: 0px;
}

.tech-card {
  background: #fff;
  border-left:1px solid #eee;
  border-bottom:1px solid #eee;
  border-radius: 0px;
  padding: 24px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  width: 100%;
}
.tech-card img{
  max-width:67px;
}


.tech-card .svg-img{
  margin-bottom: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.tecno-hedding {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3a3a3a;
}
.tech-card span {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  text-align: center;
}
/* .tecno-hedding svg{

} */


/* Portfolio Section Styles */

 .tabs {
  display: flex;
  gap: 10px;
  margin: 24px 0 32px 0;
  justify-content: center;
  background: #EAEAEA;
  width: fit-content;
  margin: auto;
  padding: 15px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
  margin-top:20px;
}

.tab-btn {
  background: #f5f5f5;
  border: none;
  padding: 10px 50px;
  font-size: 16px;
  border-radius:26px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: #333;
  font-weight:700;
  border:2px solid transparent;
  box-shadow: 0px 0px 4px var(--primary-bg);
}
.tab-btn.active {
  background: var(--btn-orange);
  color: #fff;
  border:2px solid #fff;
  box-shadow: 0px 0px 4px rgba(252, 118, 0, 0.4);
}

/* ---- Grid ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

/* ---- Card ---- */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.10);
  padding: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #ffffff;
}
.card-content {
  padding: 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  margin: 16px 0 4px 0;
  font-size: 21px;
  font-weight: 700;
  color: #232323;
}
.card-badge {
  color: var(--btn-orange);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  display: inline-block;
  text-decoration: underline;
}
.card-desc {
  color: #9F9F9F;
  font-size: 16px;
  margin-bottom: 5px;
  min-height: 62px;
}
.card-btn {
  align-self: flex-start;
  background: var(--btn-orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s;
  text-decoration: none;
}
.card-btn:hover {
  background: #e67c00;
}
/* contact Section Styles */
.contact-form, .contact-info {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(163, 163, 163, 0.14);
}
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.subtitle {
  color: orange;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 0;
}
form input, form textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 15px 14px;
  font-size: 1rem;
  background: #f3f3f3;
  transition: background 0.3s;
  outline: none;
  resize: none;
  font-weight: 500;
  color: #767676;
}
form textarea {
  height: 100px;
}
form button {
  background: orange;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  height: fit-content;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s;
}
form button:hover {
  background: #e06500;
}
.info-item {
  display: flex;
  align-items: start;
  margin-bottom: 24px;
}
.info-item .svg-icon {
  margin-right: 15px;
  margin-top: 2px;
  background: #F7F7F7;
  border-radius: 10px;
  padding: 15px;
}
.info-item .svg-icon svg {
  width: 40px;
  height: 40px;
}
.info-label {
  font-weight: 700;
  color: var(--btn-orange);
  margin-bottom: 4px;
  font-size: 20px;
}
.info-text, .info-label {
  display: block;
  font-size: 1rem;
  
}
.social-list {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  justify-content: center;
}
.social-list a {
  background: var(--btn-orange);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}
.social-list a svg{
width: 24px;
height: 24px;
}
.social-list a:hover {
  background: #ff9800;
}
.follow-us {
  font-weight: 700;
  margin-top:0px;
  margin-bottom: 2px;
  text-align: center;
  color: #000;
}

.blogSwiper {
  padding: 30px 0 0px;
}
.swiper-slide.blog-card {
  background: #fff;
  border-radius: 14px;
  /* box-shadow: 0 8px 36px rgba(0,0,0,0.07); */
  padding: 24px;
  /* margin: 0 8px; */
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgb(124 120 120 / 14%);
}
.blog-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
  height: 180px;
}
.blog-card-title {
  color: #F39200;
  font-size: 1.17rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-card-desc {
  color: #818181;
  font-size: 0.99rem;
  margin-bottom: 22px;
  line-height: 1.6;
  flex-grow: 1;
}
.blog-card-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.blog-author {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}
.blog-author-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 7px;
  object-fit: cover;
  border: 2px solid #eee;
}
.blog-date {
  color: #bababa;
  font-size: 0.93rem;
}
.swiper-button-next,
.swiper-button-prev {
  color: orange;
  width: 43px;
  height: 43px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(243,146,0,0.14);
  top: 54%;
  transform: translateY(-54%);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: 900;
}

/* Blog Grid Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgb(124 120 120 / 14%);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.1);
}

.blog-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
  height: 180px;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  color: #F39200;
  font-size: 1.17rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.blog-card-desc {
  color: #818181;
  font-size: 0.99rem;
  margin-bottom: 22px;
  line-height: 1.6;
  flex-grow: 1;
}

.blog-card-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog-author {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}

.blog-author-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 7px;
  object-fit: cover;
  border: 2px solid #eee;
}

.blog-date {
  color: #bababa;
  font-size: 0.93rem;
}

/* Responsive Blog Grid */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 25px 0;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns:  repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
  }
  
  .blog-card {
    padding: 20px;
  }
  
  .blog-card-title {
    font-size: 1.1rem;
  }
  
  .blog-card-desc {
    font-size: 0.95rem;
  }
}

.footer {
  background-image: url(../images/footer-img.png);
  padding: 60px 0px 10px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.logo {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.circle {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  font-size: 18px;
}

.blue { background-color: #9dd92b; }
.green { background-color: #00b2e0; }
.red { background-color: #e63838; }

.company-name {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.highlight { color: #00b2e0; }
.highlight-red { color: #e63838; }

.description {
  font-size: 16px;
  line-height: 1.5;
  color: #ddd;
  margin: 15px 0;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  background: #fff;
  color: #ff6600;
  padding: 10px;
  border-radius: 10px;
}

.column-title {
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  color: var(--primary-bg);
}

.column-title::after {
  content: "";
  width: 40px;
  height: 4px;
  background: #ff6600;
  display: block;
  margin-top: 12px;
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  background: none;
  border: none;
}
.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff6600;
}

.footer-column ul li {
  margin: 8px 0;
  color: #ccc;
  font-size: 16px;
}

.contact-info svg{
  fill: var(--primary-bg);
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.social-icons a {
  padding: 10px;
  background-color: var(--btn-orange);
  border-radius: 10px;
}
.social-icons a svg {
  width: 25px;
  height: 25px;
  fill: var(--btn-orange);
}
.popup-flex {
  display: flex;
  align-items: center;
  gap: 24px;
}


.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup .title {
  font-size: 30px;
  line-height: 40px;
}
.popup .sub-title{
  font-size: 16px;
  font-weight: 500;
  color: #5C5C5C;
}
.popup.show {
  display: flex;
  animation: zoomIn 0.3s forwards;
}

.popup.hide {
  animation: zoomOut 0.3s forwards;
}

.popup-content {
  background: #fff;
  padding: 24px 20px 20px 20px;
  width:800px;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(0,0,0,0.28);
  position: relative;
  text-align: center;
  max-width: 90%;
}

.popup-close {
  position: absolute;
  top: -17px;
  right: -12px;
  cursor: pointer;
  font-size: 22px;
  color: #333;
  background: var(--btn-orange);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-bg);
}
@keyframes zoomIn {
  0%   { transform: scale(0.6); opacity: 0; }
  80%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes zoomOut {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.6); opacity: 0; }
}

.popup form input, .popup form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background: #fff;
}

.popup form button {
  width: 100%;
  padding: 10px;
  background-color: #ff6600;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.22s;
}

form button:hover {
  background-color: #e65500;
}


.portfolio-hero-section{
    background: url(../images/portfolio-hero-section.png);
     position: relative;
  overflow: hidden;
  padding:60px 0 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.hedding {
  margin:10px 0 ;
}
.hedding .process-underline {
  width: 60px;
  height: 6px;
  background: #FC7600;
  border-radius: 3px;
  margin-bottom: 4px;
  margin-top: 5px;
}

.hedding .process-underline-flex .process-underline:nth-child(2) {
  width: 30px;
}

.portfolio-hero-subtitle {
    color: var(--primary-bg);
    font-size: 47px;
    font-weight: 600;
    letter-spacing: 0.5px;

    display: inline-block;
    border-radius: 3px;
    padding: 5px 0px;
    line-height: 38px;
}
/* 
.hero-subtitle {
    color: #000;
    font-size: 47px;
    font-weight: 600;
    letter-spacing: 0.5px;
  border: none;
    display: inline-block;
    border-radius: 3px;
    padding: 5px 0px;
    margin: 0;
    line-height: 38px;
} */

.portfolio-title{
  color: var(--primary-bg);
}


.portfolio-hero-section-website{
    background: url(../images/portfolio-hero-section.png);
     position: relative;
  overflow: hidden;
  padding:50px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-card-content {
  padding: 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-section{
    background: url(../images/portfolio-img.png);
     position: relative;
  overflow: hidden;
  padding:50px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 20px;
}
.portfolio-card-title{
  color: var(--primary-bg);
 
}


.portfolio-hero-section-2 {
  background: url(../images/hero-bg.png);
  position: relative;
  overflow: hidden;
  padding:50px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
}


.portfolio-hero-title {
  color: var(--primary-bg);
  ;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  display: inline-block;
  border-left: 4px solid var(--btn-orange);
  border-radius: 3px;
  padding: 5px 20px;
}

 .btn-orange-services {
    background: var(--btn-orange);
  color: #fff;
  /* font-weight: 600; */
  border-radius: 5px;
  /* padding: 12px 25px; */
  font-size: 15px;
  transition: background 0.2s;
  border: 1px solid transparent;
  letter-spacing: 0.5px;
  }


  .planning-section-services .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.planning-section-services {
  background: #EDECFD;
  padding: 60px 0px;
}

.process-card-services {
  background: #F7F7F7;
  border-radius: 10px;
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.07); */
  padding: 20px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  border: 2px solid #fff;
}

.planning-section-process  .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-servies-section{
  background: #EDECFD;
  padding: 60px 0px;
}

.about-label-services {
  color: #ff8800;
  /* font-weight: 700; */
  /* font-size: 1.2rem; */
  /* display: block; */
  margin-bottom: 0.5rem;
}


.contact-hero-section{
 background: url(../images/Contact-Hero-Section.png);
  position: relative;
  overflow: hidden;
  /* padding:50px 0 50px 0; */
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-hero-subtitle{
   color: var(--primary-bg);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  display: inline-block;
  border-left: 4px solid var(--btn-orange);
  border-radius: 3px;
  padding: 5px 20px;

}


.contact-subtitle{
  color: var(--primary-bg);
  padding: 10px;
}

.hero-section-about{
  background: url(../images/hero-section-about.png);
 position: relative;
  overflow: hidden;
  padding:100px 0 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-hero-subtitle{
   color: var(--primary-bg);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  display: inline-block;
  border-left: 4px solid var(--btn-orange);
  border-radius: 3px;
  padding: 5px 20px;
  text-align: center;

}

.about-title{
  color: var(--primary-bg);
  padding: 7px;
  font-size: 15px;
}

.success-number{
 color: #ff8800;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
}

.sub-title-about{
  font-size: 16px;
  font-weight: 500;
  color:#000;
}

/* Portfolio Hero Section Styles for OkBoju Design */
.portfolio-hero-content {
  z-index: 2;
  position: relative;
}

.portfolio-hero-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-hero-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e1f51;
  margin-bottom: 10px;
  line-height: 1.2;
}

.portfolio-hero-description {
  color: #000;
  font-size: 18px;
  line-height: 28px;
  font-family: 'Bai Jamjuree';
  font-weight: 500;
  /* margin-bottom: 2rem; */
}

.portfolio-hero-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.portfolio-hero-features-list .portfolio-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  line-height: 24px;
  font-size: 16px;
}

.portfolio-feature-arrow {
  color: #ff8c42;
  font-weight: bold;
  font-size: 1.2rem;
}

.portfolio-tech-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.portfolio-tech-icon-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.portfolio-tech-icon-card:hover {
  transform: translateY(-5px);
}

.portfolio-tech-icon {
  width: 70px;
  height: auto;
}

.portfolio-mysql-icon {
  background: #00758f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}

.portfolio-tech-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0e1f51;
}

.portfolio-hero-cta-btn {
  background: #ff8c42;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.portfolio-hero-cta-btn:hover {
  background: #e67e3a;
}

/* Portfolio Device Mockups */
.portfolio-device-mockups {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.portfolio-mobile-mockup {
  position: relative;
  z-index: 2;
}

.portfolio-phone-screen {
  width: 280px;
  height: 500px;
  background: #1a4d2e;
  border-radius: 25px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.portfolio-phone-screen::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  z-index: 3;
}

.portfolio-app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.portfolio-laptop-mockup {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.portfolio-laptop-screen {
  width: 400px;
  height: 250px;
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}

.portfolio-web-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.portfolio-logo{
  width: 100px;
  height: auto;
}
.portfolio-tech-icon-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-section{
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 60px;
}
.app {
  padding-right: 30px;
}
.services-section{
  padding: 60px 0;
}
.sarvish-banner{
  border-radius: 8px;
}
.services-sectio{
  padding: 60px 0;
}
.sarvish , .about-servies-section {
  padding: 60px 0;
}

/* Technology Stack Section Styles */
.technology-stack-section {
  padding: 80px 0;
  background-color: #F6F6FE;
}

.tech-stack-content {
  text-align: center;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.tech-stack-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 20px;
}

.tech-stack-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #828282;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.tech-card {
  background: #ffffff;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tech-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0E1F51;
  /* margin-bottom: 20px; */
  position: relative;
  /* padding-bottom: 10px; */
}



.tech-list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.tech-list li {
  display: flex;
  /* align-items: flex-start; */
  /* margin-bottom: 15px; */
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
}

.tech-arrow {
  color: #FC7600;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.features ul{
  margin:0;
  padding: 0;

}
.features {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features .heding {
  font-size: 22px;
  font-weight: 500;
  color: #050748;
  font-family: 'Bai Jamjuree', sans-serif;
}
.features-list{
  display: grid;
  flex-direction: column;
  gap: 5px;
  grid-template-columns: repeat(2,1fr);
}
/* about page */
img.about-plen {
  position: absolute;
  height: 100px;
  left: 80px;
  bottom: 20px;
}
.success{
  min-height: auto;
  align-items:center ;
}
.success .success-number{
font-size: 30px;
}
.success .process-desce{
color:#000;
}
.bg-color-success{
  background: linear-gradient(180deg, #FFFFFF 0%, #D9FEFF 100%);
}

.about-section .sub-title {
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* about page */
/* faq */
.faq {
  padding: 60px 0;
  background-color: #F0F0F8;
}
.faq .accordion {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.accordion .accordion-item {
  border-bottom: 0px !important;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #DDDDDD !important;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 0px;
  color: #000 !important;
  font-size: 25px;
  font-weight: 500;
  border: none;
  background: none;
  outline: none;
}

.accordion .accordion-title span {
  font-size: 39px;
  font-weight: bold;
  line-height: 39px;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 26px;
  line-height: 30px;
  font-size: 20px;
  width: 95%;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
 background-color: #EDEDED;
  border-radius: 22px;
  transform: translateY(-50%);
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  border-radius: 5px;
  left: 50%;
  transform: translate(-50%,-50%);

  width: 17px;
  height: 3px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(-50%,-50%);
  left: 50%;
  border-radius: 5px;
  width: 3px;
  height: 17px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: var(--btn-orange) !important;
}


.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 400ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 400ms linear, max-height 400ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 16px;
  font-weight: 300;
  margin: 20px 0 0px;
  padding-top: 20px;
  border-top: 1px solid #EFF2F7;
  color: #646464;
  font-weight: 400;
}

/* How It Works Section */
.how-it-works-section {
  padding: 0px 0;
  position: relative;
}

.how-it-works-section .container {
  padding: 50px;
  border-radius: 15px;
}

.step-card {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ECEBEB;
}

.step-icon {
  background: white;
  /* border: 2px solid #33AEAF; */
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 16px;
}

.step-card h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 15px;
}

.step-card p {
  color: var(---text-color);
  font-size: 16px;
  margin-bottom: 36px;
}

.step-card .small-text {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.platform-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.step-number {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px dashed #9599AB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  background: #fff;
  z-index: 2;
}

.step-connector {
  position: absolute;
  right: -178px;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #9599AB 0, #9599AB 5px, transparent 5px, transparent 10px);
  transform: translateY(-50%);
  z-index: 1;
  bottom: 33px;
}


/* faq */

.blog{
  background-color: #F6F6F6;
}
/* blog */
.blog-search{
  padding: 10px 15px;
}
.blog-text{
  font-size: 16px;
}
.tags{
  /* display: flex; */
  gap: 10px;
  padding: 0;
}
.tag-item{
  padding: 16px 20px;
  border: 1px solid #DFDADA;
  background-color: #fff;
  color: #746F80;
  border-radius: 3px;
  margin: 0 5px 10px 0 ;
}
.page-tage{
  border-top: 1px solid #8383834D ;
  border-bottom: 1px solid #8383834D ;
  padding:25px 0 15px 0 ;
}

.eurypylus {
  font-size: 1.4rem;
  font-weight: 700;
  color: #050A1E;
  /* margin-bottom: 20px; */
  position: relative;
  /* padding-bottom: 10px; */
}
.reply{
  color:#000;
}
.web-commenter{
  font-size: 18px;
  font-weight: 400;
  font-family: 'Bai Jamjuree', sans-serif;
  color: #050A1E;
}
.content .date{
font-size: 12px;
font-weight: 700;
font-family: 'Fira Sans', sans-serif;
}
.content-text{
  font-size: 16px;
  font-weight: 400;
  font-family: 'Bai Jamjuree', sans-serif;

}
.comment{
  border-bottom: 1px solid #8383834D;
  padding-bottom: 48px;
}
/* blog */
/* terms  */
.terms-section{
  padding: 60px 0;
}
.contect-hero-img{
  display: flex;
}
.search-bar-custom {
  display: flex;
}
.search-bar-custom {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.search-input-custom {
  flex: 1;
  border: 2px solid #e2dede;

  outline: none;
  border-right: none;
  margin: 0;
  padding: 0 10px;
  font-size: 1rem;
  border-radius: 10px 0 0 10px;

  color: #8c8c97;
  background: #fff;

}

.search-btn-custom {
  background: #fc7600;
  border: none;
  width: 50px; /* Adjust width as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  padding: 10px 10px;
  transition: background 0.2s;
}

.search-btn-custom svg {
  display: block;
}
.search-btn-custom svg{
  width: 26px;
  height: 26px;
}
.search-btn-custom:active,
.search-btn-custom:focus {
  background: #e55d00;
}
.new-tecno svg{
  height: 20px ;
  width: 20px;
}
.card {
  animation: tabani 1s forwards;
}

@keyframes tabani {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.menu-icon{
  width: 40px;
  height: 40px;
}
.navbar-toggler:focus{
  box-shadow: none;
}
.nav-item{
  position: relative;
  text-decoration: none;
}
.navbar-nav .nav-item:hover .sub-menu{
  visibility: visible;
  text-decoration: none;
  top: 100%;
  opacity: 1;
}
.sub-menu{
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 130%;
  white-space: nowrap;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  left: 0;
  color: #000;
  background-color: #fff;
  padding: 10px 20px 10px 10px;
  border-radius: 8px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.sub-item a{
  color: #000;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}
.sub-item:hover a{
  color: var(--navbar-link-hover);
}
.dropdown-icon {
  display: none ;
}

.app-portfolio img{
  object-fit: contain;
  padding: 10px;


}
.company-name{
  color: #fff;
}
/* Responsive Design for Technology Stack */

/* Portfolio Responsive Design */
@media (max-width:1024px) {
  .portfolio-hero-section{
    background-size: 100% 100%;
  }
  .portfolio-tech-icons-grid{
    grid-template-columns: repeat(3,1fr);
  }
  .planning-section-process .process-grid{
    grid-template-columns: repeat(3,1fr);
  }
}
@media (max-width: 991.98px) {
  .mobile-sub-menu{
    position: relative;
  }
  .mobile-sub-menu .sub-menu{
    position: relative;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .mobile-sub-menu.active .sub-menu{
    visibility: visible;
    opacity: 1;
    top: 15px;
    left: 0;
    gap: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
  }
  .sub-item{
    margin: 0 !important;
  }
  .our-text{
    color: white;
    cursor: pointer;
    display: flex !important;
    justify-content: space-between;
    transition: color 0.3s ease;
  }
  .mobile-sub-menu.active .our-text{
    color: var(--btn-orange);
  }
  .dropdown-icon{
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
    font-size: 12px;
    rotate: -125deg;
  }
  .mobile-sub-menu.active .dropdown-icon{
    transform: rotate(180deg);
  }
  .portfolio-hero-features-list {
    grid-template-columns: 1fr;
  }
  
  .portfolio-tech-icons-grid {
    grid-template-columns: repeat(5, 1fr);
  }
 
  .portfolio-device-mockups {
    flex-direction: column;
    gap: 1rem;
  }
  
  .portfolio-phone-screen {
    width: 240px;
    height: 400px;
  }
  
  .portfolio-laptop-screen {
    width: 320px;
    height: 200px;
  }
  
  .portfolio-hero-main-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  
  .tech-stack-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dairection{
    flex-direction: column-reverse;
  }
  .tech-card {
    padding: 25px;
  }
  
  .tech-stack-title {
    font-size: 2rem;
  }
  
  .tech-stack-description {
    font-size: 1rem;
  }
  .planning-section-process  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
  }
  .planning-section-services .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
  }
  .planning-section-services{
    padding: 30px 0;
  }
  .hero-title {
    font-size: 38px;
}

  /*  */
  .portfolio-hero-section-main{
    padding: 28px 20px 28px 20px;
  }
  .portfolio-hero-features-list {
    gap: 10px;
    grid-template-columns: repeat(2,1fr);
}
  .portfolio-hero-features-list{
    gap: 10px;
  }
  .services-section {
    padding: 28px 0;
}
section.portfolio-hero-section.d-flex.align-items-center {
  padding: 30px 0;
}
.hedding {
  margin: 0px 0;
}
.portfolio-hero-section {
  background-size: cover;
}
span.portfolio-hero-subtitle {
  font-size: 38px;
}
.planning-section {
  padding: 30px 0px;
}
.title{
  font-size: 28px;
}

section.about-servies-section {
  padding: 30px 0;
}
.sarvish, .about-servies-section {
  padding: 30px 0;
}
.hero-section-main{
  padding: 30px 0 ;
}
.features-list {
  display: grid;
  flex-direction: column;
  gap: 5px;
  grid-template-columns: repeat(2,1fr);
}
.contact-hero-section{
  padding: 30px 0;
}
.contect-hero-img{
  display: none;
}
.hero-section-about{
  padding: 30px 0 30px 0;
}
.planning-section .process-grid{
  gap: 10px;
}
.about-section{
  padding: 30px 0;
}
section.faq {
  padding: 30px 0;
}
.about-title br{
  display: none;
}
.popup-img-side {
  display: none;
}
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  .tab-btn{
    padding: 10px 30px;
  }
  .technology-stack-section {
    padding: 30px 0;
  }
  .contact-subtitle{
    padding: 0;
  }
  .contact-form, .contact-info {
    padding: 20px 15px;
}
.info-item .svg-icon svg {
  width: 25px;
  height: 25px;
}
  .dairection-collm {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start !important;
    gap: 5px;
}
  
  .tech-stack-title {
    font-size: 1.8rem;
  }
  .tech-stack-description{
    margin-bottom: 30px;
  }
  .tech-stack-grid{
    gap: 10px;
  }
  .tech-card {
    padding: 20px;
  }
  span.portfolio-hero-subtitle {
    font-size: 28px;
}
.hero-title {
  font-size: 28px;
}

  .tech-card-title {
    font-size: 1.2rem;
  }
  .portfolio-hero-section-main {
    padding: 28px 10px 28px 10px;
}
.portfolio-hero-main-title {
  font-size: 22px;
}
p.portfolio-hero-description {
  font-size: 16px;
  line-height: 24px;
}
.portfolio-hero-features-list{
  gap: 10px;
}
.portfolio-logo {
  width: 70px;
  height: auto;
}
p.portfolio-title {
  font-size: 16px;
  line-height: 24px;
}
.portfolio-tech-icons-grid {
  grid-template-columns: repeat(2, 1fr);
}
.planning-section-services .process-grid {
  grid-template-columns: repeat(1, 1fr);

}
.planning-section-process  .process-grid {
  grid-template-columns: repeat(1, 1fr);
}
.features-list{
  grid-template-columns: repeat(1,1fr);
}
}

@media (max-width:360px) {
  .card{
    padding: 15px;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

