/* ==========================================================================
   common.css
   Shared styles used on every page: header/nav, footer, global layout,
   typography, buttons, and other base rules.
   Split out of the old single css/style.css to reduce per-page load size.
   ========================================================================== */

/* Fixed social icon bar (moved here from an inline <style> block in common/header.php) */
.social-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #fff;
  border-radius: 0px 5px 5px 0px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-bar a i{
  font-size: 22px;
}

.facebook { background: linear-gradient(135deg, #1877f2, #3b5998); }
.instagram { background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.linkedin { background: linear-gradient(135deg, #0a66c2, #004182); }
.youtube { background: linear-gradient(135deg, #ff0000, #cc0000, #ff4d4d); }

.social-bar a:hover {
  transform: translateX(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .social-bar a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}

body {
    background: #fafafa;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
}

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

ul,
li,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    font-family: inherit;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: 'Unbounded', sans-serif !important;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
    text-transform: capitalize;
}

p {
    font-family: "spacegrotesk";
    line-height: 1.4rem;
    font-size: 16px;
    letter-spacing: 0.5px;
}

a {
    font-family: "spacegrotesk";
    font-size: 17px;
}

.banner_bg h2 b {
    position: relative;
    color: #39a79c;
}

h1 {
    font-size: 30px;
    position: relative;
    z-index: 1;
    font-family: "Arimo";
    color: #fff;
}

h2 {
    font-size: 30px;
    position: relative;
    display: inline-block;
    color: #39a79c !important;
    z-index: 1;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 21px;
    color: #000000;
    position: relative;
    padding-left: 32px;
    display: inline-block;
    letter-spacing: 1px;
}

h6::after {
    position: absolute;
    top: 8px;
    left: 0;
    width: 26px;
    height: 7px;
    content: "";
    background-color: #39a79c;
}

h6::before {
    position: absolute;
    top: 8px;
    left: -2px;
    width: 16px;
    height: 7px;
    content: "";
    background-color: rgb(29, 39, 46);
    z-index: 1;
}

.umiko-btn a {
  padding: 1rem 2.5rem;
  color: #fff !important;
  border-radius: 2rem;
  background: linear-gradient(95deg, #01c3c1 0%, #39A79C 100%);
  border: none;
  font-family: "spacegrotesk";
  font-size: 18px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.umiko-btn a:hover {
  background: linear-gradient(95deg, #39A79C 0%, #01c3c1 100%);
  box-shadow: 0px 8px 18px rgba(1, 195, 193, 0.35);
  color: #fff;
}

.umiko-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: 0.5s ease;
}

.umiko-btn a:hover::after {
  left: 120%;
}

.black-btn {
    padding: 1rem 2.5rem;
    color: #fff;
    border-radius: 3rem;
    background: linear-gradient(95deg, #000000 0%, #1a1a1a 100%);
    border: none;
}

.small-h-text {
    font-size: 22px;
    font-weight: 800;
    color: #39a79c;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.overlay-anim::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    border-radius: 11px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.overlay-anim:hover::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-image: url("../img/logo.png");
    background: linear-gradient(to left, #19191f, #101014);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    pointer-events: none;
    animation: preLogoMovAnim 2s infinite;

    position: relative;
}

.hamburger {
  width: 32px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: none;
}

.hamburger,
.hamburger:focus,
.hamburger:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.hamburger span {
  display: block;
  background: #fff;
  height: 2.5px;
  border-radius: 3px;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1),
.hamburger span:nth-child(3) {
  width: 60%;
}

.hamburger span:nth-child(2) {
  width: 100%;
}

.hamburger span:nth-child(1) { align-self: flex-end; }

.hamburger span:nth-child(3) { align-self: flex-start; }

.hamburger:hover span:nth-child(1),
.hamburger:hover span:nth-child(3) {
  width: 70%;
}

.hamburger:hover span:nth-child(2) {
  transform: scaleX(1.1);
}

.cursor {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #39a79c;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 999;
}

.cursor2 {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #39a79c;
    opacity: 1;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999;
}

.hover {
    background-color: #39a79c;
    opacity: 0.6;
}

.cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

.go-top {
    position: fixed;
    bottom: 9%;
    right: 3%;
    padding: 20px;
    display: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    z-index: 991;
}

.go-top:after {
    font-family: FontAwesome;
    content: "\f062";
    padding: 13px 15px;
    color: #fff;
    position: absolute;
    bottom: 10px;
    font-size: 16px;
    background: #39a79c;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    border-radius: 50pc;
    left: 0;
}

.go-top-text {
    position: absolute;
    width: 60px;
    text-align: center;
    font-family: "Questrial";
    line-height: 1.5;
    letter-spacing: 3px;
    font-size: 12px;
    margin: 20px 0 0 -4px;
}

.btan {
    position: relative;
    padding: 9px 12px;

    color: #fff;
    letter-spacing: 1.2px;
    border-radius: 4px;
    z-index: 1;
}

.btan::after {
    position: absolute;
    background-color: #09484f;
    left: 50%;
    right: 50%;
    width: 0;
    top: 0;
    height: 100%;
    content: "";
    z-index: -1;
    transition: 0.3s;
}

.btan:hover:after {
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.navbar {
  padding:10px 40px;
  border-bottom:1px solid #eee;
  background:linear-gradient(135deg, #1D272E 0%, #106E74 100%);
  backdrop-filter:blur(6px);
}

.navbar .contact-btn {
  border:2px solid #ffffff;
  background:transparent;
  padding:8px 28px;
  font-size:16px;
  border-radius:25px;
  color:#ffffff;
    font-family: "spacegrotesk";
  transition:all 0.3s ease;
}

.contact-btn:hover {
  background:#fff;
  color:#106E74;
}

.offcanvas-custom {
  width:100% !important;
  min-height:100vh !important;

      background-image: url(../img/about-banner_bg.webp);
  padding:15px 40px;
  overflow-y:auto;
  transition:all 0.4s ease;
      font-family: "spacegrotesk";
}

.offcanvas-header .btn-close-custom {
  font-size:2rem;
  background:none;
  border:none;
  cursor:pointer;
  transition:0.3s;
}

.offcanvas-header .btn-close-custom:hover {
  transform:rotate(90deg);
}

.menu {
  margin-top:30px;
}

.menu-link {
  text-transform:uppercase;
  font-size:15px;
  letter-spacing:1.5px;
  padding:14px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(0,0,0,0.08);
  cursor:pointer;
  color:#111;
  font-weight: 600;
}

.menu-link:hover { color:#106E74; }

.submenu {
  display:none;
  padding:10px 0 12px 18px;
}

.submenu a {
  display:block;
  padding:6px 0;
  font-size:16px;
  text-decoration:none;
  color:#444;
  margin-left: .5rem;
  position: relative;
}

.submenu a:hover { color:#106E74; }

.submenu a::before {
  content: "→"; 
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);

}

.info-box {
  margin-top:40px;
  padding:22px 0px;
  border-radius:14px;
  backdrop-filter: blur(8px);
  gap:18px;
}

.info-item {
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom: 1rem;
}

.info-item i {
  font-size:18px;
  background:#106E74;
  color:#fff;
  width:40px;
  height:40px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.info-item strong {
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.info-item span {
  display:block;
  margin-top:3px;
  font-size:14px;
  color:#333;
}

.social {
  margin-top:30px;
  display:flex;
  gap:12px;
}

.social a {
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  font-size:16px;
}

.facebook { background:#1877F2; }

.instagram { background:#E1306C; }

.linkedin { background:#0A66C2; }

.twitter { background:#1DA1F2; }

.youtube { background:#FF0000; }

.small-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.web-design-btn {
    display: flex;
    align-items: center;
    background: #ccff00;
    border-radius: 50px;
    padding: 10px 20px;
    width: fit-content;
    margin-top: 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 15px;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-text h5 {
    font-size: 18px;
    line-height: 1;
    color: #000;
}

.banner-border {
    width: 60rem;
    height: 60rem;
    border-radius: 50%;
    border: 150px solid #ececec;
    position: absolute;
    top: -15%;
    left: -20%;
    z-index: -1;
}

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

#index-service .service-card::before, #team-crousal .team-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    
    background: linear-gradient(90deg, #39a79c, #f39c12, #d62976, #39a79c);
    background-size: 300% 300%;
    animation: moveGradient 6s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
}

.index-service .section-tag,
#service .section-tag {
    color: #f39c12;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#index-service .service-card .icon {
    font-size: 30px;
    margin: 20px 0;
    color: #000;
}

#client-marquee .owl-carousel .owl-stage-outer {
    padding: 0;
}

#workflow {
    padding: 3rem 0rem;
    
    background-color: #fff !important;
    background: url("https://elementor.zozothemes.com/digion/wp-content/uploads/sites/11/2020/07/pattern-bg.png");
    background-attachment: fixed;
    background-size: contain;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.workflow-header {
    margin-bottom: 70px;
}

.workflow-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
    color: #000000 !important;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    background: #fff;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    text-align: start;
}

.step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    box-shadow: 0 6px 28px rgba(57, 167, 156, 0.16);
    transform: translateY(-5px) scale(1.03);
    color: #000;
}

.step-top {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #39a79c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.icon-wrapper i {
    font-size: 32px;
    color: #39a79c;
    transition: all 0.3s ease;
}

.work-num {
    position: absolute;
    top: 5%;
    right: 10%;
    font-size: 80px;
    font-weight: 800;
    color: #e4e4e475;
    line-height: 1;
}

.step:hover .icon-wrapper {
    animation: shake 1s ease;
    background: #39a79c;
    border-color: #39a79c;
}

.step:hover .icon-wrapper i {
    color: #fff;
}

.step h4 {
    font-size: 20px;
    color: #222;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

#team-experience .num-des h2 {
        color: #fff !important;
        font-size: 30px;
    }

#team-experience .about-num .num-des::before {
        filter: brightness(0) invert(1);
    }

.btn-orange {
    background-color: #39a79c;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #39a79c;
    color: #fff;
}

.timeline-box .icon i {
    color: #39a79c;
    font-size: 28px;
}

.faq-answer.active {
    max-height: 400px;
    padding: 0 20px 20px 20px;
}

.icon {
    font-size: 1.5rem;
    transition: 0.3s ease;
    color: #111;
}

#index-testimonial .owl-carousel .owl-stage-outer {
    padding: 0;
}

.owl-nav-btn:hover {
    background: #39a79c;
    color: #fff;
    box-shadow: 0 4px 10px rgba(57, 167, 156, 0.3);
}

.owl-nav-btn i {
    pointer-events: none;
}

.about-banner-circle {
    position: absolute;
    bottom: 0;
    left: 98%;
    z-index: 2;
}

.about-banner-circle img {
    width: 100px;
    height: 100px;
    animation: rotate360 10s linear infinite;
}

.page-btn {
    padding: 1rem 2.5rem;
    background-color: rgb(29, 39, 46);
    color: #fff;
    border-radius: 2rem;
    font-size: 18px;
    font-family: "spacegrotesk";
    text-transform: capitalize;
}

.about-banner-row {
    align-items: center;
}

.about-h5 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2e867e;
    margin-bottom: 15px;
}

.about-banner-text h1 {
    font-size: 5.3vh;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
}

.about-banner-text p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
    text-align: justify;
}

.about-banner-btn {
    display: flex;
    gap: 20px;
}

.about-banner-media .about-video video {
    width: 100%;
    height: 270px;
    border-radius: 12rem;
    object-fit: cover;
    object-position: center;
    margin-bottom: 30px;
}

.about-banner-facts {
    margin-top: 30px;
}

.about-banner-facts .fact {
    margin-bottom: 15px;
    color: #222;
      font-family: "spacegrotesk";
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

.about-banner-facts hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 10px 0 20px 0;
}

.client-images {
    display: flex;
}

.client-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -15px;
    transition: all 0.3s ease;
    border: 1px solid #2e867e;
}

.about-banner-text .changing-word {
        color: #39A79C;
    }

.client-images img:hover {
    transform: scale(1.1);
    z-index: 2;
}

.about-des {
    padding: 3rem 0rem;
}

#about-us {
    padding-bottom: 80px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-detail h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-detail p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
    text-align: justify;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.circle-animation {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 2;
    animation: spin 10s linear infinite;
}

.circle-animation img {
    width: 9rem;
    height: 9rem;
    display: block;
}

.about-num .num-des:nth-child(n+2) {
    position: relative;
    overflow: hidden;
}

.about-num .num-des::before {
    content: "";
    height: 105px;
    width: 22px;
    background-image: url("../img/num-border.webp");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: .2;
}

.num-des {
    
    padding: 1rem;
}

.num-des h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 12px
}

.num-des p {
    font-size: 18px;
}

.metrics-tab.active {
  background: #2E8E84;
  color: #fff;
}

.metric-box.active {
  display: block;
}

.steps-section {
    padding: 60px 0;
    background-image: url("../img/about-banner_bg.webp");
    overflow: visible;
}

.core h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.steps-owl .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.steps-owl .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    display: block;
    border-radius: 50%;
    margin: 0 4px;
}

.steps-owl .owl-dot.active span {
    background: #39A79C;
}

.owl-carousel .owl-stage-outer {
    padding: 3rem 0rem 0rem 0rem;
}

.step-card:hover .step-number {
    background-color: #2e867e;
    color: #fff;
}

#clients {
    background-color: #fff;
    padding: 0rem;
}

.client-btn {
    padding: 1.2rem 3rem;
    color: #fff;
    border-radius: 3rem;
    background: linear-gradient(95deg, #01c3c1 0%, #39A79C 100%);
    border: none;
    font-weight: 600;
}

.client-card {
    border-right: 1px solid #000;
}

#clients h2 {
    line-height: 1.3;
}

.client-marquee {
    
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

#click-convert .umiko-btn a {
    background: #fff !important;
    color: #000 !important;
}

#ads-management .owl-carousel .owl-item {
    padding: 10px;
}

#service-ads-guide {
    padding: 4rem 0 8rem 0;
    background-color: #1d272e;
    background-image: url(img/cube-line-bg.webp);
    background-size: contain;
    color: #fff;
    background-attachment: fixed;
}

#service-ads-guide .row {
    position: relative;
    z-index: 5;
}

.circle {

    width: 120px;
    height: 120px;
    animation: rotateLoop 12s linear infinite;
}

.circle img {
    width: 100%;
    height: auto;
    display: block;
}

.top-team {
    margin-top: 4rem;
}

.ceo-des h1 {
    font-size: 6rem;
    color: #000;
    font-weight: 800;
}

.quote i {
    font-size: 2rem;
}

.quote a {
    background-color: #58cdbb;
    padding: 1rem 1.5rem;
    color: #fff;
    border-radius: 3rem;
}

.image-card-destail {
    position: relative;
    bottom: 0;
    background-color: #fff;
    padding: 12px;
    z-index: 9;
    width: 100%;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #39a79c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-size: 18px;
}

.social-icon:hover {
    background: #15443d;
    transform: scale(1.1);
}

.ceo-exp {
    margin-top: 2rem;
}

.experience-card {

    padding: 2rem 1rem;
    border-radius: 15px;

}

.experience-card h3 {
    color: #ffff;
}

.experience-card .icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.experience-card h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
}

.experience-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.experience-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    color: #39a79c;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
}

.social-icons a {
    color: #555;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #4a90a4;
}

#work-banner .banner-subtext {
    color: #000000;
    max-width: 550px;
    margin: 0 auto 30px;
    font-size: 1rem;
}

.client-images {
    display: flex;
}

.client-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -15px;
    transition: all 0.3s ease;
    border: 1px solid #2e867e;
}

.client-images img:hover {
    transform: scale(1.1);
    z-index: 2;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #39A79C;
    color: #fff;
    border: none;
    border: 1px solid #fff;
}

.client-number{
        padding-top: 5rem;
    padding-bottom: 2rem;
    background-color: #39a79c;
    color: #fff;
}

.c-marquee {
  background: #ffffff;
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.client-timeline-item .icon {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: -50px;
      border: 4px solid #39a79c;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
      padding: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

.client-timeline-item.right .icon { left: -50px; right: auto; }

.client-timeline-item .icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      
    }

.client-timeline-item .icon:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    }

.owl-dots {
  text-align: center;
  margin-top: 25px;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc !important;
  display: inline-block;
  border-radius: 50%;
  margin: 4px;
  transition: 0.3s;
}

.owl-dot.active span {
  background: #39a79c !important;
  transform: scale(1.3);
}

.contact-form-wrapper .subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 50px;
}

#page-contact {
    padding: 2rem 0;
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.page-contact-banner {
    position: relative;
    width: 100%;
    height: 578px;
    background: url("../img/page-contact.webp") center center no-repeat;
    background-size: cover;

}

.page-content-detail {
    color: #fff;
    position: absolute;
    top: 30%;
    left: 40%;
}

.page-content-detail h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff !important;
}

.page-content-detail h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;

}

