/* ------global brush-text ----*/
.brush-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 6px;
  padding-top: 15px;
}

.brush-text::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 60%;
  background: var(--lightColor);
  z-index: -1;
  transform: skew(-15deg);
  border-radius: 8px;
  opacity: 0.85;
}

.bg-lightColor{
  background-color: #f9f7f7 !important;
}
.text-orange{
  color: var(--lightColor);
}
.bg-orange{
  background-color: var(--lightColor);
}
.bg-gradient{
   background: linear-gradient(135deg, var(--orangeColor), #5e75f5) !important;
}
/* ------global brush-text end ----*/


/* -----------------top header flag------------ */
.country-item {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  background-color: #f2f2f2;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #e3e3e3;
  width: 70px;
}

.country-item:hover {
  background-color: var(--lightColor);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* -----------------top header flag end----------- */


/* -------------------home page trusted company section end------------------ */
    #trusted-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 5rem 1.5rem;
        text-align: center;
    }
  
    #trusted-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2.5rem 2.5rem;
        list-style: none;
        padding: 0;
        margin: 2.5rem auto 0;
        max-width: 900px;
    }

    #trusted-section li img {
        height: 32px;
        object-fit: contain;
        display: block;
    }

    /* Button */
    #trusted-section .btn-problem {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        border: 1px solid #ccc;
        border-radius: 9999px;
        background: #fff;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    #trusted-section .btn-problem:hover {
        background: #f5f5f5;
    }

    #trusted-section .button-container {
        margin-top: 3rem;
        display: flex;
        justify-content: center;
    }

    #trusted-section .btn-problem svg {
        width: 16px;
        height: 16px;
    }
/* -------------------home page trusted company section end------------------ */



/* -------------------hire expert accountants------------------ */
.outsourcing-section {
  background: var(--purpleColor);
}

.outsourcing-section .section-title {
  color: var(--newGreen);
  font-size: 2.4rem;
  font-weight: 700;
}


/* Flip Card Style */
.flip-card {
  background: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 20px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 25px 20px;
  border: 2px solid transparent;
  transition: 0.4s;
}

