/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

.aClassName1{
    position: fixed;
    bottom: 18%;
    right: 10px;
    height: 60px;
    width: 60px;
    z-index: 99999
}

.aClassName{
    position: fixed;
    bottom: 18%;
    left: 10px;
    height: 60px;
    width: 60px;
    z-index: 99999
}

/* .aClassName{
    position: fixed;
    bottom: 7%;
    right: 10px;
    height: 60px;
    width: 60px;
    z-index: 99999
} */
/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

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

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

/* .testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
} */


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .1s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .1s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .1s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .1s .11s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .2s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url('../img/Blue and White Modern Website Development Service Facebook Ad.png') center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .2s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

@media only screen and (min-width: 280px) and (max-width: 799px) {
    .klklkllk{
        display: none;
    }
}
    @media only screen and (min-width: 280px) and (max-width: 599px) {
    .change-video-size{
        height: 450px !important;
    }
    .change-seo-quote{
        margin-top: 0px;
    }
.change-slid-head{
    font-size: 2rem !important;
}
.fafa11{
    height: 210px !important;
}
.fafa10{
    height: 480px !important;
}
.fafa0{
    height: 230px !important;
}
.fafa1{
    height: auto !important;
}
.fafa2{
    height: 171px !important;
}
.fafa3{
    height: 442px !important;
}
.fafa4{
    height: 302px !important;
}
.fafa5{
    height: 137px !important;
}
.fafa6{
    height: 420px !important;
}
.fafa7{
    height: 150px !important;
}
.fafa8{
    height: 150px !important;
}
.fafa9{
    height: 320px !important;
}
}



























.wrapper {
    max-width: 100%;
    margin: auto;
  }
  
  .wrapper > p,
  .wrapper > h1 {
    margin: 1.5rem 0;
    text-align: center;
  }
  
  .wrapper > h1 {
    letter-spacing: 3px;
  }
  
  .accordion {
    background-color: white;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    /* padding: 1.2rem 2.5rem; */
    padding: 1.2rem 1.5rem;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    text-align: left;
  }
  
  .accordion i {
    font-size: 1.2rem;
  }
  
  .active,
  .accordion:hover {
    /* background-color: #f1f7f5; */
  }
  .pannel {
    padding: 20px 2rem 2.5rem 2rem;
    background-color: white;
    overflow: hidden;
    background-color: #f1f7f5;
    display: none;
  }
  .pannel p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px 0;
  }
  .faq.active {
    border: none;
  }

  








details {
    font: 16px "Open Sans", Calibri, sans-serif;
    width: 620px;
    border-bottom: 1px solid black;
    padding: 12px 6px;
  }
  
  details > summary {
    padding: 2px 6px;
    width: 15em;
    /* background-color: #ddd; */
    border: none;
    /* box-shadow: 3px 3px 4px black; */
    cursor: pointer;
  }
  
  details > p {
    border-radius: 0 0 10px 10px;
    /* background-color: #ddd; */
    padding: 2px 6px;
    margin: 0;
    /* box-shadow: 3px 3px 4px black; */
  }
  
  details[open] > summary {
    background-color: #ccf;
  }













  












































































  .description {
    text-align: center;
    color:rgb(25, 18, 43);
    width: 73%;
    margin: auto;
}