.page-content-detail p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.page-content-detail a {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.page-content-detail a:hover {
    background: #39A79C;
    color: #fff;
    
}

.footer_bg {
    
    background: linear-gradient(135deg, #1D272E 0%, #106E74 100%);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
}

.footer_bg::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(29, 39, 46, 0.91);
    content: "";
    z-index: -1;
}

.footer_main {
    position: relative;
    z-index: 1;
    padding: 90px 0;
    overflow: hidden;
    background:url("../img/footer-shade.webp");
}

.footer_bg a {
    color: #f0f0f0;
    transition: 0.3s;
    line-height: 0;
    font-size:15px;
}

.footer_bg a:hover {
    color: #39a79c;
    transition: 0.3s;
}

.footer_bg h5 {
    margin: 0;
    margin-right: 0px;
    color: #fff;
    font-size: 15px;
}

.footer_bg ul li {
    font-size: 14px;
    line-height: 1.7rem;
}

.footer_bg .footer_collom p {
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
     font-size:15px;
}

.footer_bg .footer_collom h3 {
    position: relative;
    color: #fff;
    font-size:19px;
}

.footer_bg .footer_collom h3:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    background-color: #39a79c;
    width: 37px;
    height: 3px;
}

.footer_bg .footer_collom li span {
    color: #39a79c;
}