/* FRONT */
.flip-card-front {
  background: var(--whiteColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-image: linear-gradient(45deg, var(--blue-color), var(--sky-blue)) 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.flip-card-front h4 {
  margin-top: 15px;
  font-weight: 600;
}

.role-tag {
  font-size: 0.9rem;
  color: var(--orangeColor);
  margin-top: 5px;
  font-style: italic;
}

/* BACK */
.flip-card-back {
  background: #e9e5e5;
  color: var(--white-color);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-back h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.flip-card-back ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.flip-card-back ul li {
  margin: 7px 0;
  font-size: 0.95rem;
}

/* Profile Image */
.profile-img {
  border-radius: 50%;
  border: 0px solid #f3d3d3ff;
  width: 160px;
  height: 160px;
  object-fit: cover;
  transition: border-color 0.3s;
}

.flip-card:hover .profile-img {
  border-color: var(--orange-color);
}

/* Badges */
.badge-top {
  position: absolute;
  top: 10px;
  left: 15px;
  background: var(--sky-blue);
  color: var(--dark-blue);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.badge-top.special {
  background: var(--orange-color);
  color: var(--white-color);
}

.pricing-badges span {
  display: inline-block;
  margin: 0 5px;
  padding: 5px 12px;
  background: #c0bfbf;
  color: var(--dark-blue);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 10px;
}

.btn-custom {

  background: var(--ddd, linear-gradient(91deg, #FF0A54 0.78%, #FF6F00 99.88%));
  color: var(--whiteColor);
  padding: 8px 18px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-custom:hover {
  background: var(--newGreen);
}

.btn-outline {
  background: var(--newGreen);
  color: var(--whiteColor);
  border: 2px solid var(--white-color);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {

  background: transparent;
  color: var(--blue-color);
}

/* Highlight middle card */
.featured-card .flip-card-front {
  border-image: linear-gradient(45deg, var(--orange-color), var(--sky-blue)) 1;
  box-shadow: 0 10px 35px rgba(242, 101, 34, 0.4);
}

.featured-card .flip-card-back {
  background: var(--orange-color);
}

/* -------------------hire expert accountants end------------------ */


/*-------------------- service pages hero section --------------*/
.hero-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #6a1b9a, #8e24aa, #ab47bc);
  color: var(--whiteColor);
  overflow: hidden;
  font-family: var(--bodyFonts);
  clip-path: ellipse(120% 100% at 50% 0%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Left Content */
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--whiteColor);
}

.hero-title span {
  color: var(--greenColor);
  background: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}

.hero-subtext {
  font-size: 1.1rem;
  margin: 0px 0px 30px 0;
  max-width: 500px;
  color: #f3e5f5;
}

.hero-section .btn-hero {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--greenColor);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.hero-section .btn-hero:hover {
  background: #e64a19;
}

/* Right Form */
.hero-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 3;
}

.hero-badge {
  background: var(--greenColor);
  display: inline-block;
  padding: 6px 15px;
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--titleColor);
  margin-bottom: 20px;
}

.hero-form-box input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
}

.btn-form {
  width: 100%;
  background: var(--orangeColor);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
}

.btn-form:hover {
  background: #e64a19;
}

.form-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 12px;
  text-align: center;
}

/* Background Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}

.shape-1 {
  width: 220px;
  height: 220px;
  background: #fff;
  top: -40px;
  left: -40px;
}

.shape-2 {
  width: 280px;
  height: 280px;
  background: var(--greenColor);
  bottom: -70px;
  right: -70px;
}

.shape-3 {
  width: 160px;
  height: 160px;
  background: var(--orangeColor);
  top: 25%;
  right: 12%;
}

/*-------------------- service pages hero section end --------------*/



/*-------------------- service pages first section who is this service for --------------*/

.why-choose-qb {
  background-color: #fdfdff;
  font-family: var(--bodyFonts);
}

.choose-heading {
  font-family: var(--headerFonts);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--titleColor);
}

.choose-subtitle {
  color: var(--bodyColor);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.choose-box {
  background-color: var(--whiteColor);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 10px solid #530b0b;
}

.choose-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.box-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--orangeColor);
  margin-bottom: 1rem;
}

.choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.choose-list li {
  font-size: 1rem;
  color: var(--bodyColor);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.choose-list i {
  font-size: 1rem;
  color: var(--newGreen);
  margin-right: 0.6rem;
}

.choose-btn {
  border: 1px solid;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  color: var(--whiteColor);
  background-color: var(--greenColor);
}

.choose-btn:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

/*-------------------- service pages first section who is this ervice for end--------------*/

/*---------hire quickbook page service owl carousel end ---------*/
.qb-pro-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--orangeColor), #5e75f5);
}

.qb-pro-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.qb-pro-left {
  flex: 1 1 45%;
}

.qb-pro-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--whiteColor);
}

.qb-pro-carousel {
  flex: 1 1 50%;
}

.qb-pro-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border-top: 4px solid var(--orangeColor);
  transition: all 0.3s ease;
  height: 330px;
  margin: 10px;
}

.qb-pro-icon {
  font-size: 2.4rem;
  color: var(--lightColor);
  margin-bottom: 15px;
}

.qb-pro-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--titleColor);
  margin-bottom: 12px;
}

.qb-pro-card ul {
  padding-left: 20px;
  color: var(--bodyColor);
  font-size: 0.95rem;
  line-height: 1.5;
}

.qb-pro-card ul li {
  margin-bottom: 8px;
  list-style: disc;
}

@media (max-width: 768px) {
  .qb-pro-container {
    flex-direction: column;
  }

  .qb-pro-left,
  .qb-pro-carousel {
    flex: 1 1 100%;
  }
}

/*---------hire quickbook page service owl carousel end ---------*/


/*---------hire quickbook page Outsourced QuickBooks Accounting Services and 4 cards in right ---------*/
.qb-left h5 {
  font-family: var(--headerFonts);
  font-weight: 600;
  font-size: 1rem;
  color: var(--orangeColor);
  margin-bottom: 0.5rem;
  position: relative;
}

.qb-left h2 {
  font-size: 2.2rem;
  font-family: var(--headerFonts);
  color: var(--titleColor);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.qb-left p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/*---------hire quickbook page Outsourced QuickBooks Accounting Services and 4 cards in right ---------*/


/*---------before footer cta form ---------*/

.hire-va-section {
  background: #f4e1e1;

  padding: 80px 0;
  font-family: var(--bodyFonts);
}

.hire-va-content {
  padding-right: 30px;
}

.hire-va-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--titleColor);
  line-height: 1.3;
}

