@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000; 1,9..40,100..1000&display=swap");
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --dark: #131619;
  --card: #161619;
  --border: #222228;
  --accent: #5b5ef4;
  --accent2: #a78bfa;
  --white: #f5f5f7;
  --muted: #888899;
  --tag: #1e1e28;
  --font-head: "DM Sans", sans-serif;
  --font-body: "DM Sans", sans-serif !important;
}

.home-font {
  font-family: "DM Sans", sans-serif !important;
}

.h2-heading {
  font-size: 4rem !important;
  font-family: "DM Sans", sans-serif !important;
}

.h3-heading {
  font-size: 3rem !important;
  font-family: "DM Sans", sans-serif !important;
}

.textpara {
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: var(--dark) !important;
}

.textpara-small {
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  line-height: 22px !important;
  color: var(--dark) !important;
  opacity: 0.8;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  color: var(--dark);
  font-family: var(--font-body) !important ;
  font-size: 20px;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.site-header {
  padding: 0;
}

body.page {
  padding-top: 8rem;
}

/* ── NAV ── */
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 6rem;
  transition: padding 0.3s;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.home .site-main {
  padding: 0;
}

.for-menu {
  display: none;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.nav-left .custom-logo-link img {
  max-width: 150px;
}

.custom-logo-link {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}
.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gmpl-menu .primary-menu-container {
  margin: 0 !important;
}
.nav-links li {
  position: relative;
}
.nav-links li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -12px;
  height: 5px;
  width: 5px;
  background-color: transparent;
  border: 1px solid var(--dark);
  border-radius: 100%;
  transition: background-color 0.2s ease-out;
}

.nav-links li:hover::before {
  background-color: var(--white);
}

.custom-header
  .primary-navigation
  .primary-menu-container
  .menu-wrapper.nav-links
  > .menu-item
  a {
  color: var(--black);
  transition: color 0.2s;
  position: relative;
  padding: 0;
}

.custom-header
  .primary-navigation
  .primary-menu-container
  .menu-wrapper.nav-links
  > .menu-item
  a:focus {
  color: var(--black);
  transition: color 0.2s;
  position: relative;
  background: none;
}
.custom-header
  .primary-navigation
  .primary-menu-container
  .menu-wrapper.nav-links
  > .menu-item
  a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: #4849d4;
  transform: translateY(-1px);
}

/* ── HERO ── */

.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  height: 300px;
}

.banner-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: #ddd;
}

/* Dots styling */
.hero-img-wrap .swiper-pagination {
  padding-bottom: 20px;
}
.hero-img-wrap .swiper-pagination-bullet {
  border: solid 1px #000;
  opacity: 0.5;
  background: transparent;
}

.hero-img-wrap
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.hero-img-wrap
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 10px;
}

.hero-img-wrap .swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
  justify-content: center;
}

.hero-content .btn-primary {
  background-color: var(--accent);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(91, 94, 244, 0.35);
  border-radius: 2px;
  background: rgba(91, 94, 244, 0.06);
  align-self: flex-start;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 24px;
  margin-top: 0;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--dark);
  color: #fff;
  padding: 1rem 2.4rem;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #4849d4;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 32px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-cities {
  display: flex;
  gap: 24px;
  margin-top: 50px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-cities span {
  font-weight: 600;
}

.hero-cities .material-symbols-outlined {
  font-size: 16px;
  font-weight: 300;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #4e66b5 0,
    #e8b892 40%,
    #e8b892 60%,
    #e8b892 100%
  );
  background-size: 110% 110%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.hero-visual::before,
.home-section-3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(
      circle,
      rgb(55, 96, 145) 0px,
      rgba(55, 96, 145, 0.75) 12.5%,
      rgba(55, 96, 145, 0.5) 25%,
      rgba(55, 96, 145, 0.25) 37.5%,
      rgba(55, 96, 145, 0) 50%
    )
    right top / 250% 250%;
  animation: 20s linear 0s infinite alternate none running
    qodef-background-gradient;
}