.clientImage {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.clientImage span {
    margin-left: 10px;
    color:rgb(25, 18, 43);
    border-bottom: 1px solid white;
    font-weight: 800;
    font-size: 17px;
}

.clientImage img {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    object-fit: cover;
}

/* .reviewSection {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
} */

.reviewItem {
    width: 95%;
    /* width: 300px; */
    padding: 10px;
    margin: 1rem;
    cursor: pointer;
    border-radius: 10px;
    background-color: #ffffff;
    /* border: 1px solid #10102a; */
    transition: all .2s linear;
    box-shadow: 0px 3px 12px rgba(59, 74, 116,15)
}
.reviewItem:hover {
    
    box-shadow: 0px 4px 2px rgba(59, 74, 116,15);
    margin-top: 17px;
}

/* .reviewItem:hover {
    border-color: aqua;
    transform: scale(1.01);
    background-color: #090921;
    box-shadow: 0 0px 5px 0px #cbc0c0;
} */

.top1 {
    margin-bottom: 0rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.top1 ul {
    display: flex;
    list-style: none;
}

.top1 ul li {
    padding-left: 4px;
}

article p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: system-ui;
    color:rgb(25, 18, 43);

}


@media screen and (max-width:700px) {
    .container {
        height: auto;
    }

    .description {
        width: 90%;
    }
}

@media screen and (max-width:575px) {
    .reviewSection {
        padding: 0;
    }

    .reviewItem {
        width: 95%;
        /* width: 100%; */
    }

    .clientImage {
        margin-bottom: 0.6rem;
    }

    .top1 {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        flex-direction: row;
        justify-content: space-between;
    }
}

.review_para {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 300;
    font-family: 'Poppins';
    letter-spacing: 0;
    color: #000000;
}



.reviewSection {
    margin-top: 20px;
}
.reviewItem {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #f9f9f9;
}
.top1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.clientImage {
    display: flex;
    align-items: center;
}
.clientImage > p {
    height: 50px;
    width: 49px;
    font-size: 24px;
    color:  white;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review {
    font-style: italic;
}
.review_para {
    font-size: 15px;
    color: #555;
}
































/* Container */
.locations9 {
  background: #fafafa;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.locations9 .container9 {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.title9 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Heading row */
.locations-header9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* Title */
.title9 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

/* Right link */
.see-all9 {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #27509c;
  transition: 0.3s;
}

.see-all9:hover {
  text-decoration: underline;
}

/* Mobile fix */
@media (max-width: 600px) {
  .locations-header9 {
    flex-direction: column;
    align-items: flex-start; /* or center if you want it centered */
    gap: 6px;
  }

  .title9 {
    font-size: 22px; /* slightly smaller on mobile */
  }

  .see-all9 {
    font-size: 13px;
  }
}


.subtitle9 {
  color: #666;
  margin-bottom: 30px;
}

/* Tags */
.location-tags9 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.location-tags9 .tag9 {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.location-tags9 .tag9:hover {
  background: #335192;
  color: #fff;
  border-color: #2f4c81;
}

/* Cards */
.cards-heading9 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  color: #222;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

/* underline effect */
.cards-heading9::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a8aeb3, #2639a3);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cards-heading9 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .cards-heading9::after {
    width: 60px;
    height: 2px;
  }
}
.location-cards9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card9 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card9 img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-info9 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  text-align: left;
}

.card9 h4 {
  margin: 0;
  font-size: 18px;
    color: #fff;

}

.card9 p {
  margin: 5px 0 0;
  font-size: 14px;
}

.card9:hover {
  transform: translateY(-5px);
}

    
    
    
    






























/* Container */
.service-locations {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Main Heading */
.service-locations h2 {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
  color: #222;
}

/* Alphabet headings */
.service-locations h3 {
  margin-top: 30px;
  font-size: 20px;
  color: #444;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

/* List layout */
.service-locations ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

/* Each item (tag box) */
.service-locations li {
  margin: 0;
}

/* Links styled as boxes */
.service-locations a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  background: #f9f9f9;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Hover effect */
.service-locations a:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
  transform: translateY(-2px);
}

























.service-cat {
  border-radius: 18px;
  padding: 32px 22px;
  min-height: 360px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #1e293b; /* fallback */
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-cat:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.service-cat .cat-icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
  opacity: 1;
  background: rgba(255,255,255,0.12);
  padding: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease;
}

.service-cat:hover .cat-icon {
  background: rgba(255,255,255,0.25);
  transform: rotate(8deg) scale(1.1);
}

.service-cat h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4); /* clear visibility */
}
.service-cat h4 a{

  color: #fff;

}

.service-cat h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  margin-top: 8px;
}

.service-cat ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-cat ul li {
  margin: 10px 0;
}

.service-cat ul li a {
  color: #f1f5f9;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  transition: color .3s ease;
}

.service-cat ul li a i {
  font-size: 8px;
  margin-right: 10px;
  opacity: .8;
}

.service-cat ul li a:hover {
  color: #fff;
}