.hire-va-title span {
  background: var(--lightColor);
  color: #fff;
  padding: 5px 15px;
  border-radius: 30px;
}

.hire-va-subtitle {
  font-size: 1rem;
  margin: 10px 0 20px;
  color: var(--bodyColor);
}

.hire-va-highlight {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--orangeColor);
}

.hire-va-text {
  font-size: 1rem;
  margin-bottom: 20px;
}

.trial-btn {
  display: inline-block;
  background: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
  color: var(--titleColor);
  text-decoration: none;
}

.trial-btn:hover {
  background: var(--orangeColor);
  color: #fff;
}

.hire-va-form {
  background: #fff;
}

.form-title {
  font-weight: 700;
  color: var(--titleColor);
}

.btn-submit {
  background: var(--greenColor);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: background .3s ease;
}

.btn-submit:hover {
  background: #099b34;
}


/*---------before footer cta form end---------*/

/*--------- Choose from Our 3 Friendly Hiring Models-------------- */
.hiring-section {
  text-align: center;
  padding: 60px 20px;
}

.hiring-section h2 {
  font-family: var(--headerFonts);
  font-size: 28px;
  color: var(--titleColor);
  margin-bottom: 10px;
}

.hiring-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--bodyColor);
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.hiring-card {
  background-color: var(--whiteColor);
  border: 2px solid var(--greenColor);
  border-radius: 10px;
  width: 300px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hiring-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hiring-card h3 {
  font-family: var(--headerFonts);
  font-size: 22px;
  color: var(--titleColor);
  margin-bottom: 20px;
}

.hiring-card .icon {
  font-size: 40px;
  color: var(--orangeColor);
  margin-bottom: 20px;
}

.hiring-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--bodyColor);
}

.hiring-card ul li::before {
  content: "✔";
  color: var(--greenColor);
  margin-right: 10px;
  font-weight: bold;
}

.hiring-card .btn {
  background-color: var(--greenColor);
  color: var(--whiteColor);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--transition);
  display: inline-block;
}

.hiring-card .btn:hover {
  background-color: var(--lightColor);
}

@media (max-width: 1000px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}

/*--------- Choose from Our 3 Friendly Hiring Models end-------------- */


/*------------how it works ----------------*/
.bg-gradient {
  background: linear-gradient(135deg, var(--orangeColor), #5e75f5);
}

.how-it-works {
  background: linear-gradient(135deg, var(--orangeColor), #5e75f5);
  color: var(--whiteColor);
  font-family: var(--bodyFonts);
  position: relative;
  overflow: hidden;
}

.hiw-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--whiteColor);
}

.hiw-title span {
  color: var(--greenColor);
}

.hiw-subtext {
  font-size: 1rem;
  color: #e0e0e0;
  max-width: 650px;
  margin: 0 auto;
}

/* Card Styling */
.hiw-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hiw-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.hiw-icon {
  width: 70px;
  height: 70px;
  background: var(--greenColor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hiw-step {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orangeColor);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hiw-title-small {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--titleColor);
}

.hiw-desc {
  font-size: 0.95rem;
  color: var(--bodyColor);
  margin-top: 10px;
}

/*------------how it works end-----------------*/

/* --------------------quickbook service page More Than Just QuickBooks Help end------------------*/
.growth-partner-section {
  background-color: #f9f9fb;
  font-family: var(--bodyFonts);
}

.partner-heading {
  font-family: var(--headerFonts);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--titleColor);
}

.partner-subtitle {
  color: var(--bodyColor);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.partner-card {
  background-color: var(--whiteColor);
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.partner-icon {
  font-size: 2rem;
  color: var(--greenColor);
  margin-bottom: 1rem;
}

.partner-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--titleColor);
}

.partner-subheading {
  font-size: 1.6rem;
  color: var(--orangeColor);
  font-weight: 600;
  margin-bottom: 1rem;
}

