* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent-color: #001bab;
  /* --accent-color: #111111; */
  --black-color: #111111;
  --white-color: #f9fafb;

  --glass-border: rgba(255, 255, 255, 0.872);

  --gradient-blue: linear-gradient(to right, #001bab, #000b45);
  --gradient-blue-right: linear-gradient(to left, #001bab, #000b45);

  /* --gradient-blue: linear-gradient(to right, #9b9b9b, #111111);
  --gradient-blue-right: linear-gradient(to left, #9b9b9b, #111111); */

  /* --accent2-color: #9b9b9b; */
  --accent2-color: #6476dd;

  --font-bold: 700;
  --font-ultrabold: 800;
  --font-size-36: 36px;
  --font-size-64: 64px;
  --font-size-medium: 24px;
  --font-size-small: 20px;
  --line-height-1: 160%;
  --font-size-16: 16px;

  --radius-10: 10px;
}

body {
  background: var(--white-color);
  font-family: "Rokh", sans-serif;
  overflow-x: hidden;
  /* overscroll-behavior: none; */
}

a {
  text-decoration: none;
  color: inherit;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #001bab, #000b45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.loader.fade-out {
  opacity: 0;
  transform: scale(1.1);
}

.loader.slide-up {
  transform: translateY(-100vh);
}

.logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-logo {
  width: 120px;
  height: 114px;
  filter: drop-shadow(0 0 20px rgba(234, 234, 234, 0.3));
  transform: scale(0);
  animation: logoEntry 1s ease-out 0.5s forwards;
}

.logo-path {
  stroke: #eaeaea;
  stroke-width: 2;
  fill: transparent;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 3s ease-in-out 1s forwards;
}

.logo-fill {
  fill: transparent;
  animation: fillLogo 1.5s ease-in-out 4s forwards;
}

.glow-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(234, 234, 234, 0.2);
  border-radius: 50%;
  animation: pulseRing 2s ease-in-out infinite;
}

.glow-ring:nth-child(2) {
  width: 160px;
  height: 160px;
  animation-delay: -0.5s;
  border-color: rgba(234, 234, 234, 0.1);
}

.glow-ring:nth-child(3) {
  width: 240px;
  height: 240px;
  animation-delay: -1s;
  border-color: rgba(234, 234, 234, 0.15);
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #eaeaea;
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle 3s ease-in-out infinite;
}

.progress-indicator {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: rgba(234, 234, 234, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #eaeaea, rgba(234, 234, 234, 0.6));
  width: 0%;
  border-radius: 2px;
  animation: fillProgress 4s ease-in-out 1s forwards;
}

.main-content {
  display: none;
  padding: 50px;
  text-align: center;
  color: #eaeaea;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.main-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes logoEntry {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes drawPath {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes fillLogo {
  0% {
    fill: transparent;
  }
  100% {
    fill: #eaeaea;
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.5;
  }
}

@keyframes fillProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Additional glow effect */
.animated-logo {
  animation: logoEntry 1s ease-out 0.5s forwards,
    logoGlow 2s ease-in-out 2s infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(234, 234, 234, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(234, 234, 234, 0.6));
  }
}

/* Floating elements */
.floating-element {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(234, 234, 234, 0.4);
  border-radius: 50%;
  animation: floatingElements 4s ease-in-out infinite;
}

@keyframes floatingElements {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) translateX(-20px) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(20px) translateX(10px) rotate(270deg);
    opacity: 0.8;
  }
}

/* container  */

