/* ------------------hero section -------------------- */
  .outsourced-hero {
    background: linear-gradient(135deg, var(--dark-blue), var(--blue-color));
    color: var(--white-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .outsourced-hero::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--sky-blue);
    opacity: 0.15;
    border-radius: 50%;
  }

 .outsourced-hero .hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
  }

  .outsourced-hero .hero-subtitle {
    margin: 20px 0;
    font-size: 22px;
    color: var(--light-color);
    /* max-width: 550px; */
  }

  .hero-cta {
    margin-top: 30px;
  }

  .btn-hero {
    background: var(--orange-color);
    color: var(--white-color);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
  }

  .btn-hero:hover {
    background: var(--sky-blue);
    color: var(--black-color); 
  }

 .outsourced-hero .btn-outline {
    margin-left: 15px;
    padding: 14px 28px;
    border: 2px solid var(--white-color);
    border-radius: 50px;
    color: var(--white-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
  }

  .btn-outline:hover {
    background: var(--white-color);
    color: var(--blue-color);
  }

  .hero-trust {
    margin-top: 20px;
    font-size: 15px;
    opacity: 0.9;
  }

  .hero-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    animation: floatImg 4s ease-in-out infinite;
  }

  @keyframes floatImg {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-15px);
    }
  }


/*--------- hero-form------------*/
.trial-section {
background: #0a2a66;
display: flex;
justify-content: center;
align-items: center;
padding: 15px 20px;
border-radius: 20px;
}

.trial-section .free-trial-form {
background: #ffffff;
border-radius: 20px;
padding: 40px 30px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
text-align: center;
position: relative;
overflow: hidden;
max-width: 420px;
width: 100%;
}

.trial-section .free-trial-form::before {
content: "";
position: absolute;
width: 200%;
height: 200%;
top: -50%;
left: -50%;
background: linear-gradient(135deg, #3F51B5, #5e75f5);
z-index: 0;
transform: rotate(25deg);
opacity: 0.08;
}

.trial-section .free-trial-form h3 {
font-weight: 700;
font-size: 1.6rem;
color: #00042e;
margin-bottom: 20px;
position: relative;
z-index: 1;
}

.trial-section .free-trial-form .form-control {
border-radius: 12px;
padding: 12px 15px;
margin-bottom: 15px;
border: 1px solid #ddd;
font-size: 15px;
transition: all 0.3s ease;
position: relative;
z-index: 1;
}

.trial-section .free-trial-form .form-control:focus {
border-color: #3F51B5;
box-shadow: 0 0 10px rgba(63, 81, 181, 0.3);
}

.trial-section .free-trial-form .btn-submit {
background: linear-gradient(90deg, #3F51B5, #5e75f5);
border: none;
padding: 14px;
border-radius: 12px;
font-weight: 600;
color: #fff;
width: 100%;
font-size: 16px;
box-shadow: 0 6px 15px rgba(63, 81, 181, 0.4);
transition: all 0.4s ease;
position: relative;
z-index: 1;
}

.trial-section .free-trial-form .btn-submit:hover {
background: linear-gradient(90deg, #5e75f5, #3F51B5);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(63, 81, 181, 0.6);
}

/*---------hero-form------------*/


/* ------------------hero section end---------------------- */


/* ------------  cathy tagline section below hero ------------ */
  .catchy-tagline-alt {
    background: var(--white-color);
    text-align: center;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
  }

  .catchy-tagline-alt h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--black-color);
    line-height: 1.4;
    max-width: 950px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
  }

  .catchy-tagline-alt h2 .highlight {
    position: relative;
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(90deg, var(--orange-color), var(--sky-blue));
    color: var(--white-color);
    border-radius: 10px;
    font-weight: 900;
  }
  
  .catchy-tagline-alt p {
    font-size: 22px;
    font-weight: 500;
    color: var(--blue-color);
    position: relative;
    z-index: 1;
  }

/* ------------  cathy tagline section below hero end ------------ */


/* -------------------- first section with content & 4 small no. cards  in right---------------- */
  .outsourced-seo-section {
    background: linear-gradient(120deg, var(--light-color) 60%, var(--white-color) 40%);
    padding: 90px 0;
  }

  .seo-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--blue-color);
    margin-bottom: 20px;
  }

  .seo-text {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 18px;
    line-height: 1.7;
  }

  .seo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .seo-list li {
    margin-bottom: 12px;
    font-size: 15px;
    padding-left: 28px;
    position: relative;
  }

  .seo-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--orange-color);
    font-weight: bold;
  }

  .btn-seo-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--orange-color);
    color: var(--white-color) !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
   
  }

  .btn-seo-cta:hover {
    background: var(--blue-color);
  }

  .seo-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .stat-box {
    background: var(--blue-color);
    color: var(--white-color);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .stat-box:hover {
    transform: translateY(-8px);
    background: var(--orange-color);
  }

  .stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .stat-box p {
    font-size: 15px;
    margin: 0;
  }
/* -------------------- first section with content & 4 small no. cards  in right end---------------- */


/* ------------------ who we serve section start--------------- */

  .serve-section {
    background: var(--blue-color);
    padding: 100px 20px;
    color: var(--white-color);
  }

  .serve-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  .serve-box {
    background: var(--dark-blue);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .serve-box:hover {
    transform: translateY(-8px);
  }

  .serve-box img {
    width: 70px;
    margin-bottom: 15px;
  }

  .serve-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .serve-box p {
    font-size: 15px;
    line-height: 1.6;
  }

  @media (max-width: 991px) {
    .serve-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .serve-box {
      min-width: 0;
    }
  }

  @media (max-width: 576px) {
    .serve-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 16px;
    }

    .serve-box {
      padding: 24px 18px;
    }
  }
/* ------------------ who we serve section end --------------- */



/* -----------why outsource to Exuberant small content section --------- */
  .outsourced-why-india {
    background: var(--white-color);
    padding: 90px 0;
  }

  .outsourced-why-india .section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--blue-color);
    margin-bottom: 20px;
  }

  .outsourced-why-india .section-header p {
    max-width: 1050px;
    margin: 0 auto 30px;
    font-size: 18px;
  }

  .outsourced-why-india a {
    background-color: var(--orange-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 20px;
  }
  
/* -----------why outsource to Exuberant small content section end--------- */


/* --------------------Professional Services --------------- */
  .our-expertise-section {
    padding: 60px 0;
    background: linear-gradient(var(--light-color), var(--white-color));
    border-top: 2px solid rgba(0, 0, 0, 0.06);
  }

  .section-title .sub-title {
    color: var(--orange-color);
    font-weight: 600;
    margin-bottom: 5px;
  }

  .section-title .main-title {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 40px;
  }

  .expertise-card {
    border: 2px solid var(--blue-color);
    border-left: 7px solid var(--blue-color);
    border-bottom: 7px solid var(--blue-color);
    border-radius: 50px;
    padding: 30px 20px 20px;
    margin-bottom: 30px;
    position: relative;
    background: var(--white-color);
  }

  .expertise-title {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--blue-color);
    color: var(--white-color);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 16px;
  }

  .expertise-card ul {
    padding-left: 20px;
    margin: 0;
    color: var(--black-color);
    font-size: 15px;
  }

  .expertise-card ul li {
    margin-bottom: 8px;
    line-height: 1.6;

    list-style: disc;
  }