/* 🎨 Stylish Gradients */
.g1{ background: linear-gradient(135deg,#3a7bd5 0%,#3a6073 100%); }
.g2{ background: linear-gradient(135deg,#f12711 0%,#f5af19 100%); }
.g3{ background: linear-gradient(135deg,#00b4db 0%,#0083b0 100%); }
.g4{ background: linear-gradient(135deg,#7fc0bb 0%,#38ef7d 100%); }
.g10{ background: linear-gradient(135deg,#0e5021 0%,#3a6073 100%); }
.g9{ background: linear-gradient(135deg,#3a7bd5 0%,#84c62d 100%); }
.g8{ background: linear-gradient(135deg,#da9732 0%,#34a5dd 100%); }
.g7{ background: linear-gradient(135deg,#f12711 0%,#f5af19 100%); }
.g6{ background: linear-gradient(135deg,#00b4db 0%,#0083b0 100%); }
.g5{ background: linear-gradient(135deg,#7fc0bb 0%,#38ef7d 100%); }





/*** Project ***/
.project-item div a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item div:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}




/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 30px;
    height: 30px;
    /* background: white; */
    border-radius: 18px;
}

.testimonial-carousel .owl-item .testimonial-item span {
    font-size: 28px;
}
.testimonial-carousel .owl-item .testimonial-item p {
    font-size: 18px;
}

.testimonial-item{
    /* background-color: #222 !important;
    color: white; */
    border-radius: 30px;
    max-height: 400px;
}
.testimonial-item h5{
    /* color: white; */
    color: black;
}

/* .testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
} */

/* .testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
} */

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}

.industries-section {
    padding: 60px 20px;
    background-color: #eaf1fc;
    text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

/* .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
} */
 .section-title1 {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    background-color: #eaf1fc !important;
}
.section-title1::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title1::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title1.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title1.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}
.section-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
justify-content: center;
  margin: 0 auto
}

.industry-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.industry-card i {
  font-size: 36px;
  color: #0066ff;
  margin-bottom: 12px;
}

.industry-card span {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

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


.industry-card.hidden {
  display: none;
}






















.page-header-2d {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/2d-animation-motion-graphics-services-cover.png) center center no-repeat;
    background-size: cover;
}

.page-header-3d {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/3d-animation-motion-graphics-services-cover.jpg) center center no-repeat;
    background-size: cover;
}

.ads-management-sem {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Ads-Management-Service-SEM-Cover.png) center center no-repeat;
    background-size: cover;
}

.ads-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Ads-Management-Service-Cover.png) center center no-repeat;
    background-size: cover;
}
.answer-engine-optimization-aeo {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/answer-engine-optimization-aeo-services-cover.jpeg) center center no-repeat;
    background-size: cover;
}
.android-app-design-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/professional-android-app-cover.png) center center no-repeat;
    background-size: cover;
}
.app-design-development {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/app-design-development-cover.png) center center no-repeat;
    background-size: cover;
}
.brochure-design-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Brochure-Design-Services-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.Business_Card_Design_Service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Business_Card_Design_Cover.png) center center no-repeat;
    background-size: cover;
}
.content-hashtag-optimization-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/best-hashtags-for-engagement-growth-cover.jpg) center center no-repeat;
    background-size: cover;
}
.social_media_poster_design_service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/social_media_poster_design_cover.jpg) center center no-repeat;
    background-size: cover;
    background-position: left;
}
.corporate-video-editing-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Video-Editing-Animation-Services.jpg) center center no-repeat;
    background-size: cover;
}
.custom-thumbnail-design {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/professional-Thumbnail-Creation-for-your-service-cover.png) center center no-repeat;
    background-size: cover;
}
.custom-website-design-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Custom-Website-Design-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.ecommerce-website-mobile-app-development-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Ecommerce-Website-Design-Online-Store-Development-Cover.png) center center no-repeat;
    background-size: cover;
}
.Expaliner-Video-Editing-Services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Video-Editing-Animation-Services.jpg) center center no-repeat;
    background-size: cover;
}
.flyer-design-printing-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/design-custom-flyer-for-your-business-company-or-event-cover.png) center center no-repeat;
    background-size: cover;
}
.gmb-business-management-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Google-My-Business-GMB-Optimization-cover.png) center center no-repeat;
    background-size: cover;
}
.gmb-profile-optimization-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Google-My-Business-GMB-Optimization-cover.png) center center no-repeat;
    background-size: cover;
}
.gmb-profile-verification {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/google-business-profile-verification-and-reinstate-gmb-fix-disabled-suspended-cover.png) center center no-repeat;
    background-size: cover;
}
.ios-iphone-app-ui-ux-design-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/create-trendy-mobile-app-ui-ux-design-for-android-and-ios-cover.jpg) center center no-repeat;
    background-size: cover;
    background-position: unset;
}
.local-seo-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/local-seo-services-for-small-business-best-local-seo-company-cover.jpg) center center no-repeat;
    background-size: cover;
}
.logo-design-service-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/creative-logo-design-service-cover.jpg) center center no-repeat;
    background-size: cover;
}
.meta-ads-management-facebook-instagram-serivce-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/meta-ads-management-facebook-instagram-serivce-cover.png) center center no-repeat;
    background-size: cover;
}
.professional-off-page-seo-services-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Modern-Off-Page-SEO.png) center center no-repeat;
    background-size: cover;
}
.Top-On-Page-SEO-Companies-Services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Top-On-Page-SEO-Companies-Services.png) center center no-repeat;
    background-size: cover;
}
.poster-design-service-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Poster-Designer-cover.png) center center no-repeat;
    background-size: cover;
}
.best-ppc-management-pay-per-click {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/best-ppc-management-pay-per-click-company.jpg) center center no-repeat;
    background-size: cover;
}
.product-animation-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/2d-animation-motion-graphics-services-cover.png) center center no-repeat;
    background-size: cover;
}
.wordpress-website-design-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/wordpress-website-design-cover.jpg) center center no-repeat;
    background-size: cover;
}
.GMB-Optimization-Services-Cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/GMB-Optimization-Services-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.promotional-video-production-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/promotional-video-production-cover.png) center center no-repeat;
    background-size: cover;
}
.How-a-ReactJS-Development-Company-Can-Transform-Your-Business-Website-scaled {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/How-a-ReactJS-Development-Company-Can-Transform-Your-Business-Website-scaled.webp) center center no-repeat;
    background-size: cover;
}
.shopify-website-development-company-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/shopify-website-development-company-cover.webp) center center no-repeat;
    background-size: cover;
}
.Social-Media-Marketing-Services-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Social-Media-Marketing-Services-cover.jpeg) center center no-repeat;
    background-size: cover;
}
.social-media-marketing-services-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/social-media-marketing-services-cover.jpg) center center no-repeat;
    background-size: cover;
}
.Best-Social-Media-Optimization-Services-Cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Best-Social-Media-Optimization-Services-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.video-editing-for-social-media-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/video-editing-for-social-media-cover.png) center center no-repeat;
    background-size: cover;
}
.Technical-SEO-Cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Technical-SEO-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.run-tiktok-ads-manager-and-tik-tok-marketing {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/run-tiktok-ads-manager-and-tik-tok-marketing.jpg) center center no-repeat;
    background-size: cover;
}
.UI-UX-Design-Cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/UI-UX-Design-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.Website-Design-service-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Website-Design-cover.jpg) center center no-repeat;
    background-size: cover;
}
/* .ads-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/) center center no-repeat;
    background-size: cover;
}
.ads-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/) center center no-repeat;
    background-size: cover;
} */
.adobe-illustrator-expert-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/adobe-illustrator-expert-banner.jpg) center center no-repeat;
    background-size: cover;
}
.adobe-photoshop-expert {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/adobe-photoshop-expert.webp) center center no-repeat;
    background-size: cover;
}
.autocad-to-cad-conversion-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/autocad-to-cad-conversion-services.png) center center no-repeat;
    background-size: cover;
}
.blog-writing-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/blog-writing-service-banner.webp) center center no-repeat;
    background-size: cover;
}
.book-cover-design-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/book-cover-design-service-banner.jpg) center center no-repeat;
    background-size: cover;
}
.catalog-design-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/catalog-design-service-banner.jpg) center center no-repeat;
    background-size: cover;
}
.cover-letter-writing-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/cover-letter-writing-service-banner.jpeg) center center no-repeat;
    background-size: cover;
}
.display-advertising-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/display-advertising-service-banner.jpg) center center no-repeat;
    background-size: cover;
}
.dropshipping-ecommerce-store {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/dropshipping-ecommerce-store.png) center center no-repeat;
    background-size: cover;
}
.dropshipping-shopify-marketing-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/dropshipping-shopify-marketing-service-banner.webp) center center no-repeat;
    background-size: cover;
}
.dropshipping-store-design-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/dropshipping-shopify-marketing-service-banner.webp) center center no-repeat;
    background-size: cover;
}
.dropshipping-websites-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/shopify-website-development-company-cover.webp) center center no-repeat;
    background-size: cover;
}
.e-commerce-marketing-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/e-commerce-marketing-service-banner.png) center center no-repeat;
    background-size: cover;
}
.email-design-services-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/email-design-services-banner.jpg) center center no-repeat;
    background-size: cover;
}
.google-maps-promotion-services-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/google-maps-promotion-services-banner.png) center center no-repeat;
    background-size: cover;
}
.google-search-engine-marketing-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/google-search-engine-marketing-banner.webp) center center no-repeat;
    background-size: cover;
}
.instagram-marketing-ads-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/instagram-marketing-ads-banner.png) center center no-repeat;
    background-size: cover;
}
.landing-page-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/landing-page-design-banner.jpg) center center no-repeat;
    background-size: cover;
}
.linkedin-profile-optimization-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/linkedin-profile-optimization-banner.png) center center no-repeat;
    background-size: cover;
}
.logo-animation-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/logo-animation-banner.png) center center no-repeat;
    background-size: cover;
}
.menu-design-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/menu-design-service-banner.jpg) center center no-repeat;
    background-size: cover;
}
.packaging-label-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/packaging-label-design-banner.webp) center center no-repeat;
    background-size: cover;
}
.presentation-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/presentation-design-banner.png) center center no-repeat;
    background-size: cover;
}
.print-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/print-design-banner.jpg) center center no-repeat;
    background-size: cover;
}
.product-description-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/product-description-banner.webp) center center no-repeat;
    background-size: cover;
}
.responsive-web-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/responsive-web-design-banner.webp) center center no-repeat;
    background-size: cover;
}
.resume-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/resume-design-banner.jpg) center center no-repeat;
    background-size: cover;
}
.resume-writing-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/resume-writing-banner.webp) center center no-repeat;
    background-size: cover;
}
.search-engine-marketing-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/search-engine-marketing-banner.jpg) center center no-repeat;
    background-size: cover;
}
.shopify-marketing-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/shopify-marketing-banner.jpg) center center no-repeat;
    background-size: cover;
}
.signage-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/signage-design-banner.webp) center center no-repeat;
    background-size: cover;
}
.small-business-marketing-consultant-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/small-business-marketing-consultant-banner.jpg) center center no-repeat;
    background-size: cover;
}
.small-business-website-design-development {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/small-business-website-design-development.png) center center no-repeat;
    background-size: cover;
}
.snapchat-advertising-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/snapchat-advertising-banner.webp) center center no-repeat;
    background-size: cover;
}
.social-media-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/social-media-design-banner.jpg) center center no-repeat;
    background-size: cover;
}
.tax-consultant-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/tax-consultant-banner.jpg) center center no-repeat;
    background-size: cover;
}
.text-animation-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/text-animation-banner.png) center center no-repeat;
    background-size: cover;
}
.web-banner-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/web-banner-services.png) center center no-repeat;
    background-size: cover;
}
.youtube-video-editor-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/youtube-video-editor-banner.jpg) center center no-repeat;
    background-size: cover;
}
.youtube-promotion-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/youtube-promotion-banner.png) center center no-repeat;
    background-size: cover;
}
.web-developer-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/web-developer-banner.png) center center no-repeat;
    background-size: cover;
}
.business-name-slogans-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/business-name-slogans-banner.webp) center center no-repeat;
    background-size: cover;
}


