@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/gilroy-bold');
@import url('https://fonts.cdnfonts.com/css/gilroy-medium');
@import url('https://fonts.cdnfonts.com/css/gilroy-light');
@import url('https://fonts.cdnfonts.com/css/gilroy-regular');
@import url('https://fonts.cdnfonts.com/css/gilroy-thin');
@import url('https://fonts.cdnfonts.com/css/gilroy-extrabold');


*{
  text-decoration: none;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  font-family: 'gilroy-medium', 'Poppins';
  list-style-type: none;
  box-sizing: border-box;

}

body {
  background: white;
  color: #555;
  font-family: 'gilroy-medium', 'Poppins';
  line-height: 1.6em;
} 
/* Animation scroll effect */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* animation type 2 */
.entrance {
  animation: myAnim 2s ease 0s 1 normal forwards;
}

@keyframes myAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateY(-250px);
  }

  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0);
  }

  55% {
    animation-timing-function: ease-in;
    transform: translateY(-65px);
  }

  72% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }

  81% {
    animation-timing-function: ease-in;
    transform: translateY(-28px);
  }

  90% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }

  95% {
    animation-timing-function: ease-in;
    transform: translateY(-8px);
  }

  100% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }
}

/* Animation 3 */
.forward-anim {
  animation: myAnim2 2s ease 0s 1 normal forwards;
}

@keyframes myAnim2 {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateX(-250px);
  }

  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateX(0);
  }

  55% {
    animation-timing-function: ease-in;
    transform: translateX(-68px);
  }

  72% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }

  81% {
    animation-timing-function: ease-in;
    transform: translateX(-28px);
  }

  90% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }

  95% {
    animation-timing-function: ease-in;
    transform: translateX(-8px);
  }

  100% {
    animation-timing-function: ease-out;
    transform: translateX(0);
  }
}

/* animation 4 */
.for-entrance {
  animation: myAnim3 2s ease 0s 1 normal forwards;
}

@keyframes myAnim3 {
  0% {
    transform: scaleX(0);
    transform-origin: 0% 0%;
  }

  100% {
    transform: scaleX(1);
    transform-origin: 0% 0%;
  }
}

:root {
  --container-width-lg: 87%;
  --container-width-sm: 94%;

  --radius-1: 2rem;
  --radius-2: 0.8rem;
  --radius-3: 0.5rem;
  --radius-4: 0.3rem;

  --transition: all 300ms ease;

  --primary-hue: 358;
  --color-primary: hsl(var(--primary-hue), 87%, 44%);
  --color-nav-bg: hsla(var(--primary-hue), 0%, 80%, 0.1);
  --color-gray-100: #fff;
  --light-bg: #eee;
  --color-gray-200: hsl(var(--primary-hue)0%, 95%);
  --color-gray-300: hsl(var(--primary-hue)0%, 85%);
  --color-gray-400: hsl(var(--primary-hue)0%, 70%);
  --color-gray-500: hsl(var(--primary-hue)0%, 55%);
  --color-gray-600: hsl(var(--primary-hue)0%, 40%);
  --color-gray-700: hsl(var(--primary-hue)0%, 25%);
  --color-gray-800: hsl(var(--primary-hue)0%, 15%);
  --color-gray-900: hsl(var(--primary-hue)0%, 5%);
  --main-color: #8e44ad;
  --black: #222;
  --clara: #bcbaba;
  --white: #fff;
  --light-black: #777;
  --light-white: #fff9;
  --dark-bg: rgba(0, 0, 0, .7);
  --light-bg: #eee;
  --border: .1rem solid var(--clara);
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --text-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .3);
}


.container {
  width: var(--container-width-lg);
  margin-inline: auto;


}

.btn {
  display: inline-block;
  font-family: Gilroy, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  border-radius: 6px;
  background: #131426;
  color: #fff;
  border: 1px solid #131426;
  padding: 4px 12px;
  cursor: pointer;
}