/* --------------------Professional Services end --------------- */


 /* -------------------data security section section---------------- */
  .security-section {
    background: var(--light-color);
    padding: 100px 20px;
    text-align: center;
  }

  .security-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
  }

  .security-header p {
    font-size: 18px;
    color: var(--bodyColor);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
  }

  .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }

  .security-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }

  .security-card:hover {
    transform: translateY(-8px);
  }

  .security-card img {
    width: 60px;
    margin-bottom: 20px;
  }

  .security-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--blue-color);
  }

  .security-card p {
    font-size: 15px;
    color: var(--bodyColor);
    line-height: 1.5;
  }

  .security-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-blue);
  }

  .security-btn {
    background: var(--orange-color);
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .security-btn:hover {
    background: var(--blue-color);
  }

   /* -------------------data security section section end----------------- */

   
   /* -------------------hire dedicated virtual accountant ----------------- */
  
  .virtual-accountant-section{
    position: relative;
    padding: 100px 20px;
    background: radial-gradient(circle at top left, #00387A 0%, #002C60 80%);
    color: #fff;
    overflow: hidden;
  }
  .virtual-accountant-section .light-sweep {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
    animation: sweep 5s linear infinite;
    pointer-events: none;
  }

  @keyframes sweep {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(50%);
    }
  }

  .va-heading {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeUp 1s ease-out forwards;
  }

  .va-subtext {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1e6fc;
    animation: fadeUp 1.2s ease-out forwards;
  }

  .va-btn {
    display: inline-block;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .va-btn.primary {
    background-color: var(--orangeColor, #f26522);
    color: #fff;
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.6);
  }

  .va-btn.primary:hover {
    background-color: var(--sky-blue);
    transform: translateY(-3px);
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 🔥 New Row Styling */
  .va-roles-row {
    margin: 40px 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 5px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .va-role-card {
    background: var(--orangeColor, #f26522);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 16px;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
  }
    .va-role-scard {
   background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);    
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 16px;
    color: #fff;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
  }
   .va-role-scard:hover {        
    background: var(--orangeColor, #f26522);
    transform: translateY(8px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  }
  .va-role-card:hover {    
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  }

  /*----------------- hire dedicated virtual accountant end -----------------*/
  

/* ------------------client success stories -------------- -- */
  
  .success-stories {
    background: var(--white-color);
    padding: 100px 20px;
    text-align: center;
  }

  .stories-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-blue);
  }

  .stories-header p {
    font-size: 18px;
    color: var(--bodyColor);
    max-width: 800px;
    margin: 0 auto 60px;
  }

  .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .story-card {
    background: var(--light-color);
    padding: 40px 25px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 20px solid white;
  }

  .story-quote {
    font-size: 50px;
    color: var(--orange-color);
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 20px;
  }

  .story-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
    color: var(--bodyColor);
  }

  .story-card h4 {
    font-size: 15px;
    color: var(--blue-color);
    font-weight: 700;
  }

  .stories-cta {
    margin-top: 50px;
  }

  .stories-btn {
    background: var(--blue-color);
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background .3s;
  }

  .stories-btn:hover {
    background: var(--orange-color);
  }
/* ------------------client success stories end-------------- -- */

 /*-----------------------software--------------------*/
.software-section {
    padding: 90px 20px;
    background: var(--light-color) !important;
  text-align: center;
}
.software-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00387A;
  margin-bottom: 15px;
}
.software-subtext {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.5;
}
.software-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.software-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.software-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.software-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
 /*-----------------------software end--------------------*/

/* ---------------faq section --------------- */
  
  .faq-section {
    padding: 90px 20px;
    background: var(--light-color) !important;
  }

  .faq-header h2 {
    color: var(--dark-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .faq-header p {
    font-size: 16px;
    color: var(--blue-color);
    margin-bottom: 40px;
  }

  .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .faq-item {
    background: var(--white-color);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    transform: translateY(-3px);
  }

  .faq-question {
    width: 100%;
    background: var(--blue-color);
    color: var(--white-color);
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
  }

  .faq-answer p {
    font-size: 15px;
    color: var(--black-color);
    line-height: 1.6;
  }


/* ---------------faq section end---------------- */



/* -------------------hire expert accountants------------------ */
  .outsourcing-section {
    background: var(--light-color);
  }

  .section-title {
    color: var(--dark-blue);
    font-size: 2.4rem;
    font-weight: 700;
  }

  .section-subtitle {
    color: var(--blue-color);
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto;
  }

  /* 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(--white-color);
    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;
    color: var(--dark-blue);
    font-weight: 600;
  }

  .role-tag {
    font-size: 0.9rem;
    color: var(--orange-color);
    margin-top: 5px;
    font-style: italic;
  }

  /* BACK */
  .flip-card-back {
    background: var(--blue-color);
    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: 6px solid var(--sky-blue);
    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: var(--sky-blue);
    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(--orange-color);
    color: var(--white-color);
    padding: 8px 18px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
  }

  .btn-custom:hover {
    background: var(--dark-blue);
  }

  .btn-outline {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
  }

  .btn-outline:hover {
    background: var(--white-color);
    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------------------ */


/* ----------other relavent services end------------- */

@media (max-width: 767px) {
  .outsourced-hero {
    padding: 56px 0 64px;
  }

  .outsourced-hero .hero-title {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.15;
  }

  .outsourced-hero .hero-subtitle {
    margin: 14px 0;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-cta {
    margin-top: 20px;
  }

  .btn-hero,
  .outsourced-hero .btn-outline {
    padding: 12px 18px;
    font-size: 15px;
  }

  .catchy-tagline-alt,
  .outsourced-seo-section,
  .serve-section,
  .outsourced-why-india,
  .faq-section,
  .outsourcing-section,
  .virtual-accountant-section,
  .security-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .catchy-tagline-alt {
    padding-left: 16px;
    padding-right: 16px;
  }

  .catchy-tagline-alt h2 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.2;
  }

  .faq-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .faq-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    margin-bottom: 0;
  }

  .faq-question {
    padding: 14px 44px 14px 16px;
    font-size: 16px;
    line-height: 1.4;
  }

  .catchy-tagline-alt p {
    font-size: 18px;
    line-height: 1.6;
  }

  .seo-title,
  .serve-header h2,
  .section-title,
  .related-services h2 {
    font-size: clamp(26px, 6vw, 32px);
    line-height: 1.2;
  }

  .seo-text,
  .serve-box p,
  .section-subtitle,
  .related-services p {
    font-size: 16px;
    line-height: 1.6;
  }
}
  .related-services {
    margin-bottom: 50px;
  }

  .related-services h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-blue);
  }

  .related-services .col-md-3 {
    border-right: 5px solid var(--orange-color);
  }

  .related-services p {
    font-size: 18px;
    color: var(--bodyColor);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }

  .related-services h4 a {
    text-decoration: underline !important;
    color: black;
  }

/* ----------other relavent services end------------- */