@keyframes qodef-background-gradient {
  0%,
  100% {
    background-position: 100% 100%;
  }
  25% {
    background-position: 0 100%;
  }
  50% {
    background-position: 0 0;
  }
  75% {
    background-position: 100% 0;
  }
}

nav.scrolled {
  background-color: rgba(0, 0, 0, 0.7);
}

.blogs-section-wrapper {
  display: flex;
  gap: 2rem;
}

.blogs-section-wrapper .one-blog {
  background-color: #f2f4f8;
  padding: 3rem;
  flex: 1;
}

.blogs-section-wrapper .one-blog-card img {
  max-width: 170px;
}

.blog-cat {
  border: solid 1px var(--border);
  border-radius: 40px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--black);
  transition: all 0.2s ease-out;
  text-transform: uppercase;
}

.blogs-section-wrapper .one-blog-card h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.blog-cat:hover {
  background-color: var(--black);
  color: var(--white);
}

.text-muted {
  color: var(--muted);
}

/* MARQUEE SECTION---------------------------------------------------- */
.marquee {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.content {
  display: flex;
  gap: 50px;
  white-space: nowrap;
}

.content span {
  font-size: 10rem;
  font-weight: bold;
  color: #fff;
  text-shadow:
    -1px -1px 0 #16191c,
    1px -1px 0 #16191c,
    -1px 1px 0 #16191c,
    1px 1px 0 #16191c;
}

/* 🔥 MAGIC */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HOME SECTION 3 CSS-------------------------------------------- */
.home-section-3 {
  background: linear-gradient(
    135deg,
    #4e66b5 0,
    #e8b892 40%,
    #e8b892 60%,
    #e8b892 100%
  );
  background-size: 110% 110%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}
.home-section-3 img {
  max-width: 600px;
}
.home-section-3 .text-content p {
  max-width: 70%;
}

/* HOME TESTIMONIAL SECTION------------------------------------------------------------------ */
.home-testimonial-section .count {
  font-size: 23.5rem;
  font-weight: 500;
  line-height: 23.5rem;
}
.home-testimonial-section .testimonial-content {
  padding: 0 8rem;
}

.home-testimonial-section .testimonial-content p {
  max-width: 450px;
}

.home-testimonial-section .left-section {
  background: url(../images/518.jpg) no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  justify-content: flex-end;
}
.home-testimonial-section .left-section img {
  height: 100%;
  object-fit: cover;
}

.home-testimonial-section .testimonialSwiper {
  width: 100%;
  max-width: 420px;
}

.home-testimonial-section .testimonialSwiper .card {
  background: #fff;
  padding: 40px;
  max-width: 100%;
}

.home-testimonial-section .testimonial-swipper-arrow {
  position: relative;
  height: 50px;
  display: flex;
  margin: -47px 12px 0 0;
  text-align: right;
  align-items: flex-start;
  justify-content: flex-end;
}

.home-testimonial-section .testimonial-swipper-arrow .swiper-button-next,
.home-testimonial-section .testimonial-swipper-arrow .swiper-button-prev {
  position: static;
}
.home-testimonial-section .testimonial-swipper-arrow .swiper-button-next:after,
.home-testimonial-section .testimonial-swipper-arrow .swiper-button-prev:after {
  font-size: 20px;
  color: var(--black);
}

.home-testimonial-section .testimonialSwiper .card p {
  font-size: 21px;
  line-height: 28px;
  margin-bottom: 20px;
}

.card h4 {
  margin: 0;
}

/* FOOTER----------------------------------------------------------------------------------------- */
footer.site-footer {
  background-color: var(--dark);
  color: var(--white);
}
.footer-logo img {
  max-width: 190px;
}
footer .footer-links {
  font-weight: 400;
  line-height: 35px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
  transition: all 0.2s ease-out;
}

.footer-bottom {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-bottom a {
  color: var(--muted) !important;
}

.footer-links a:hover {
  color: var(--white) !important;
}

/* --------------------------------------------------- */

/* TOP CONTACT */
.gmpl-slide-area {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  min-height: 100%;
  padding: 10rem 8rem 3.5rem;
  text-align: left;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
  visibility: hidden;
  z-index: 9999;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
}

.gmpl-slide-area.active {
  right: 0;
  visibility: visible;
}

.gmpl-slide-area .gmpl-logo {
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: 5px;
  margin-bottom: 7rem;
}
.gmpl-slide-area .gmpl-logo span {
  display: block;
  font-size: 14px;
  line-height: normal;
  letter-spacing: normal;
}

.gmpl-slide-area .social-link img {
  width: 24px;
}

.gpml-slide-open-btn,
.gpml-menu-toogle-btn {
  cursor: pointer;
}

.gmpl-slide-area .gpml-slide-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* HOME TECHNOLOGY ACCORDIAN */
/* DESKTOP VIEW */

.accordion {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

/* LEFT SIDE (HEADERS) */
.accordion {
  position: relative;
}
.accordion-item {
  display: block; /* magic trick */
}
.accordion-header {
  width: 250px;
  padding: 15px;
  background: #eee;
  cursor: pointer;
  border-radius: 8px;
}
.accordion-header.active {
  background: #f5a623;
  color: #fff;
}

/* LEFT column */

/* RIGHT SIDE (CONTENT) */
.accordion-content {
  position: absolute;
  left: 300px;
  top: 0;
  width: calc(100% - 300px);
  display: none;
}
.accordion-content.active {
  display: block;
}

.accordion-content .grid-three {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.accordion-content .grid-three .tech-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: solid 1px #e1e1e1;
  width: 220px;
  background-color: #fdfdfd;
  padding: 2rem 10px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
}

.technologies-serve {
  font-family: var(--font-head);
  background-color: var(--border);
}
.accordion-content .grid-three .tech-card img {
  max-width: 40px;
}
.accordion-content .grid-three .tech-card p {
  font-weight: bold;
  font-family: var(--font-body);
}

/* MOBILE DEFAULT (NO CHANGE) */
@media (max-width: 768px) {
  .accordion-content {
    display: none;
  }
  .accordion-item.active .accordion-content {
    display: block;
  }
}

/*OUR CLIENTS */
.our-clients img {
  max-width: 200px !important;
  height: auto !important;
  aspect-ratio: 1.9;
  object-fit: contain;
}

.our-clients .client-logo {
  border: solid 1px #e1e1e1;
  padding: 2rem 4rem;
  border-radius: 4px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  width: 250px;
}

/* Portfolio */

.portfolio-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.portfolio-card {
  background-color: #f2f4f8;
  padding: 1rem;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
  border: solid 1px #e1e1e1;
}

.portfolio-card .btn-primary {
  background-color: var(--accent);
}

.portfolio-card .portfolio-content {
  padding: 2rem;
}
.portfolio-card .portfolio-content p {
  line-height: 2.5rem;
}

.portfolio-card img {
  width: 100%;
}

.portfolio-card .btn-primary {
  padding: 0.8rem 2.4rem;
}

/* Wordpress css customization------------------------------------------------- */
.site-navigation {
  height: auto;
}

.wp-custom-logo .site-header {
  padding: 0;
}

.post-thumbnail,
.entry-content .wp-audio-shortcode,
.entry-content
  > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(
    .wp-block-separator
  ),
*[class*="inner-container"]
  > *:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(
    .alignright
  ):not(.wp-block-separator),
.default-max-width {
  max-width: 100% !important;
}

.site-footer {
  max-width: 100% !important;
  padding-bottom: 0 !important;
}

.page-template-default .entry-header {
  display: none;
}

.page-template-default .entry-content {
  margin: 0;
  min-height: 200px;
}