.partner-btn {
  background-color: var(--orangeColor);
  color: var(--whiteColor);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.partner-btn:hover {
  background-color: var(--greenColor);
  color: var(--whiteColor);
}

/* --------------------quickbook service page More Than Just QuickBooks Help end------------------*/

/* -------------------faq section end  -------------------*/
.faq-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-family: var(--headerFonts);
  font-size: 2.5rem;
  color: var(--titleColor);
}

.faq-header p {
  color: var(--bodyColor);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-card {
  background-color: var(--whiteColor);
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #e3eafc;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: linear-gradient(90deg, var(--orangeColor) 0%, #5e75f5 100%);
  color: var(--whiteColor);
  font-family: var(--headerFonts);
  transition: background 0.3s ease;
}

.faq-question:hover {
  filter: brightness(1.1);
}

.faq-answer {
  background-color: #f9fbff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--bodyColor);
  font-size: 0.95rem;
  padding: 0 24px;
}

.faq-answer.open {
  padding: 20px 24px;
}


.faq-icon {
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 16px 20px;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 20px;
  }
}


.faq-answer.open {
  max-height: 1000px !important;
  padding: 1rem 1.5rem;
}

/* -------------------faq section end  -------------------*/


/*----------- financial service page ------------*/
.fva-section {
  padding: 100px 20px;
  background: #f9fafc;
  font-family: var(--bodyFonts);
}

.fva-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.fva-title .highlight {
  color: var(--orangeColor);
}

.fva-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 20px;
}

/*----------- financial service page end------------*/


/* -------------------------digital marketing virtual assistant page end----------- */

/* --------------seo section ---------- */
.seo-section {
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.seo-title {
  font-size: 32px;
  font-weight: bold;
  color: #111340;
}

.seo-title span {
  color: var(--orangeColor);
}

.seo-subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.seo-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.seo-card {
  width: 500px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.problems {
  background-color: #fff5f5;
  border: 2px solid #ffcccc;
}

.solutions {
  background-color: #f3fff3;
  border: 2px solid #a1e6a1;
}

.seo-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #222;
}

.seo-card ul {
  list-style: none;
  padding: 0;
}

.seo-card li {
  font-size: 15px;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.seo-card li span {
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 16px;
}




.seo-impact-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
  color: #1d1d4f;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.impact-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.impact-card img {
  height: 55px;
  margin-bottom: 20px;
}

.impact-card h3 {
  font-size: 1.2rem;
  color: #1a1a40;
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}





.seo-services {
  padding: 60px 20px;
  text-align: center;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.seo-item {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(145deg, #ffffff, #f1f3f8);
  padding: 15px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: default;
}

.seo-item:hover {
  transform: translateY(-5px);
  background-color: #eef1fd;
  color: var(--orangeColor);
}

.cta {
  margin-top: 40px;
}

.seo-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #14149b;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s ease;
}

.seo-cta-btn:hover {
  background-color: #0f0f6d;
}

/* --------------seo section end----------- */

/* --------------ppc section ----------- */
.ppc-section {
  padding: 80px 20px;
}

.ppc-container {
  max-width: 1200px;
  margin: auto;
}

.ppc-intro {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

.ppc-services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.ppc-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
  padding: 30px;
  text-align: center;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.ppc-box:hover {
  transform: translateY(-10px);
}

.ppc-box img {
  height: 60px;
  margin-bottom: 20px;
}

.ppc-box h3 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 15px;
}

.ppc-box ul {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  color: #555;
}

.ppc-box ul li {
  margin-bottom: 10px;
}

.ppc-footer {
  margin-top: 60px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.07);
}

.ppc-footer h4 {
  font-size: 1.2rem;
  color: #0a2540;
}

.ppc-footer p {
  color: #fff;
  max-width: 700px;
  margin: 10px auto 30px;
}

.cta-btn {
  background: #007BFF;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .ppc-services {
    flex-direction: column;
  }
}

/* --------------ppc section end----------- */

/* --------------social media end----------- */
.smo-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.smo-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.smo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.smo-card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.smo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.smo-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0077b6;
}

.smo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.smo-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Platform-specific colors (optional) */
.facebook i {
  color: #3b5998;
}

.instagram i {
  color: #e1306c;
}

.linkedin i {
  color: #0077b5;
}

.twitter i {
  color: #1da1f2;
}

.pinterest i {
  color: #bd081c;
}

.youtube i {
  color: #ff0000;
}

.tiktok i {
  color: #000000;
}