p,
a,
figcaption {
  font-size: 1rem;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

nav {
  background: rgba(22, 22, 23, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  height: 3.2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: blur(15px);
  -moz-backdrop-filter: blur(15px);
  -o-backdrop-filter: blur(15px);
  -ms-backdrop-filter: blur(15px);
  z-index: 10;
}

.white_scroll {
  position: fixed;
  top: 0;
  background: white;
  width: 100%;
  height: 50px;
}

.nav__container {
  display: flex;
  justify-content: space-between;
}

.nav__logo {
  width: 2.2rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.nav__menu {
  display: flex;
  align-items: left;
  gap: 3rem;
}

.nav__menu a {
  color: rgba(255, 255, 255, 0.911);
  font-family: 'poppins';
  font-weight: normal;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.nav__menu a:hover {
  color: #9935e8;
}

.nav__menu li a::after {
  color: var(--color-gray-900);
  content: '';
  width: 0;
  height: 2.5px;
  background: #9935e8;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;
}




.nav__menu li a:hover::after {
  width: 60%;
  cursor: pointer;
}

.chat__button {

  padding: 0rem 0.83rem;
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  border-radius: 6px;
  /* border: 1px solid #fff; */
  background: #FE3B00;
  /* border-color: #edeefe; */
  transition: all .5s ease;
  color: #fff;
  cursor: pointer;
}


/* Base styles for submenu */
.sub-try {
  position: relative;
  display: inline-block; /* Ensure proper alignment */
}

.sub-menu {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 300px;
  z-index: 1000;
  border-radius: 0 0 5px 5px;
  border-bottom: 3px solid #FF5500;
  top: 110%; /* Position directly below parent, no gap */
  left: 0; /* Align with parent's left edge */
  padding: 1rem;
  margin-top: 0; /* Remove margin to avoid gap */
  margin-left: -30px;
  transition: opacity 0.2s ease, visibility 0.2s ease; /* Smooth appearance */
  opacity: 0;
  visibility: hidden;
}

.sub-try:hover .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sub-menu ul li {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  transition: background 0.2s ease;
}

.sub-menu ul li:hover {
  background: #f5f5f5;
  border-radius: 10px;
}

/* Ensure submenu links are styled properly */
.sub-menu ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  width: 100%;
}

.sub-menu ul li a::after{
  content: '';
  background: none;
}

/* Arrow icon styling */
.sub-try i {
  font-size: 1.5rem;
  margin-left: 6px; /* Adjusted for better spacing */
  font-weight: 700;
  transition: transform 0.3s ease; /* Smooth rotation */
  display: inline-flex; /* Ensure proper alignment */
  align-items: center; /* Vertically center with text */
  vertical-align: middle; /* Fine-tune alignment */
  line-height: 1; /* Prevent extra height */
}

/* Rotate arrow when submenu is active or hovered */
.sub-try:hover i,
.sub-try.active i {
  transform: rotate(180deg); /* Rotate arrow downward */
}



/* Add slight delay to prevent flickering */
.sub-try:hover .sub-menu {
  transition-delay: 0.1s; /* Slight delay for smoother hover */
}

.nav__toggle-open,
.nav__toggle-close {
  display: none;
}

nav:hover {
  background: white;

  a {
    color: var(--color-gray-900);
  }

  .chat__button {
    background: #002185;
  }

}



.nav__menu ul li a:hover::after {
  width: 100%;
}





/* ====== End of NAVBAR section ===== */

/* nav open/close */
.nav__toggle-open,
.nav__toggle-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}




.home {
  padding: 0;
  background: var(--black);
}

.home .slide {
  position: relative;
  display: flex;
  object-fit: contain;
  align-items: center;
  justify-content: space-around;
  height: 600px;
  background-size: contain;
  overflow: hidden;
  z-index: -1;
}

.herovid {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  overflow: hidden;
  z-index: -20;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.734), rgba(0, 0, 0, 0.679));
  z-index: -1;
}


.hero__content {
  line-height: 1.6em;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
  width: 74%;
  animation: fadeIn 0.4s cubic-bezier(.54, 1.3, .63, 1.34) .6s backwards;
}

.hero__content h1 {
  font-family: 'gilroy-bold';
  font-weight: 900;
  font-size: 64px;
  line-height: 72px;
  max-width: 826px;
  margin: 0 auto 32px auto;
  text-align: center;
  color: #ffffff;
}

.hero__content p {
  color: #fff;
}


.hero__content span {
  font-family: 'gilroy-bold';
  font-weight: 900;
  font-size: 64px;
  background: linear-gradient(91deg, #ffbd12 0, #e03d3d 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 4;
}




/* Service Hero Section */
.home-1 {
  padding: 0;
}

.home-1 .slide {
  text-align: center;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  min-height: 40rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.734), rgba(0, 0, 0, 0.679));
  z-index: -1;
}



.home-1 .slide .content {
  width: 60%;

}



.home-1 .slide .content span h1 {
  font-family: 'gilroy-bold';
  font-weight: 900;
  font-size: 64px;
  line-height: 72px;
  max-width: 826px;
  margin: 0 auto 32px auto;
  text-align: center;
  color: #ffffff;
}

.home-1 .slide .content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-gray-100);
  line-height: 28px;
  padding: 1rem 0;
}