.affiliate-marketing-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/affiliate-marketing-management-cover.png) center center no-repeat;
    background-size: cover;
}
.amazon-advertising-agency {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Amazon-Marketing.png) center center no-repeat;
    background-size: cover;
}
.amazon-search-engine-optimization {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/amazon-seo-strategy-organic-rankings-amazon-seo-and-ad.jpg) center center no-repeat;
    background-size: cover;
}
.backlink-building-packages {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/backlink-building-packages-cover.png) center center no-repeat;
    background-size: cover;
}
.chatbot-integration {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/What-is-an-AI-Chatbot_-1024x639.webp) center center no-repeat;
    background-size: cover;
}


.competitor-seo-analysis{
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/local-seo-services-for-small-business-best-local-seo-company-cover.jpg) center center no-repeat;
    background-size: cover;
}
.cms-web-development-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/cms-web-development-services.png) center center no-repeat;
    background-size: cover;
}
.ebook-writing-design{
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/write-edit-design-your-ebook-ready-for-publication.png) center center no-repeat;
    background-size: cover;
}
.email-marketing-automation {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/email-design-services-banner.jpg) center center no-repeat;
    background-size: cover;
}
.erp-software-system {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/ERP_Software_Development_Services.png) center center no-repeat;
    background-size: cover;
}
.etsy-store-setup {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/etsy-store-setup.png) center center no-repeat;
    background-size: cover;
}
.ghostwriting-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/ghost-writing-banner-advertisement-fiverr-cov-design-template-0bd2c694822da7be7ec5d99ae65fd130_screen.jpg) center center no-repeat;
    background-size: cover;
}