.container {
  max-width: 1440px;
  height: 100vh;
  margin-inline: auto;
  padding-inline: 120px;
  background: #3333333b;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: auto;
  background: url(../assets/bg-simple.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  width: 453px;
  height: 442px;
  background: var(--accent2-color);
  top: -100px;
  right: -133px;
  border-radius: 50%;
  filter: blur(108px);
  z-index: 0;
}

header::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: var(--accent2-color);
  bottom: -70px;
  left: -97px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

nav {
  height: 60px;
  position: fixed;
  top: 40px;
  display: flex;
  gap: 10px;
  padding: 10px 10px;
  border-radius: var(--radius-10);
  background: #f9fafb40;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(40px);
  z-index: 100;
}

nav a {
  position: relative;
  z-index: 1;
  color: var(--black-color);
  padding: 10px 20px;
  border-radius: var(--radius-10);
  cursor: pointer;
  transition: color 0.3s ease;
}

nav a.active {
  color: var(--white-color);
}

.active-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 80%;
  margin-top: 6px;
  border-radius: var(--radius-10);
  background: var(--gradient-blue);
  z-index: 0;
  padding: 10px 20px;
}

.menu-icon {
  display: none;
}

/* responsive  */

@media screen and (max-width: 480px) {
  nav {
    position: absolute;
    height: auto;
    width: 90%;
    top: 90px;
    right: -600px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  nav.menu {
    right: 20px;
  }

  nav a.active {
    width: auto;
    background: var(--gradient-blue);
    color: var(--white-color);
    transition: all 0.3s ease;
  }

  .active-bg {
    all: unset;
  }

  .menu-icon {
    display: flex;
    position: absolute;
    top: 40px;
    right: 20px;
    z-index: 4;
  }

  header::before {
    content: "";
    position: absolute;
    width: 453px;
    height: 442px;
    top: -159px;
    right: -317px;
    border-radius: 50%;
    filter: blur(108px);
    z-index: 0;
  }

  header::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -70px;
    left: -324px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
  }
}

/* header content part  */

.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 300px 0;
}

.header-notif {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--white-color);
  border-radius: var(--radius-10);
}

.header-notif img {
  background: var(--accent-color);
  border-radius: var(--radius-10);
  padding: 3px 8px;
}

.header-notif p {
  padding-left: 10px;
  font-weight: 600;
}

.header-content h1 {
  width: 60%;
  line-height: var(--line-height-1);
  margin-top: 40px;
  font-size: var(--font-size-64);
  font-weight: var(--font-ultrabold);
}

.header-content h1 span {
  padding: 5px;
  background: var(--gradient-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
}

.header-buttons button {
  padding: 10px 20px;
  outline: none;
  border-radius: var(--radius-10);
  background: transparent;
  color: var(--black-color);
  border: 1.5px solid var(--black-color);
  cursor: pointer;
  font-family: "Rokh", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-small);
  transition: all 0.3s ease;
}

.header-buttons button.active {
  background: var(--gradient-blue);
  color: var(--white-color);
  border: none;
  outline: none;
  transition: all 0.5s ease;
  padding: 11px 21px;
  transition: all 0.3s ease;
}

.header-buttons button.active:hover {
  /* box-shadow: 0 0 45px 1px var(--accent2-color), 0 0 25px 10px; */
  background: var(--gradient-blue-right);
}

@media screen and (max-width: 1250px) {
  .header-content h1 {
    width: 60%;
    font-size: 50px;
  }
}

@media screen and (max-width: 980px) {
  .header-content h1 {
    width: 80%;
    font-size: 45px;
  }
}

@media screen and (max-width: 765px) {
  .header-content {
    padding: 200px 20px;
  }

  .header-content h1 {
    width: 80%;
    font-size: 30px;
  }
}

@media screen and (max-width: 480px) {
  .header-content {
    padding: 200px 20px;
    display: flex;
    align-items: flex-start;
  }

  .header-content h1 {
    width: 100%;
    font-size: 35px;
    text-align: right;
  }

  .header-buttons button {
    font-size: 15px;
  }
}

@media screen and (max-width: 375px) {
  .header-content {
    padding: 200px 20px;
    display: flex;
    align-items: flex-start;
  }

  .header-content h1 {
    width: 100%;
    font-size: 35px;
    text-align: right;
  }

  .header-buttons button {
    font-size: 15px;
  }
}