.home-1 .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #131426da;
  z-index: -5;
}


/*essence of branding  */
.home-about {
  padding: 8rem 0;
  position: relative;
  margin: 5rem;
  height: 48rem;
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
  /* background: #001850; */
  
}

.home-about .img2 {
  flex: 1 1 20rem;
  margin: 0;

}

.home-about .img2 img {
  height: 100%;
  margin: 0;
}

.home-about .content {
  flex: 1 1 31rem;
  padding: 5rem;
  margin: 0;

}

.home .slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(transparent, #071523);
  pointer-events: none;
  z-index: -1;
}

.home-about .content h3 {
  font-family: 'gilroy-bold';
  font-size: 4rem;
  line-height: 60px;
  font-weight: 700;
  color: #00060B;
}

.home-about .content p {
  font-size: 1.2rem;
  padding: 1rem 0;
  line-height: 30px;
  color: #00060B;
}

.home__button {
  padding: 0rem 0.83rem;
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  border-radius: 6px;
  /* border: 1px solid #fff; */
  background: #FE3B00;
  /* border-color: #edeefe; */
  transition: all .5s ease;
  color: #fff;
  cursor: pointer;
}


/* STRATEGIC BRANDING AREA */
.brand {
  padding: 0;

}


.brand-about {
  padding: 2rem;
  position: relative;
  margin: 3rem;
  border-radius: 10px;
  height: 40rem;
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
  background: radial-gradient(35% 44% at 51.5% 74%, rgb(59, 64, 97) 0%, rgb(22, 26, 31) 100%);
  /* background: #001850; */
  overflow: hidden;
}

.brand-about .image-1 {
  flex: 1 1 30rem;
  margin: 0;

}

.brand-about .image-1 img {
  height: 100%;
  margin: 0;
}

.brand-about .content {
  flex: 1 1 20rem;
  padding: 5rem;
  margin: 0;

}

.brand-about .content h3 {
  font-size: 75px;
  line-height: 79px;
  font-weight: 700;
  color: #fff;

}

.brand-about .content h3 span {
  font-size: 80px;
  line-height: 78px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(283deg, rgb(187, 180, 217) 0%, rgb(207, 167, 141) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.brand-about .content p {
  font-size: 1.2rem;
  padding: 1rem 0;
  line-height: 30px;
  color: #fff;
}



/*  ====== BRANDING STRATEGY ====== */
/*  =====FAQS ===== */

.faqs {
  padding: 5rem;
  background: var(--color-bg1);
  gap: 1rem;
}

.faq__heading {
  text-align: center;
  padding: 1rem;
  font-size: 48px;
  line-height: 78px;
  font-weight: 700;
  color: #131426;
}

.faqs__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  height: fit-content;
  background: #FF5500;
  cursor: pointer;
}

.faq h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.faq__icon {
  align-self: flex-start;
  font-size: 2.5rem;
  color: #fff;
}

.faq p {
  margin-top: 0.8rem;
  display: none;
  color: #fff;
}

.faq.open p {
  display: block;
}



/* project execution process */
.pro-execution {
  padding: 2rem;
}

.pro-execution h1 {
  font-size: 50px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  margin-left: 10rem;
  font-family: 'gilroy-bold';
  margin-bottom: 1.5rem;
}

.p-e-p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-top: 16px;
  max-width: 477px;
  letter-spacing: .012em;
  text-align: left;
  margin-left: 10rem;
}

.pro-execution__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 1rem;
  color: #ffffff;
  padding-bottom: 50px;
  z-index: 1;
  margin: auto;
  text-align: left;
  width: 80%;
}

.pro-execution__card {
  background: #17232fae;
  padding: 3rem;
  border-radius: 10px;
  z-index: 1;
}

.pro-execution__card:hover {
  background: #17232fd4;
  cursor: pointer;
}

.step {
  color: #ffbf00;
  font-size: 32px;
  line-height: 44px;
  font-family: 'gilroy-bold';
  margin-bottom: 18px;
}


/* Service Hero Section */

.crea-about {
  margin-top: 5rem;
  padding: 0;
}

.crea-about .slide {
  text-align: center;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  min-height: 40rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.734), rgba(0, 0, 0, 0.679));
  z-index: -1;
}

.crea-about .slide .content {
  width: 60%;
}



.crea-about .slide .content span {
  padding-top: 2.5rem;
  font-family: 'gilroy-medium';
  display: block;
  line-height: 55px;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 2rem;

}

.crea-about .slide .content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-gray-100);
  line-height: 28px;
  padding: 1rem 0;
}

.crea-about .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #131426da;
  z-index: -1;
}