.infographics-design {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/infographics-design.png) center center no-repeat;
    background-size: cover;
}
.Inventory-Management-Software-Service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Inventory-Management-Software-Service..jpg) center center no-repeat;
    background-size: cover;
}
.linkedin-ads-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/LinkedIn-Power-600x184.jpg) center center no-repeat;
    background-size: cover;
}
.local-listings-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/local-listing-management-broadly.png) center center no-repeat;
    background-size: cover;
}
.marketplace-website-development {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Custom-Website-Design-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.merchandise-design{
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/merch-clothing-custom-merchandise-products-merch-design-service-.png) center center no-repeat;
    background-size: cover;
}
.motion-graphics {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/c16c69490b739cda6b36279f63e13b8a.png) center center no-repeat;
    background-size: cover;
}
.multi-vendor-ecommerce-development {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Custom-Website-Design-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.multi-vendor-marketplace-development {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Custom-Website-Design-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.packaging-mockups {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/packaging-label-design-banner.webp) center center no-repeat;
    background-size: cover;
}
.payment-gateway-integration {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Payment-Gateway-Integration.png) center center no-repeat;
    background-size: cover;
}



.pinterest-ads-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Pinterest-Ad-Agency-Blog-banner.png) center center no-repeat;
    background-size: cover;
}
.podcast-editing {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/edit-mix-and-master-your-podcast-audio.png) center center no-repeat;
    background-size: cover;
}
.reels-shorts-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/reels-short-cover.jpeg) center center no-repeat;
    background-size: cover;
}