.footer_bg .footer_collom .social_icon li {
    margin-right: 12px;
    padding: 6px 11px;
    border: 2px solid #39a79c;
    border-radius: 25pc;
    height: 37px;
    width: 38px;
    text-align: center;
    align-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
    transition: 0.3s;
}

footer dl,
ol,
ul {
    padding-left: 0;
    margin: 0;
}

.footer_bg .footer_collom .social_icon li:hover {
    transform: translateY(-6px);
    transition: 0.3s;
}

.footer_bg .footer_collom .social_icon li i {
    font-size: 18px;
    color: #ccc;
    transition: 0.3s;
}

.footer_bg .footer_collom .social_icon li:hover i {
    color: #39a79c;
    transition: 0.3s;
}

.footer_bg .copyright {
    border-top: 1px solid #c0c0c0;
}

.footer_bg .copyright p {
    color: #fff;
}

.footer_bg .copyright p a {
    color: #39a79c;
}

.footer_bg .copyright p a:hover {
    text-decoration: underline;
}

@font-face {
    font-family: 'Unbounded';
    src: url('../fonts/unbounded-ba48510e.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
     font-display: swap;
}

@font-face {
    font-family: 'spacegrotesk';
    src: url('../fonts/spacegrotesk-32ad369a.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
     font-display: swap;
}

@keyframes preLogoMovAnim {
    0% {
        transform: scale(1);
        transition: 0.3s;
    }

    50% {
        transform: scale(1.1);
        transition: 0.3s;
    }

    100% {
        transform: scale(1);
        transition: 0.3s;
    }
}

@media (min-width:992px) {
.offcanvas-custom {
    width:30% !important;
    border-left:1px solid rgba(0,0,0,0.1);
  }
}

@media (min-width:992px) {
.info-box {
    grid-template-columns:1fr 1fr;
  }
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(6deg);
    }

    50% {
        transform: rotate(-6deg);
    }

    75% {
        transform: rotate(6deg);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes rotateBg {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateLoop {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes connectorGlow {

    0%,
    100% {
        box-shadow: 0 0 6px 0 #39A79C77;
    }

    50% {
        box-shadow: 0 0 16px 5px #39A79C77;
    }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1280px) and (max-height: 800px) {
.page-content-detail h2,.page-content-detail h4{
        font-size:25px;
    }
}

@media screen and (min-width: 1281px) and (min-height: 801px) {
.about-detail h3 {
        font-size: 34px;
    }
}

@media screen and (max-width: 1280px) and (max-height: 800px) {
h2 {
    font-size: 25px;
}
.about-banner-text h1{
    font-size:4.8vh;
}
.about-detail h3 {
    font-size:25px;
}
.num-des h2{
    font-size:30px;
}
.workflow-header h2{
        font-size:32px;
    }
#clients h2 {
        font-size: 26px;
        line-height: 1.3;
    }
.experience-card h3 {
        font-size: 27px;
    }
.menu-link {
        font-size: 16px;
    }
.page-contact-banner{
        height:500px;
    }
.ads-management h2{
        font-size:31px;
    }
#service-ads-guide h2{
        fontsize:2.2rem
    }
}

@media screen and (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {
h1 {
        font-size: 30px;
    }
.menu-link {
        font-size: 13px;
    }
.btan {
        display: flex;
        justify-content: center;
        padding: 9px 8px;
        color: #fff;
        letter-spacing: 1.2px;
        border-radius: 4px;
        z-index: 1;
        margin: 0;
        align-items: center;
        gap: 0px;
        font-size: 14px;
    }
.about-banner-text h1{
        font-size: 5.5vh;
    }
#work-process .section-title {
        text-align: start;
    }
.experience-card h3 {
        font-size: 21px;
    }
.experience-card h1 {
        font-size: 1.8rem;
    }
.experience-card .icon {
        font-size: 30px;
    }
.about-img img{
        height: 400px;
        object-fit: cover;
    }
#team-head .banner-border {
    width: 52rem;
    height: 52rem;
    border-radius: 50%;
    border: 150px solid #ececec;
    position: absolute;
    top: -15%;
    left: -20%;
    z-index: -1;
}
.top-team {
    margin-top: 2rem;
}
#team-experience .num-des h2{
 color: #fff !important;
 font-size: 30px;
}
#team-experience .about-num .num-des::before {
    filter: brightness(0) invert(1);
}
.owl-carousel .owl-stage-outer {
    padding: 2rem 0rem 1rem 0rem;
}
#service-ads-guide h2 {
    font-size: 30px;
}
.page-contact-banner {
    height: 430px;
}
.page-content-detail {
    color: #fff;
    position: absolute;
    top: 25%;
    left: 32%;
}
.page-content-detail a {
    padding: 1rem 2rem;
}
.page-content-detail h2 {
        font-size: 31px;
        text-transform: uppercase;
    }