.crea-about {
  position: relative;
  margin: 3rem;
  border-radius: 10px;
  height: 37rem;
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
  background: #ffff;
  color: rgb(22, 26, 31);
  /* background: #001850; */
}

.crea-about .image-2 {
  flex: 1 1 20rem;
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  color: rgb(22, 26, 31);
  margin: 0;

}



.crea-about .content {
  flex: 1 1 30rem;
  padding: 7rem;
  margin: 0;

}

.crea-about .content h3 {
  font-size: 70px;
  line-height: 78px;
  font-weight: 700;
  color: rgb(22, 26, 31);
  margin-bottom: 16px;

}

.crea-about .content h3 span {

  background: linear-gradient(283deg, rgb(187, 180, 217) 0%, rgb(207, 167, 141) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.crea-about .content p {
  font-size: 1.2rem;
  padding: 1rem 0;
  line-height: 30px;
  color: #fff;
}

.home__button {
  padding: 0rem 0.83rem;
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  border-radius: 6px;
  /* border: 1px solid #fff; */
  background: #FE3B00;
  /* border-color: #edeefe; */
  transition: all .5s ease;
  color: #fff;
}

.values {
  margin-top: 20rem;
  margin-bottom: 10rem;
  padding: 30px 0;
}

.sub-title {
  padding: 2rem;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -.8px;
  text-align: center;
  color: #131426;
  overflow: hidden;
}

.sub-title span {
  background: linear-gradient(283deg, rgb(187, 180, 217) 0%, rgb(207, 167, 141) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.values__list {
  color: #131426da;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
  cursor: pointer;
}

.values__list div {
  background: rgb(250, 250, 250);
  padding: 40px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;
}

#diff {
  background: radial-gradient(35% 44% at 51.5% 74%, #222645 0%, rgb(22, 26, 31) 100%);
  color: #fff;
  padding: 40px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 10px;
  transition: background 0.5s, transform 0.5s;
}

.values__list div i {
  font-size: 50px;
  margin-bottom: 30px;
}


.values__list div h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -.8px;
  padding-bottom: 1rem;
}


.values__list div p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -.32px;
  padding: 1rem 0;
}


.design__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}



/* Design services */

.container .services__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 0.7rem;
  color: var(--color-gray-900);
  z-index: 1;
}


.service__card {
  padding: 1.5rem;
  background: #f5f5f7;
  border-radius: 10px;
  margin: 0;
}


.service__card .serv__content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 20px;
}

.service__card1 .serv__content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 20px;
}


.container .service__card .serv-container p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  color: #131426;
}



.container .services__container .serv-container .btn:hover {
  border: none;
  background: var(--color-gray-700);
}

.servies {
  padding-top: 5rem;
  border-radius: 10px;
  width: 86%;
  height: 560px;
  margin: 7rem;
}


.service__card h3 {
  background: linear-gradient(94.67deg, #9935e8 0, #e85535 100%);
  background: #131426;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

.serv__content:hover {
  cursor: pointer;
}

.serv__content i {
  font-size: 40px;
  color: #006aff;
}

/*  =======end of services ========= */

/* PORTFOLIO SECTION */
#portfolio{
  background-color: #f5f5fb;
}

.work-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  grid-gap: 10px;
  padding: 10px 10px;
 
}

.work{
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  
}

.work img{
  width: 100%;
  height: 396px;
  border-radius: 24px;
  display: block;
  transition: transform 0.5s;
}

.layer{
  width:100%;
  height: 396px;
  border-radius: 24px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgb(9, 0, 34));
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  color: white;
  transition: height 0.5s;
  cursor: pointer;
}

.layer h2{
  font-size: 48px;
  line-height: 3rem;
  letter-spacing: -0.005em;
  font-weight: 700;
  margin-bottom: 10px;
}

.layer p{
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.005em;
  font-weight: 400;
}


.layer a{
  margin-top: 20px;
  color: var(--color-main);
  text-decoration: none;
  font-size: 18px;
  line-height: 60px;
  background: var(--color-white);
  width: 60px;
  border-radius: 50%;
  text-align: center;
}


.btn{
  display: block;
  margin: 50px auto;
  width: fit-content;
  border: 1px solid var(--color-main);
  padding: 14px 50px;
  border-radius: 6px;
  color: var(--color-white);
  transition: background 0.5s;
}

.btn:hover{
  background: var(--color-main);

}

.port-btn1{
  margin-top: 10px;
  padding: 0rem 1rem;
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  border-radius: 50px;
  border: 2px solid #ffffff; 
  background: transparent;
  /* border-color: #edeefe; */
  transition: all .5s ease;
  color: #ffffff;
}