.saas-software-development {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/saas-app-development-guide.png) center center no-repeat;
    background-size: cover;
}
.sales-page-design {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/ecommerce-website-designs-1.webp) center center no-repeat;
    background-size: cover;
}


.seo-audit-reporting {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/seo-audit-reporting-cover.png) center center no-repeat;
    background-size: cover;
}
.seo-copywriting {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/seo-copywriting-cover.png) center center no-repeat;
    background-size: cover;
}
.sms-marketing-campaign {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/sms-marketing-campaign-cover.png) center center no-repeat;
    background-size: cover;
}
.software-quality-assurance {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/software-quality-assurance-feature-image.webp) center center no-repeat;
    background-size: cover;
}
.software-testing-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/software-testing-service-cover.png) center center no-repeat;
    background-size: cover;
}
.subscription-based-ecommerce {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/subscription-based-ecommerce-cover.png) center center no-repeat;
    background-size: cover;
}
.tax-filing-accounting-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/tax-consultant-banner.jpg) center center no-repeat;
    background-size: cover;
}

.technical-writing {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/9919b91c-49fa-47da-96a0-bf2361db28a7.jpeg) center center no-repeat;
    background-size: cover;
}

.tiktok-content-creation {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/tiktok-content-creation-cover.png) center center no-repeat;
    background-size: cover;
}

.typography-design {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/856cd80c07eca93aef96303d43a566b0.jpg) center center no-repeat;
    background-size: cover;
}
.ui-ux-redesign-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/UI-UX-Design-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.visual-brand-guidelines {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Visual-Idenity-Cover-01.png) center center no-repeat;
    background-size: cover;
}
.website-maintenance-support {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Website-Maintenance-Service.jpg) center center no-repeat;
    background-size: cover;
}
.woocommerce-website-design {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/woocommerce-website-design-cover.png) center center no-repeat;
    background-size: cover;
}