@media screen and (max-width: 310px) {
  .header-content {
    padding: 200px 20px;
    display: flex;
    align-items: flex-start;
  }

  .header-content h1 {
    width: 100%;
    font-size: 30px;
  }

  .header-buttons button {
    font-size: 15px;
  }

  .header-notif p {
    text-align: right;
  }
}

/* image gallery  */

.image-gallery {
  position: absolute;
  width: 100%;
  overflow: hidden;
  margin-top: -120px;
  z-index: 10;
}

.slider {
  display: flex;
  gap: 20px;
}

.slide {
  flex: 0 0 auto;
  width: 360px;
  height: 250px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-10);
}

@media (max-width: 768px) {
  .slide {
    width: 280px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .image-gallery {
    margin-top: -80px;
  }

  .slide {
    width: 220px;
    height: 160px;
  }
}

/*
*
*
*

the about us section   
*
***


*/

.about {
  width: 100%;
  height: auto;
  background: url(../assets/bg-2.png);
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.contain {
  width: 1200px;
  max-width: 1200px;
  /* background: #000c4538; */
}

.about-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.circle1 {
  position: absolute;
  z-index: -1;
  margin: 50%;
  padding-top: 200px;
}

.about-text {
  position: relative;
  width: 650px;
}

.about-title {
  display: flex;
  align-items: center;
}

.about-title h2 {
  font-size: var(--font-size-36);
  font-weight: bold;
  margin-right: 15px;
}

.about-content-p {
  margin-top: 20px;
  background: #f9fafb40;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 10px;
  border-radius: var(--radius-10);
}

.about-content-p p {
  font-size: var(--font-size-medium);
  line-height: var(--line-height-1);
}

.about-image {
  position: relative;
  overflow: hidden;
  width: 360px;
  height: 370px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-10);
}

@media screen and (max-width: 1260px) {
  .about-content {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1100px) {
  .contain {
    width: 100%;
    padding: 0;
  }

  .about-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }

  .about-text {
    width: 90%;
  }

  .circle1 {
    padding: 0px;
    margin: 20%;
  }

  .about-image {
    width: 460px;
    height: 500px;
  }
}

@media screen and (max-width: 1100px) {
  .about-content-p p {
    font-size: var(--font-size-medium);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .circle1 {
    width: 40%;
    margin-top: 130px;
  }
}

@media screen and (max-width: 765px) {
  .about-title img {
    width: 40px;
    height: 40px;
  }

  .about-content {
    gap: 15px;
  }

  .about-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
  }

  .about-content-p p {
    font-size: var(--font-size-16);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .circle1 {
    width: 90%;
    margin-top: 200px;
  }
}

@media screen and (max-width: 514px) {
  .about-image {
    position: relative;
    width: 360px;
    height: 370px;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 400px) {
  .about-title img {
    width: 40px;
    height: 40px;
  }

  .about-content {
    gap: 15px;
  }

  .about-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
  }

  .about-content-p p {
    font-size: var(--font-size-16);
  }

  .about-image {
    position: relative;
    width: 300px;
    height: 370px;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .circle1 {
    width: 90%;
    margin-top: 200px;
  }
}

@media screen and (max-width: 332px) {
  .about-image {
    position: relative;
    width: 290px;
    height: 370px;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 310px) {
  .about-title img {
    width: 40px;
    height: 40px;
  }

  .about-content {
    gap: 15px;
  }

  .about-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
  }

  .about-content-p p {
    font-size: var(--font-size-16);
  }

  .about-image {
    position: relative;
    width: 90%;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .circle1 {
    width: 90%;
    margin-top: 200px;
  }
}

/* end of about-us section */

/* services options  */

.service {
  width: 100%;
  height: auto;
  padding: 150px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 200px;
  background: var(--accent-color);
  filter: blur(200px);
  opacity: calc(70%);
  margin-top: 300px;
}

.circle2 {
  position: absolute;
  z-index: -1;
  margin: 15% 35%;
}

.service-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}

.service-title {
  display: flex;
  align-items: center;
}

.service-title h2 {
  font-size: var(--font-size-medium);
  font-weight: bold;
  margin-right: 15px;
}

.service-content-p p {
  font-size: var(--font-size-medium);
  margin-top: 30px;
}

.service-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}

.service-box {
  position: relative;
  width: 285px;
  height: 200px;
  padding: 10px 10px;
  background: #f9fafb40;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  cursor: pointer;
  overflow: hidden;
  /* user-select: none; */

  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

.service-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(206, 206, 206, 0.4),
    rgba(255, 255, 255, 0.6),
    rgba(198, 198, 198, 0.4),
    transparent
  );
  border-radius: var(--radius-10);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.service-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.service-box:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

.service-box:hover::after {
  left: 100%;
}

.service-box:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
    0 0 60px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

@keyframes glowPulse {
  0% {
    background: linear-gradient(
      45deg,
      transparent,
      rgba(211, 211, 211, 0.3),
      rgba(255, 255, 255, 0.5),
      rgba(207, 207, 207, 0.3),
      transparent
    );
  }
  100% {
    background: linear-gradient(
      45deg,
      transparent,
      rgba(211, 211, 211, 0.3),
      rgba(255, 255, 255, 0.5),
      rgba(207, 207, 207, 0.3),
      transparent
    );
  }
}

.service-box img {
  margin: 6px 0;
}

.service-box h3 {
  font-size: 19px;
  margin: 5px 0;
}

.service-box p {
  font-size: 16px;
}

@media screen and (max-width: 1260px) {
  .service-content {
    padding: 0 20px;
  }

  .service-options {
    gap: 10px;
  }
}

@media screen and (max-width: 1200px) {
  .service-box {
    width: 250px;
    height: 180px;
  }

  .service-content {
    display: flex;
    align-items: flex-start;
  }

  .service-options {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-box p {
    font-size: 14px;
  }

  .service-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
    margin-right: 15px;
  }

  .service-content-p p {
    font-size: var(--font-size-medium);
    margin-top: 30px;
  }
}

@media screen and (max-width: 1100px) {
  .contain {
    width: 100%;
    padding: 0;
  }

  .service-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .service-text {
    width: 90%;
  }

  .service-options {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 0;
  }

  .service-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
    margin-right: 15px;
  }

  .service-content-p p {
    font-size: var(--font-size-medium);
    margin-top: 30px;
  }

  .service-box:last-child {
    width: 770px;
  }
}

@media screen and (max-width: 860px) {
  .service-box {
    width: 100%;
  }
}

@media screen and (max-width: 765px) {
  .service {
    margin-top: -100px;
  }

  .service::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background: var(--accent-color);
    filter: blur(200px);
    opacity: calc(70%);
    margin-top: 300px;
  }

  .service-content {
    width: 100%;
  }

  .service-text {
    width: 90%;
  }

  .service-title img {
    width: 40px;
    height: 40px;
  }

  .service-content {
    gap: 10px;
  }

  .service-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
  }

  .service-content-p p {
    font-size: var(--font-size-16);
  }

  .service-options {
    padding: 80px 0;
  }

  .service-image {
    position: relative;
    width: 90%;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-options {
    width: 90%;
    gap: 10px;
    padding: 0;
  }

  .service-box {
    width: 100%;
  }

  .circle2 {
    position: absolute;
    z-index: -2;
    width: 90%;
    margin-top: 200px;
    margin: 30% -40%;
  }

  .service-box:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .service {
    margin-top: -100px;
  }

  .service::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background: var(--accent-color);
    filter: blur(200px);
    opacity: calc(70%);
    margin-top: 300px;
  }

  .service-content {
    width: 100%;
  }

  .service-text {
    width: 90%;
  }

  .service-title img {
    width: 40px;
    height: 40px;
  }

  .service-content {
    gap: 10px;
  }

  .service-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
  }

  .service-content-p p {
    font-size: var(--font-size-16);
  }

  .service-image {
    position: relative;
    width: 90%;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-options {
    width: 90%;
    gap: 10px;
    padding: 0;
  }

  .service-box {
    width: 100%;
  }

  .circle2 {
    position: absolute;
    z-index: -2;
    width: 90%;
    margin-top: 200px;
    margin: 80% -40%;
  }

  .service-options {
    padding: 60px 0;
  }
}