.port-btn2{
  margin-top: 10px;
  margin-left: 15px;
  padding: 0.1rem 1.3rem;
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  border-radius: 50px; 
  background: #FF5500;
  /* border-color: #edeefe; */
  transition: all .5s ease;
  color: #fff;
}

.port-btn1:hover{
background: #FF5500;
border: 2px solid #FF5500;
color: #fff;
cursor: pointer;
}

.port-btn2:hover{
  background: #FF5500;
  cursor: pointer;
}



/* ==-========= Footer ===================== */
footer {
  background: #d9d9d9;
  color: rgb(201, 201, 201);
  background: #262626;
}

.row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.contact-left {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-basis: 100%;
  align-items: center;
  align-self: center;
}

.footer__sidemenu {
  text-decoration: none;
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  gap: 1px;
}

.contact-right {
  flex-basis: 55%;
}

.contact-left p {
  padding: 5px;
  font-size: 17px;
}

.contact-left p i {
  color: #ffffff;
  margin-right: 1px;
  font-size: 19px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  font-size: 30px;
  margin-right: 15px;
  color: #ababab;
  display: inline-block;
  transition: transform 0.5s;
}

.social-icons a:hover {
  color: var(--color-main);
  transform: translate(-5px);
}

.footer__container {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  font-size: 18px;
  border-radius: 7px;
}

.footer__sidemenu {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.footer__sidemenu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 18px;
}

.location {
  border-top: solid 1px rgb(162, 162, 162);
  width: 100%;
}

.location p {
  padding: 10px;
  font-size: 18px;
  text-align: center;
}

.copyright {
  border-top: solid 1px rgb(162, 162, 162);
  width: 100%;
  text-align: center;
  padding: 25px 0;
  color: rgb(201, 201, 201);
  background: #262626;
  font-weight: 300;
  margin-top: 20px;
}

.copyright p {
  font-size: 14px;
}


/* Responsive styles */
@media (max-width: 768px) {
  .nav__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }


  .nav__menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 200%;
    height: 80% auto;
    color: #131426;
    ;
    background: white;
    padding: 1rem;
    position: fixed;
    top: 0;
    /* Position the menu below the nav bar */
    left: 0;
    z-index: -1;
    overflow-x: hidden;
    margin-top: 51px;

  }

  .nav__menu.active {
    display: flex;
  }

  .nav__menu a {
    color: #131426;
    /* Text color for mobile menu */
    font-size: 1.2rem;
    display: inline-block;
    align-items: left;
    gap: 30rem;

  }

  .nav__toggle-open,
  .nav__toggle-close {
    display: block;
    /*background-color: rgb(223, 223, 223);  Background color for toggle button */
    color: rgba(146, 142, 142, 0.911);
    ;
    /* Icon color for toggle button */
    padding: 4.5px 7px;
    border-radius: 100%;
    position: absolute;
    top: 0.01rem;
    right: 0.05rem;

  }


  .nav__toggle-close {
    display: none;
  }

  .nav__menu.active+.nav__toggle-close {
    display: block;
  }

  .nav__toggle-open {
    display: block;
  }

  .nav__menu.active~.nav__toggle-open {
    display: none;
  }

  .chat__button {
    display: none;
  }
}

@media (min-width: 769px) {

  .nav__toggle-open,
  .nav__toggle-close {
    display: none;
  }
}

/* hERO SECTION */
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .home .slide {
   flex-direction: column;
    height: auto;
    padding-top: 50px;
  }

  .hero__content {
    width: 100%;
    text-align: center;
    gap: 5px;
    padding: 10px;
    
  }

  .hero__content h1 {
    font-size: 2.3rem; /* Smaller heading for tablets */
    line-height: 2.2rem; /* Adjust line height */
    padding: 2rem 0; /* Adjust padding */
  }

  .hero__content span {
    font-size: 2.3rem; /* Adjust span size */
    line-height: 2.2rem; /* Adjust line height */
  }
}

@media (max-width: 480px) {
  .hero__content {
    gap: 10px; /* Minimized gap */
    width: 100%; /* Full width for smaller phones */
  }

  .hero__content h1 {
    font-size: 2.3rem; /* Reduced font size for phones */
    line-height: 2.2rem;
  }

  .hero__content span {
    font-size: 2.3rem; /* Adjust for smaller screens */
    line-height: 2.2rem; /* Adjust line height */
  }
}