/* 
.page-header-2d {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/2d-animation-motion-graphics-services-cover.png) center center no-repeat;
    background-size: cover;
}

.page-header-3d {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/3d-animation-motion-graphics-services-cover.jpg) center center no-repeat;
    background-size: cover;
}

.ads-management-sem {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Ads-Management-Service-SEM-Cover.png) center center no-repeat;
    background-size: cover;
}

.ads-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Ads-Management-Service-Cover.png) center center no-repeat;
    background-size: cover;
}
.answer-engine-optimization-aeo {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/answer-engine-optimization-aeo-services-cover.jpeg) center center no-repeat;
    background-size: cover;
}
.android-app-design-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/professional-android-app-cover.png) center center no-repeat;
    background-size: cover;
}
.app-design-development {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/app-design-development-cover.png) center center no-repeat;
    background-size: cover;
}
.brochure-design-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Brochure-Design-Services-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.Business_Card_Design_Service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Business_Card_Design_Cover.png) center center no-repeat;
    background-size: cover;
}
.content-hashtag-optimization-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/best-hashtags-for-engagement-growth-cover.jpg) center center no-repeat;
    background-size: cover;
}
.social_media_poster_design_service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/social_media_poster_design_cover.jpg) center center no-repeat;
    background-size: cover;
    background-position: left;
}
.corporate-video-editing-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Video-Editing-Animation-Services.jpg) center center no-repeat;
    background-size: cover;
}
.custom-thumbnail-design {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/professional-Thumbnail-Creation-for-your-service-cover.png) center center no-repeat;
    background-size: cover;
}
.custom-website-design-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Custom-Website-Design-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.ecommerce-website-mobile-app-development-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Ecommerce-Website-Design-Online-Store-Development-Cover.png) center center no-repeat;
    background-size: cover;
}
.Expaliner-Video-Editing-Services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Video-Editing-Animation-Services.jpg) center center no-repeat;
    background-size: cover;
}
.flyer-design-printing-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/design-custom-flyer-for-your-business-company-or-event-cover.png) center center no-repeat;
    background-size: cover;
}
.gmb-business-management-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Google-My-Business-GMB-Optimization-cover.png) center center no-repeat;
    background-size: cover;
}
.gmb-profile-optimization-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Google-My-Business-GMB-Optimization-cover.png) center center no-repeat;
    background-size: cover;
}
.gmb-profile-verification {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/google-business-profile-verification-and-reinstate-gmb-fix-disabled-suspended-cover.png) center center no-repeat;
    background-size: cover;
}
.ios-iphone-app-ui-ux-design-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/create-trendy-mobile-app-ui-ux-design-for-android-and-ios-cover.jpg) center center no-repeat;
    background-size: cover;
    background-position: unset;
}
.local-seo-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/local-seo-services-for-small-business-best-local-seo-company-cover.jpg) center center no-repeat;
    background-size: cover;
}
.logo-design-service-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/creative-logo-design-service-cover.jpg) center center no-repeat;
    background-size: cover;
}
.meta-ads-management-facebook-instagram-serivce-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/meta-ads-management-facebook-instagram-serivce-cover.png) center center no-repeat;
    background-size: cover;
}
.professional-off-page-seo-services-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Modern-Off-Page-SEO.png) center center no-repeat;
    background-size: cover;
}
.Top-On-Page-SEO-Companies-Services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Top-On-Page-SEO-Companies-Services.png) center center no-repeat;
    background-size: cover;
}
.poster-design-service-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Poster-Designer-cover.png) center center no-repeat;
    background-size: cover;
}
.best-ppc-management-pay-per-click {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/best-ppc-management-pay-per-click-company.jpg) center center no-repeat;
    background-size: cover;
}
.product-animation-service {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/2d-animation-motion-graphics-services-cover.png) center center no-repeat;
    background-size: cover;
}
.wordpress-website-design-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/wordpress-website-design-cover.jpg) center center no-repeat;
    background-size: cover;
}
.GMB-Optimization-Services-Cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/GMB-Optimization-Services-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.promotional-video-production-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/promotional-video-production-cover.png) center center no-repeat;
    background-size: cover;
}
.How-a-ReactJS-Development-Company-Can-Transform-Your-Business-Website-scaled {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/How-a-ReactJS-Development-Company-Can-Transform-Your-Business-Website-scaled.webp) center center no-repeat;
    background-size: cover;
}
.shopify-website-development-company-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/shopify-website-development-company-cover.webp) center center no-repeat;
    background-size: cover;
}
.Social-Media-Marketing-Services-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Social-Media-Marketing-Services-cover.jpeg) center center no-repeat;
    background-size: cover;
}
.social-media-marketing-services-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/social-media-marketing-services-cover.jpg) center center no-repeat;
    background-size: cover;
}
.Best-Social-Media-Optimization-Services-Cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Best-Social-Media-Optimization-Services-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.video-editing-for-social-media-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/video-editing-for-social-media-cover.png) center center no-repeat;
    background-size: cover;
}
.Technical-SEO-Cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Technical-SEO-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.run-tiktok-ads-manager-and-tik-tok-marketing {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/run-tiktok-ads-manager-and-tik-tok-marketing.jpg) center center no-repeat;
    background-size: cover;
}
.UI-UX-Design-Cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/UI-UX-Design-Cover.jpg) center center no-repeat;
    background-size: cover;
}
.Website-Design-service-cover {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/Website-Design-cover.jpg) center center no-repeat;
    background-size: cover;
}
.adobe-illustrator-expert-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/adobe-illustrator-expert-banner.jpg) center center no-repeat;
    background-size: cover;
}
.adobe-photoshop-expert {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/adobe-photoshop-expert.webp) center center no-repeat;
    background-size: cover;
}
.autocad-to-cad-conversion-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/autocad-to-cad-conversion-services.png) center center no-repeat;
    background-size: cover;
}
.blog-writing-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/blog-writing-service-banner.webp) center center no-repeat;
    background-size: cover;
}
.book-cover-design-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/book-cover-design-service-banner.jpg) center center no-repeat;
    background-size: cover;
}
.catalog-design-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/catalog-design-service-banner.jpg) center center no-repeat;
    background-size: cover;
}
.cover-letter-writing-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/cover-letter-writing-service-banner.jpeg) center center no-repeat;
    background-size: cover;
}
.display-advertising-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/display-advertising-service-banner.jpg) center center no-repeat;
    background-size: cover;
}
.dropshipping-ecommerce-store {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/dropshipping-ecommerce-store.png) center center no-repeat;
    background-size: cover;
}
.dropshipping-shopify-marketing-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/dropshipping-shopify-marketing-service-banner.webp) center center no-repeat;
    background-size: cover;
}
.dropshipping-store-design-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/dropshipping-shopify-marketing-service-banner.webp) center center no-repeat;
    background-size: cover;
}
.dropshipping-websites-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/shopify-website-development-company-cover.webp) center center no-repeat;
    background-size: cover;
}
.e-commerce-marketing-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/e-commerce-marketing-service-banner.png) center center no-repeat;
    background-size: cover;
}
.email-design-services-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/email-design-services-banner.jpg) center center no-repeat;
    background-size: cover;
}
.google-maps-promotion-services-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/google-maps-promotion-services-banner.png) center center no-repeat;
    background-size: cover;
}
.google-search-engine-marketing-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/google-search-engine-marketing-banner.webp) center center no-repeat;
    background-size: cover;
}
.instagram-marketing-ads-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/instagram-marketing-ads-banner.png) center center no-repeat;
    background-size: cover;
}
.landing-page-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/landing-page-design-banner.jpg) center center no-repeat;
    background-size: cover;
}
.linkedin-profile-optimization-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/linkedin-profile-optimization-banner.png) center center no-repeat;
    background-size: cover;
}
.logo-animation-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/logo-animation-banner.png) center center no-repeat;
    background-size: cover;
}
.menu-design-service-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/menu-design-service-banner.jpg) center center no-repeat;
    background-size: cover;
}
.packaging-label-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/packaging-label-design-banner.webp) center center no-repeat;
    background-size: cover;
}
.presentation-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/presentation-design-banner.png) center center no-repeat;
    background-size: cover;
}
.print-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/print-design-banner.jpg) center center no-repeat;
    background-size: cover;
}
.product-description-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/product-description-banner.webp) center center no-repeat;
    background-size: cover;
}
.responsive-web-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/responsive-web-design-banner.webp) center center no-repeat;
    background-size: cover;
}
.resume-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/resume-design-banner.jpg) center center no-repeat;
    background-size: cover;
}
.resume-writing-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/resume-writing-banner.webp) center center no-repeat;
    background-size: cover;
}
.search-engine-marketing-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/search-engine-marketing-banner.jpg) center center no-repeat;
    background-size: cover;
}
.shopify-marketing-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/shopify-marketing-banner.jpg) center center no-repeat;
    background-size: cover;
}
.signage-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/signage-design-banner.webp) center center no-repeat;
    background-size: cover;
}
.small-business-marketing-consultant-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/small-business-marketing-consultant-banner.jpg) center center no-repeat;
    background-size: cover;
}
.small-business-website-design-development {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/small-business-website-design-development.png) center center no-repeat;
    background-size: cover;
}
.snapchat-advertising-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/snapchat-advertising-banner.webp) center center no-repeat;
    background-size: cover;
}
.social-media-design-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/social-media-design-banner.jpg) center center no-repeat;
    background-size: cover;
}
.tax-consultant-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/tax-consultant-banner.jpg) center center no-repeat;
    background-size: cover;
}
.text-animation-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/text-animation-banner.png) center center no-repeat;
    background-size: cover;
}
.web-banner-services {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/web-banner-services.png) center center no-repeat;
    background-size: cover;
}
.youtube-video-editor-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/youtube-video-editor-banner.jpg) center center no-repeat;
    background-size: cover;
}
.youtube-promotion-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/youtube-promotion-banner.png) center center no-repeat;
    background-size: cover;
}
.web-developer-banner {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/web-developer-banner.png) center center no-repeat;
    background-size: cover;
} */

/* .ads-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/) center center no-repeat;
    background-size: cover;
}
.ads-management {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/new/) center center no-repeat;
    background-size: cover;
} */