@media screen and (max-width: 400px) {
  .service {
    margin-top: -100px;
  }

  .service::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background: var(--accent-color);
    filter: blur(200px);
    opacity: calc(70%);
    margin-top: 300px;
  }

  .service-content {
    width: 100%;
  }

  .service-text {
    width: 90%;
  }

  .service-title img {
    width: 40px;
    height: 40px;
  }

  .service-content {
    gap: 10px;
  }

  .service-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
  }

  .service-content-p p {
    font-size: var(--font-size-16);
  }

  .service-image {
    position: relative;
    width: 90%;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-options {
    width: 90%;
    gap: 10px;
    padding: 0;
  }

  .service-box {
    width: 100%;
  }

  .circle2 {
    position: absolute;
    z-index: -2;
    width: 90%;
    margin-top: 200px;
    margin: 80% -40%;
  }
}

@media screen and (max-width: 310px) {
  .service::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background: var(--accent-color);
    filter: blur(200px);
    opacity: calc(70%);
    margin-top: 300px;
  }

  .service-content {
    width: 100%;
  }

  .service-text {
    width: 90%;
  }

  .service-title img {
    width: 40px;
    height: 40px;
  }

  .service-content {
    gap: 10px;
  }

  .service-title h2 {
    font-size: var(--font-size-medium);
    font-weight: bold;
  }

  .service-content-p p {
    font-size: var(--font-size-16);
  }

  .service-image {
    position: relative;
    width: 90%;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-options {
    width: 90%;
    gap: 10px;
    padding: 0;
  }

  .service-box {
    width: 260px;
  }

  .circle2 {
    position: absolute;
    z-index: -2;
    width: 90%;
    margin-top: 200px;
    margin: 100% -40%;
  }
}