/* faq mobile responsiveness */
/* Adjust layout for smaller screens */
@media screen and (max-width: 768px) {
  .faqs {
    padding: 2rem;
  }

  .faq__heading {
    font-size: 32px;
    line-height: 70px;
  }

  .faqs__container {
    grid-template-columns: 1fr; /* Stack items vertically */
  }

  .faq {
    padding: 1.5rem;
    flex-direction: column; /* Stack icon and text */
    gap: 1rem;
  }

  .faq h2 {
    font-size: 2rem;
  }

  .faq__icon {
    font-size: 2rem;
  }

  .faq p {
    font-size: 1rem;
  }
}


/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .container .services__container {
    grid-template-columns: 1fr; /* Stack items */
  }
}

/* Service Cards */
.service__card {
  padding: 1.5rem;
  background: #f5f5f7;
  border-radius: 10px;
  margin: 0;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .service__card {
    padding: 1rem;
  }
}

/* Service Content */
.service__card .serv__content,
.service__card1 .serv__content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 20px;
}

/* Mobile Text Adjustments */
@media screen and (max-width: 600px) {
  .container .service__card .serv-container p {
    font-size: 16px;
    line-height: 18px;
  }
}

/* Button Hover */
.container .services__container .serv-container .btn:hover {
  border: none;
  background: var(--color-gray-700);
}

/* Services Section */
.servies {
  padding-top: 5rem;
  border-radius: 10px;
  width: 86%;
  height: 560px;
  margin: 7rem;
}

/* Mobile Section Adjustments */
@media screen and (max-width: 768px) {
  .servies {
    width: 95%;
    height: auto;
    margin: 3rem;
    padding: 2rem;
  }
}