.page-content-detail h4 {
        text-transform: capitalize;
        font-size: 22px;
    }
.contact-banner-social {
    display: none;
}
}

@media (max-width: 991.98px) {
.about-banner-media .about-video video {
        height: 170px;
    }
.about-banner-text h1 {
        font-size: 28px;
        line-height: 38px;
    }
.about-banner-btn {
        flex-direction: row;
        align-items: start;
        gap: 10px;
    }
.circle-animation img {
        width: 7rem;
        height: 7rem;
    }
.page-btn,
    .about-service-btn {
        padding: 12px 16px;
    }
.about-banner-text p {
        font-size: 16px;
    }
.about-banner-facts .fact {
        margin-bottom: 12px;
    }
}

@media (max-width: 991px) {
.page-contact-banner{
        height:450px;
    }
}

@media (max-width: 992px) {
h1 {
        font-size: 30px;
    }
h2 {
        font-size: 25px;
    }
p {
        font-size: 15px;
    }
.workflow-steps {
        flex-direction: column;
        align-items: center;
    }
.step {
        max-width: 100%;
    }
.work-num {
        font-size: 32px;
    }
.web-design-btn {
        margin: 30px auto;
    }
.guide-content{
        padding:30px 10px;
    }
#guideTopics::before {
        left: 5px;
    }