/* 

end of services  

*/

/*
**********************
start of why us section  
**********************
*/

.why-us {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.why-us-text {
  display: flex;
  align-items: flex-end;
}

.why-us-text h2 {
  font-size: var(--font-size-medium);
  font-weight: bold;
  margin-right: 15px;
}

.why-us-p {
  margin-top: 30px;
  font-size: var(--font-size-medium);
}

.why-us-num {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--accent-color);
  height: auto;
  border-radius: var(--radius-10);
  padding: 40px 30px;
  margin-top: 30px;
}

/* Add this to your existing .num-box CSS */
.num-box {
  position: relative;
  width: 300px;
  height: auto;
  padding: 50px 30px;
  background: #f9fafb40;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-10);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.num-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2),
    transparent
  );
  border-radius: var(--radius-10);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.num-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.num-box:hover::before {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

.num-box:hover::after {
  left: 100%;
}

.num-box:hover {
  box-shadow: 0 0 30px rgba(211, 211, 211, 0.3),
    0 0 60px rgba(211, 211, 211, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(211, 211, 211, 0.6);
  transform: translateY(-5px);
}

@keyframes glowPulse {
  0% {
    background: linear-gradient(
      45deg,
      transparent,
      rgba(211, 211, 211, 0.3),
      rgba(255, 255, 255, 0.5),
      rgba(207, 207, 207, 0.3),
      transparent
    );
  }
  100% {
    background: linear-gradient(
      45deg,
      transparent,
      rgba(211, 211, 211, 0.3),
      rgba(255, 255, 255, 0.5),
      rgba(207, 207, 207, 0.3),
      transparent
    );
  }
}

.num-circle-1 {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent2-color);
  bottom: 8px;
  right: 95px;
  z-index: 0;
}

.num-circle-2 {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent2-color);
  bottom: 8px;
  right: 430px;
  z-index: 0;
}