/* Service Heading */
.service__card h3 {
  background: linear-gradient(94.67deg, #9935e8 0, #e85535 100%);
  background: #131426;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

/* Mobile Heading Adjustments */
@media screen and (max-width: 600px) {
  .service__card h3 {
    font-size: 20px;
    line-height: 1.5;
  }
}

/* Icons */
.serv__content i {
  font-size: 40px;
  color: #006aff;
}

/* Mobile Icon Adjustments */
@media screen and (max-width: 600px) {
  .serv__content i {
    font-size: 30px;
  }
}
/* Media Queries for Tablets and Desktops */
@media screen and (min-width: 768px) {
  .servies {
    padding-top: 5rem;
    width: 86%;
    margin: 7rem auto;
  }

  .container .services__container {
    grid-template-columns: 1fr 1fr; /* Two columns for larger screens */
    gap: 0.7rem;
  }

  .service__card {
    padding: 1.5rem;
  }

  .service__card .serv__content,
  .service__card1 .serv__content {
    padding: 1.25rem;
  }

  .container .service__card .serv-container p {
    font-size: clamp(1rem, 2vw, 1.125rem);
  }

  .service__card h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
  }
}

/* Media Queries for Very Small Screens */
@media screen and (max-width: 480px) {
  .servies {
    padding: 2rem 1rem;
    width: 95%;
    margin: 2rem auto;
  }

  .service__card {
    padding: 1rem;
  }

  .service__card .serv__content,
  .service__card1 .serv__content {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .container .service__card .serv-container p {
    font-size: clamp(0.8rem, 3.5vw, 0.9rem);
    line-height: 1.4;
  }

  .service__card h3 {
    font-size: clamp(1.125rem, 4vw, 1.25rem);
    line-height: 1.4;
  }
}


/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .brand .slide {
    flex-direction: column;
    min-height: 30rem;
    padding: 1.5rem;
  }

  .brand .slide .content {
    width: 90%;
  }

  .brand .slide .content span {
    font-size: 32px;
    line-height: 45px;
  }

  .brand .slide .content p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* Brand About Section */
.brand-about {
  position: relative;
  margin: 3rem;
  border-radius: 10px;
  height: 37rem;
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
  background: radial-gradient(35% 44% at 51.5% 74%, rgb(59, 64, 97) 0%, rgb(22, 26, 31) 100%);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .brand-about {
    flex-direction: column;
    height: auto;
    margin: 2rem;
    padding: 2rem;
  }

  .brand-about .content {
    padding: 4rem;
  }

  .brand-about .content h3 {
    font-size: 50px;
    line-height: 60px;
  }

  .brand-about .content h3 span {
    font-size: 50px;
    line-height: 60px;
  }

  .brand-about .content p {
    font-size: 1rem;
    line-height: 26px;
  }
}

/* Adjust image layout on smaller screens */
@media screen and (max-width: 600px) {
  .brand-about .image-1 {
    flex: 1 1 auto;
    text-align: center;
  }

  .brand-about .image-1 img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .brand .slide {
    min-height: 30rem; /* Reduce height for smaller screens */
    padding: 1rem; /* Adjust padding */
  }

  .brand .slide .content {
    width: 80%; /* Increase width for smaller screens */
  }

  .brand .slide .content span {
    font-size: 36px; /* Reduce font size */
    line-height: 40px; /* Adjust line height */
  }

  .brand .slide .content p {
    font-size: 16px; /* Reduce font size */
  }

  .brand-about {
    margin: 1rem; /* Reduce margin */
    height: auto; /* Allow height to adjust */
    flex-direction: column; /* Stack content vertically */
  }

  .brand-about .image-1 {
    flex: 1 1 100%; /* Full width for image */
  }

  .brand-about .content {
    flex: 1 1 100%; /* Full width for content */
    padding: 2rem; /* Adjust padding */
  }

  .brand-about .content h3 {
    font-size: 48px; /* Reduce font size */
    line-height: 50px; /* Adjust line height */
  }

  .brand-about .content h3 span {
    font-size: 48px; /* Reduce font size */
  }

  .brand-about .content p {
    font-size: 1rem; /* Reduce font size */
  }
}

@media screen and (max-width: 480px) {
  .brand .slide {
    min-height: 20rem; /* Further reduce height */
  }

  .brand .slide .content span {
    font-size: 24px; /* Further reduce font size */
    line-height: 30px; /* Adjust line height */
  }

  .brand-about .content h3 {
    font-size: 36px; /* Further reduce font size */
    line-height: 40px; /* Adjust line height */
  }

  .brand-about .content h3 span {
    font-size: 36px; /* Further reduce font size */
  }
}


/* Add media queries for responsiveness */
@media (max-width: 768px) {
  .p-a {
    padding: 0.2rem;
  }

  .p-a__heading {
    font-size: 32px;
    line-height: 48px;
    padding: 0.5rem;
  }

  .p-a__card {
    flex-direction: column; /* Stack cards vertically */
    gap: 10px;
  }

  
  .p-a__cnt {
    flex-direction: column; /* Stack vertically */
    gap: 10px;
  }

  .pro-execution {
    padding: 0.2rem;
  }

  .pro-execution h1 {
    font-size: 32px;
    line-height: 36px;
    margin-left: 0.5rem; /* Adjust margin for smaller screens */
    text-align: center; /* Center align for readability */
  }

  .p-e-p {
    font-size: 14px;
    line-height: 20px;
    margin-left: 0.5rem;
    text-align: center; /* Center text on smaller screens */
  }

  .pro-execution__content {
    grid-template-columns: 1fr; /* Switch to single-column grid */
    gap: 10px;
  }

  .pro-execution__card {
    padding: 16px;
  }

  .step {
    font-size: 24px;
    line-height: 32px;
  }
}





/* Add media query for smaller screens */
@media (max-width: 768px) {
  .home-about {
    flex-direction: column; /* Stack content vertically */
    padding: 4rem 1rem;
    margin: 1rem;
    height: auto; /* Let height adjust dynamically */
    gap: 20px;
  }

  .home-about .img2 {
    flex: none; /* Remove flex-grow */
    width: 100%; /* Full width for small screens */
    margin-bottom: 1rem;
  }

  .home-about .img2 img {
    width: 100%; /* Adjust image size for responsiveness */
    height: auto; /* Maintain aspect ratio */
  }

  .home-about .content {
    flex: none; /* Remove flex-grow */
    width: 100%; /* Full width for text content */
    padding: 1rem;
    margin: 0;
    text-align: center; /* Center-align content */
  }

  .home-about .content h3 {
    font-size: 2.3rem;
    line-height: 40px;
  }

  .home-about .content p {
    font-size: 1.2rem;
    line-height: 24px;
  }

}




/* Base styles remain unchanged */

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  /* .crea-about section adjustments */
  .crea-about {
    flex-direction: column; /* Stack elements vertically */
    height: auto; /* Allow dynamic height adjustment */
    margin: 1rem; /* Reduce margin for smaller screens */
    gap: 20px; /* Add spacing between elements */
    padding: 2rem;
  }

  .crea-about .slide {
    min-height: 25rem; /* Adjust height for smaller screens */
    padding: 1rem;
    flex-wrap: wrap; /* Allow content wrapping */
  }

  .crea-about .slide .content {
    width: 100%; /* Use full width */
    text-align: center; /* Center-align content for readability */
    padding: 1rem;
  }

  .crea-about .slide .content span {
    font-size: 24px; /* Scale down font size */
    line-height: 32px;
  }

  .crea-about .slide .content p {
    font-size: 14px; /* Reduce paragraph font size */
    line-height: 22px;
    padding: 0.5rem 0;
  }

 

  

  .crea-about .content {
    width: 100%; /* Use full width for text content */
    padding: 2rem; /* Reduce padding */
    text-align: center; /* Center-align text */
  }

  .crea-about .content h3 {
    font-size: 32px; /* Scale down heading size */
    line-height: 40px;
    margin-bottom: 1rem;
  }

  .crea-about .content p {
    font-size: 14px; /* Adjust paragraph size */
    line-height: 22px;
  }

  /* .values section adjustments */
  .values {
    margin-top: 5rem; /* Reduce spacing */
    margin-bottom: 5rem;
    padding: 2rem 0; /* Adjust padding */
  }

  .sub-title {
    font-size: 32px; /* Reduce heading size */
    line-height: 36px;
  }

  .sub-title span {
    font-size: 28px; /* Adjust gradient text size */
  }

  .values__list {
    grid-template-columns: 1fr; /* Switch to single-column layout */
    gap: 20px; /* Adjust gap */
  }

  .values__list div {
    padding: 1.5rem; /* Reduce padding for smaller screens */
    font-size: 14px; /* Scale text size */
  }

  .values__list div h2 {
    font-size: 20px; /* Adjust heading size */
  }

  .values__list div p {
    font-size: 14px; /* Adjust paragraph size */
    line-height: 20px;
  }

  /* .design__list adjustments */
  .design__list {
    grid-template-columns: 1fr; /* Switch to single-column layout */
    gap: 1rem;
  }
}

/* Adjust styles for smaller screens */
@media (max-width: 768px) {
  .crea-about .image-2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .crea-about .image-2 {
    font-size: 24px;
    line-height: 32px;
  }
}


  /* ======= Mobile Responsiveness ======= */
  @media only screen and (max-width: 768px) {
    .work-list {
      grid-template-columns: 1fr; /* Single column layout for smaller screens */
      grid-gap: 15px; /* Adjusted gap */
      padding: 10px; /* Adjusted padding */
    }
  
    .work img {
      height: 300px; /* Reduced height for smaller screens */
    }
  
    .layer {
      height: 300px; /* Reduced height for smaller screens */
      padding: 0 20px; /* Reduced padding */
    }
  
    .layer h2 {
      font-size: 36px; /* Reduced font size */
      line-height: 2.5rem; /* Adjusted line height */
    }
  
    .layer p {
      font-size: 18px; /* Reduced font size */
      line-height: 24px; /* Adjusted line height */
    }
  
    .layer a {
      font-size: 16px; /* Reduced font size */
      line-height: 50px; /* Adjusted line height */
      width: 50px; /* Reduced size */
    }
  }
  
  @media only screen and (max-width: 480px) {
    .work img {
      height: 250px; /* Further reduced height */
    }
  
    .layer {
      height: 250px; /* Further reduced height */
      padding: 0 15px; /* Further reduced padding */
    }
  
    .layer h2 {
      font-size: 28px; /* Further reduced font size */
      line-height: 2rem; /* Further adjusted line height */
    }
  
    .layer p {
      font-size: 16px; /* Further reduced font size */
      line-height: 20px; /* Further adjusted line height */
    }
  
    .layer a {
      font-size: 14px; /* Further reduced font size */
      line-height: 40px; /* Further adjusted line height */
      width: 40px; /* Further reduced size */
    }
  }


/* Footer mobile responsiveness */

@media only screen and (max-width: 768px) {
  .contact-left {
    flex-direction: column;
    gap: 18px;
  }

  .contact-right {
    flex-basis: 100%;
  }

  .footer__container {
    flex-direction: column;
    gap: 18px;
  }

  .social-icons {
    margin-top: 10px;
  }

  .social-icons a {
    font-size: 25px;
  }
}

@media only screen and (max-width: 480px) {
  .contact-left p {
    font-size: 15px;
  }

  .contact-left p i {
    font-size: 17px;
  }

  .social-icons a {
    font-size: 20px;
  }

  .footer__sidemenu a {
    font-size: 15px;
  }

  .copyright p {
    font-size: 12px;
  }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .sub-try {
    width: 100%;
  }

  .sub-menu {
    min-width: 100%;
    position: static;
    box-shadow: none;
    border-bottom: none;
    background: #f9f9f9;
    opacity: 1;
    visibility: visible;
    display: none; /* Controlled by JS toggle */
  }

  .sub-try.active .sub-menu {
    display: block;
  }

  .sub-menu ul li {
    padding: 12px;
    font-size: 16px;
    border-bottom: 1px solid #eee;
  }

  .sub-menu ul li:last-child {
    border-bottom: none;
  }

  .sub-try .toggle-btn {
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    color: #FF5500;
  }
}