/* --------------social media end----------- */

/* -------------------------digital marketing virtual assistant page end----------- */


/* -------------------------website developement virtual assistant page ---------- */

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #f0f0f0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.tech-item i {
  margin-right: 10px;
  font-size: 20px;
  color: #0ebc40;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}

.custom-services-list {
  list-style: none;
  padding-left: 0;
  color: #fff;
}

.custom-services-list li {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
}

.custom-services-list li i {
  margin-right: 10px;
  color: #0ebc40;
}





.highlighted {
  color: var(--orangeColor);
}

.marquee-wrapper {
  overflow: hidden;
  background: #fff;
  border: 2px dashed var(--orangeColor);
  border-radius: 10px;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  animation: scrollText 30s linear infinite;
  white-space: nowrap;
  gap: 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--orangeColor);
  text-transform: uppercase;
}

.marquee-track span {
  flex-shrink: 0;
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

.value-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card h4 {
  color: var(--orangeColor);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p {
  font-size: 15px;
  color: var(--bodyColor);
  line-height: 1.6;
}

.value-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* -------------------------website developement virtual assistant page ---------- */

/* ------------------------graphic desiner virtual assistant page ---------- */

.va-services-section {
  background-color: var(--whiteColor);
}

.section-title {
  font-family: var(--headerFonts);
  color: var(--titleColor);
  font-size: 2.2rem;
  font-weight: 700;
}

.section-subtitle {
  font-family: var(--bodyFonts);
  color: var(--bodyColor);
  font-size: 1.1rem;
}

.va-card {
  background-color: var(--orangeColor);
  padding: 2rem;
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.va-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.va-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid var(--whiteColor);
}

.va-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--whiteColor);
  margin-top: 1rem;
}

.va-desc {
  color: var(--whiteColor);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.va-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: var(--lightColor);
  color: var(--whiteColor);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.va-btn:hover {
  background-color: #fff;
  color: var(--orangeColor);
  transform: scale(1.05);
}


.graphic-va-section {
  font-family: var(--bodyFonts);
  color: var(--whiteColor);
  position: relative;
  overflow: hidden;
}


.services-block {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, var(--orangeColor), var(--orangeColor));
}

.services-block .text-title {
  color: var(--titleColor);
  font-weight: 700;
  font-size: 30px;
}

.service-item {
  text-align: center;
  background-color: #f7f9ff;
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-item .icon {
  font-size: 2.5rem;
  color: var(--orangeColor);
  margin-bottom: 15px;
}



.video-va-section {
  position: relative;
  overflow: hidden;
  color: var(--whiteColor);
}
.video-va-bg {
  position: absolute;
  inset: 0;
  background:  var(--orangeColor);
  z-index: -1;
}

.video-va-image-wrapper {
  position: relative;
  display: inline-block;
}
.video-va-image {
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
  animation: fadeZoom 1.2s ease-in-out both;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 81, 181, 0.4);
  border-radius: 14px;
  opacity: 0;
  transition: var(--transition);
}
.video-overlay i {
  font-size: 48px;
  color: var(--whiteColor);
}
.video-va-image-wrapper:hover .video-overlay {
  opacity: 1;
}
.video-va-section .lead{
    background: rgba(255,255,255,0.1);
    padding: 10px;
    color: #fff;
}
.video-va-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.video-va-card i {
  font-size: 28px;
  color: var(--orangeColor);
  margin-bottom: 12px;
}
.video-va-card h5 {
  color: var(--titleColor);
  font-weight: 600;
  margin-bottom: 8px;
}
.video-va-card p {
  font-size: 14.5px;
  color: var(--bodyColor);
  margin: 0;
}
.video-va-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.btn-video-va {
  background: var(--lightColor);
  color: var(--whiteColor);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  transition: var(--transition);
}
.btn-video-va:hover {
  background: var(--newGreen);
  transform: translateY(-3px);
}
.video-va-cta {
  background: rgba(255,255,255,0.1);
  padding: 30px 20px;
  border-radius: 14px;
}
@keyframes fadeZoom {
  0% {opacity: 0; transform: scale(0.92) translateY(30px);}
  100% {opacity: 1; transform: scale(1) translateY(0);}
}

/* ------------------------graphic desiner virtual assistant page end ---------- */