.num-circle-3 {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent2-color);
  bottom: 8px;
  left: 370px;
  z-index: 0;
}

.num-circle-4 {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent2-color);
  bottom: 180px;
  right: 370px;
  z-index: 0;
}
.num-circle-5 {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent2-color);
  bottom: 180px;
  right: 700px;
  z-index: 0;
}
.num-circle-6 {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--accent2-color);
  bottom: 160px;
  left: 80px;
  z-index: 0;
}

.num-box h2 {
  font-size: var(--font-size-64);
  color: var(--white-color);
}

.num-box p {
  margin-top: -15px;
  color: var(--white-color);
}

@media screen and (max-width: 910px) {
  .num-circle-2,
  .num-circle-5 {
    display: none;
  }
}

@media screen and (max-width: 765px) {
  .why-us-p {
    font-size: var(--font-size-16);
  }

  .why-us-num {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 30px 20px;
  }

  .num-box {
    width: 95%;
  }

  .num-circle-1 {
    top: 170px;
    right: 29px;
  }

  .num-circle-5 {
    display: block;
  }

  .num-circle-2,
  .num-circle-4,
  .num-circle-6 {
    display: none;
  }

  .num-circle-3 {
    bottom: 228px;
    right: 29px;
  }

  .num-circle-5 {
    bottom: 10px;
    right: 29px;
  }
}

@media screen and (max-width: 400px) {
  .why-us-p {
    font-size: var(--font-size-16);
  }

  .why-us-num {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 30px 20px;
  }

  .num-box {
    width: 95%;
  }

  .num-circle-1 {
    top: 170px;
    right: 29px;
  }

  .num-circle-2,
  .num-circle-4,
  .num-circle-6 {
    display: none;
  }

  .num-circle-3 {
    bottom: 228px;
    right: 29px;
  }

  .num-circle-5 {
    bottom: 10px;
    right: 29px;
  }
}

@media screen and (max-width: 387px) {
  .num-circle-1 {
    top: 170px;
    right: 29px;
  }

  .num-circle-3 {
    bottom: 228px;
    right: 29px;
  }

  .num-circle-5 {
    bottom: 10px;
    right: 29px;
  }
}

@media screen and (max-width: 350px) {
  .num-circle-1 {
    top: 170px;
    right: 29px;
  }

  .num-circle-3 {
    bottom: 228px;
    right: 29px;
  }

  .num-circle-5 {
    bottom: 10px;
    right: 29px;
  }
}

@media screen and (max-width: 310px) {
  .why-us-num {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 30px 20px;
  }

  .num-box {
    width: 95%;
  }

  .num-circle-1 {
    top: 170px;
    right: 29px;
  }

  .num-circle-3 {
    bottom: 228px;
    right: 29px;
  }

  .num-circle-5 {
    bottom: 10px;
    right: 29px;
  }
}

/*

end of why us 
section  


*/

/* portfolio section style  */

.portfolio {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.portfolio-text {
  display: flex;
  align-items: flex-end;
}

.portfolio-text h2 {
  font-size: var(--font-size-medium);
  font-weight: bold;
  margin-right: 15px;
  color: var(--black-color);
}

.portfolio-p {
  font-size: var(--font-size-medium);
  margin-top: 30px;
  color: var(--black-color);
}

.portfolio-gallery {
  position: absolute;
  width: 100%;
  overflow: hidden;
  margin-top: 450px;
  z-index: -1;
}

.gallery-slider {
  display: flex;
  gap: 20px;
}

.slide-gallery {
  flex: 0 0 auto;
  width: 360px;
  height: 250px;
}

.slide-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-10);
}