#guideTopics .list-group-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
.section-title {
        font-size: 2rem;
    }
.workflow-header{
            margin-bottom: 30px;
    }
.overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
.banner_wrapp .banner_img img {
        width: 100%;
        height: 100%;
    }
.banner_text {
        height: 100%;
    }
.banner_wrapp {
        height: 100%;
    }
.banner_text .cover {
        padding: 0;
        position: relative;
    }
.banner_text .cover .header-content {
        padding: 0;
    }
.banner_text .cover .header-content h2 {
        font-size: 30px;
        font-weight: 600;
        margin: 5px 0 11px;
    }
.banner_text .cover .header-content p {
        font-weight: 300;
        font-size: 16px;
    }
.line {
        background: #39a79c;
        transform: rotate(0);
    }
marquee {
        letter-spacing: 9px;
        padding: 10px 0;
    }
.line span {
        font-size: 39px;
    }
.mx-mb {
        padding: 0 !important;
        margin: 0 !important;
    }
.footer_bg::before {
        position: absolute;
        width: 404px;
        height: 226px;
    }
.socail_media {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
h1 {
        font-size: 24px;
    }
h2 {
        font-size: 20px !important;
    }
}

@media(max-width:768px) {
.info-box{
        margin-top:15px;
        padding:5px 0px;
    }
.menu {
    margin-top: 10px;
}
.social-bar {
        display: none !important;
    }
.navbar {
    padding:10px 6px;
}
.page-content-detail{
        top:20%;
    }
#about-us {
    padding-bottom: 40px;
    }