.gallery-slider-2 {
  margin-top: 550px;
}

@media screen and (max-width: 768px) {
  .portfolio-p {
    font-size: var(--font-size-16);
  }
}

/* testimonial part  */

.testimonial {
  margin-top: 600px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 200px;
  background: var(--accent-color);
  filter: blur(200px);
  opacity: calc(70%);
  margin-top: 300px;
}

.testimonial-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}

.testimonial-header {
  padding: 0 20px;
}

.testimonial-text {
  display: flex;
  align-items: flex-end;
}

.testimonial-text h2 {
  font-size: var(--font-size-medium);
  color: var(--black-color);
  margin-right: 15px;
  font-weight: bold;
}

.testimonial-p {
  font-size: var(--font-size-medium);
  margin-top: 30px;
  color: var(--black-color);
}

.swiper {
  width: 95%;
  height: 100%;
  margin-top: 40px;
  padding: 0 20px;
  overflow: hidden;
}

.swiper-wrapper {
  gap: 20px;
}

.swiper-slide {
  background: #f9fafb40;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-10);
  padding: 30px 20px;
  user-select: none;
}

.swiper-text {
  width: 90%;
  line-height: var(--line-height-1);
  color: var(--black-color);
  font-size: var(--font-size-small);
}

.author {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.author span {
  width: 40px;
  height: 25px;
  background-color: var(--accent-color);
  border-radius: 10px;
}

.author p {
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .testimonial-header {
    padding: 0;
  }
  .testimonial-p {
    font-size: var(--font-size-16);
  }

  .swiper-wrapper {
    gap: 10px;
  }
}

@media screen and (max-width: 400px) {
  .swiper-text {
    font-size: var(--font-size-16);
  }
}

.cta {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 100px;
  padding: 30px 0;
}

.cta-content {
  max-width: 1200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 30px;
}

.cta-content h2 {
  font-size: var(--font-size-medium);
  font-weight: bold;
}

.cta-content p {
  width: 60%;
  font-size: var(--font-size-medium);
  line-height: var(--line-height-1);
}

.btn {
  width: 40%;
  position: relative;
  background: var(--gradient-blue);
  color: var(--white-color);
  border: none;
  outline: none;
  transition: all 0.5s ease;
  padding: 11px 21px;
  border-radius: var(--radius-10);
}

.btn:hover {
  box-shadow: 0 0 45px 1px var(--accent2-color), 0 0 25px 10px;
  background: var(--gradient-blue-right);
}

@media screen and (max-width: 765px) {
  .cta-content p {
    width: 70%;
    font-size: var(--font-size-16);
  }

  .btn {
    width: 80%;
  }
}

/* footer part  */

.footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  /* background: linear-gradient(to top, #435cdd6d, transparent); */

  padding: 100px 30px;
  padding-bottom: 0;
  margin-top: 50px;
}

.footer-content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 0 20px;
}

.footer-text {
  color: var(--black-color);
}

.footer-text h2 {
  color: var(--accent-color);
}

.footer-text p {
  margin-top: 20px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  background-color: #d9d9d9;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #aabbff;
  margin: 5px 5px;
}

.social-icons img {
  margin: 0 5px;
}

.footer-items {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item img {
  width: 44px;
  height: 44px;
}

.footer-box {
  width: 90%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #d9d9d9;
  margin-top: 40px;
  padding: 0 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 14px;
}

.footer-links a {
  margin: 0 20px;
  font-size: 14px;
}

@media screen and (max-width: 810px) {
  .footer-links a {
    margin: 0 5px;
    font-size: 14px;
  }
}

@media screen and (max-width: 716px) {
  .footer-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }

  .footer-box div {
    margin: 20px 0;
  }

  .footer-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media screen and (max-width: 416px) {
  .footer {
    padding: 30px 0;
    padding-bottom: 0;
  }

  .footer-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }

  .footer-box div {
    margin: 20px 0;
  }

  .footer-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