.umiko-btn a {
    padding: 11px 1.5rem;
    }
.step p{
    font-size: 14px;
}
.step h4 {
    font-size: 19px;
}
#workflow{
        padding:40px 0px;
    }
.about-detail h3 {
        font-size: 20px;
    }
.about-detail p,.card-custom p{
        font-size: 15px;
    }
.faq-answer.active {
        padding: 0 15px 15px 15px;
    }
#why-choose-us .umiko-btn{
        display: flex;
        justify-content: center;
        align-items: center;
    }
.banner-btn {
        padding: 0.6rem 1.6rem;
        font-size: 0.95rem;
    }
#page-contact {
        padding: 0;
    }
.page-content-detail {
        left: 3%;
    }
.about-detail {
        margin-bottom: 2rem;
    }
.col-sm-6 {
        width: 50%;
    }
.owl-carousel .owl-stage-outer {
        padding: 0rem !important;
    }
#clients h2 {
        font-size: 22px !important;
    }
.top-team {
    margin-top: 2rem;
}
.signature-div{
    justify-content: center;
}
.page-content-detail h4 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 1rem;
}
.page-content-detail h2{
    font-size: 26px !important;
    font-weight: 600;
}
.ceo-info {
        margin-top: 6rem !important;
    }
.ceo-exp {
        margin-top: 1rem;
    }
.experience-card {
        padding: 1rem;
    }
.client-timeline-item .icon {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 0 auto 15px;
        width: 100px;
        height: 100px;
      }
.client-timeline-item.right .icon{
        left: 0;
       }
.contact-banner-social {
        justify-content: center;
    }
.contact-banner-social {
        position: relative;
        rotate: 0deg;
    }
.contact-spiner img {
        display: none;
    }
.contact-banner-social{
        right: 0rem;
    }
.footer_main{
    padding:20px 0px;
    background-repeat:no-repeat;
    background-size: cover;
}
.footer_bg a{
    font-size:15px;
}
.copyright_containt a ,.copyright_containt p{
    font-size:13px !important;
}
}