/********** Template CSS **********/
body,
html {
  overflow-x: hidden !important;
}

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


/*** 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);
  color: #FFFFFF !important;
}

.talk-btn:hover {
  color: var(--primary) !important;
}

.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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 2;
  /* ensure text is above overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Buttons */
.carousel-caption .btn {
  margin: 6px 10px;
}

.carousel-caption .banner-title {
  font-size: 55px !important;
}

/* Small screens (≤576px) */



@media (max-width: 576px) {
  .carousel-item img {
    width: 100%;
    height: 100vh;
    /* consistent full-screen height */
    object-fit: cover;
  }
}


/*** 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 {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px;
}

/* ✅ Image container fix */
.team-item .team-img {
  width: 100%;
  height: 350px;
  /* adjust as needed (300–400px works well) */
  overflow: hidden;
}

.team-item .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures consistent cropping */
  transition: 0.5s;
}

/* ✅ Hover zoom effect */
.team-item:hover .team-img img {
  transform: scale(1.15);
}

/* ✅ Social overlay */
.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  border-radius: 10px;
}

.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, 0.7);
}

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

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

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

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

.team-social a.btn svg {
  width: 14px;
  height: 14px;
}


.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/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

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

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

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

.trust-logo {
  width: 150px;
  height: 100px;
  /* Fixed height for uniformity */
  object-fit: contain;
  /* Keeps aspect ratio without cropping */
  /* Optional: makes all logos gray initially */
  opacity: 0.8;
  /* Subtle tone */
  transition: all 0.3s ease;
  /* Smooth hover animation */
}

.trust-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
  /* Slight zoom on hover */
}

@media (max-width: 768px) {
  .trust-logo {
    width: 90px;
    height: 60px;
  }
}

.trust-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  height: 110px;
}

.trust-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.trust-logo {
  width: 100px;
  height: 60px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.4s ease;
}

/* New Hover Glow + Pop Effect */
.trust-card:hover .trust-logo {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.4));
}

@media (max-width: 768px) {
  .trust-card {
    height: 90px;
    padding: 15px;
  }

  .trust-logo {
    width: 80px;
    height: 50px;
  }
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary, #0d6efd);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

/* feature */
.feature-card {
  transition: all 0.4s ease;
  border: none;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f9fafc, #eef2ff);
}

.feature-icon {
  transition: background 0.4s ease, transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: #0d6efd;

}

/* ===== PROCESS STEP STYLES ===== */
.process-wrapper {
  position: relative;
  margin-top: 50px;
}

.process-line {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #06A3DA;
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-circle {
  width: 90px;
  height: 90px;
  background: #fff;
  border: 4px solid #06A3DA;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #06A3DA;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 5px #e7f0ff;
}

.process-step:hover .step-circle {
  background: #06A3DA;
  color: #fff;
  transform: scale(1.1);
}

.step-icon {
  font-size: 28px;
  color: #06A3DA;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.process-step:hover .step-icon {
  color: #0490c3;
}

.step-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: #555;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .process-line {
    display: none;
  }

  .process-step {
    margin-bottom: 40px;
  }

  .step-circle {
    width: 75px;
    height: 75px;
  }
}

/* cta */
.cta-section {
  background-color: #EEF9FF;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}



.cta-section h2 {
  font-size: 2rem;
}

.cta-section p {
  max-width: 650px;
  margin: 0 auto;
  color: #555;
}

.cta-section .btn {

  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* footer */
.footer {
  font-size: 15px;
  line-height: 1.8;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.btn-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-social:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.footer .newsletter-form input {
  border-radius: 10px 0 0 10px;
}

.footer .newsletter-form .btn {
  border-radius: 0 10px 10px 0;
}

.footer-bottom {
  font-size: 14px;
  color: #bbb;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #06A3DA;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* mega menu */
/* ===== Mega Menu Styling ===== */
.mega-menu {
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 100% !important;
  width: 95% !important;
  background: #ffffff !important;
  color: #212529;
  border-top: 3px solid var(--primary);
  border-radius: 0.5rem;
  animation: fadeIn 0.3s ease-in-out;
}

.mega-menu .dropdown-item {
  color: #212529 !important;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.mega-menu .dropdown-item:hover {
  color: var(--primary) !important;
  transform: translateX(5px);
}

.mega-menu h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }
}

/* Mobile View Adjustments */
@media (max-width: 991.98px) {
  .mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    border: none;
    background: #fff !important;
    box-shadow: none;
    padding: 1rem;
  }

  .mega-menu .dropdown-item {
    padding: 8px 0;
    color: var(--dark) !important;
  }
}

/* Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* @media (max-width: 768px) {
  #header-carousel .carousel-item img {
    height: 90vh; 
    object-fit: cover;
  }

  #header-carousel .carousel-caption {
    bottom: 15%;
    padding: 0 1rem;
  }

  #header-carousel .carousel-caption .p-3 {
    max-width: 100%;
  }

  #header-carousel h1 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }

  #header-carousel h5 {
    font-size: 1rem !important;
    margin-bottom: 10px;
  }

  #header-carousel .btn {
    padding: 8px 16px !important;
    font-size: 0.9rem;
    margin: 5px 4px;
  }
}


@media (max-width: 480px) {
  #header-carousel .carousel-item img {
    height: 70vh;
  }

  #header-carousel h1 {
    font-size: 1.4rem !important;
  }

  #header-carousel h5 {
    font-size: 0.9rem !important;
  }

  #header-carousel .carousel-caption {
    bottom: 10%;
  }
} */

/* mission  */
#mission-vision {
  position: relative;
  background: url('../img/new/vision (2).jpg') center center / cover no-repeat fixed;

}

/* Dark overlay */
#mission-vision .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.7);
  z-index: 1;
}

#mission-vision .container {
  position: relative;
  z-index: 2;
}

.mission-card {
  background: #fff;
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--bs-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: 0.4s ease;
}

.mission-card:hover .icon-wrapper {}

.mission-card img {
  border-radius: 12px;
  object-fit: cover;
  height: 180px;
  width: 100%;
}

@media (max-width: 767px) {
  #mission-vision {
    background-attachment: scroll;
  }

  .mission-card img {
    height: 150px;
  }
}

/* blog */

/* Banner Section */
.blog-banner {
  background: url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70') center/cover no-repeat fixed;
  padding: 140px 0;
  position: relative;
}

.blog-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.blog-banner .container {
  position: relative;
  z-index: 2;
}

/* Articles */
.article-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  background: #fff;
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card .article-content {
  padding: 20px;
}

.article-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.article-card:hover {
  transform: translateY(-6px);
}

.read-more {
  font-weight: 500;
  color: #007bff;
  text-decoration: none;
}

/* News Section */
.news-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.news-card img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

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

/* Tax Updates (Parallax) */
.tax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.tax-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.tax-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

/* Animated Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  transition: transform 0.4s ease, background 0.4s ease;
}

.tax-card:hover .icon-circle {
  background: rgba(255, 193, 7, 0.25);
  transform: scale(1.1) rotate(8deg);
}

.tax-card h5 {
  margin-top: 15px;
  font-size: 1.1rem;
}

.tax-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Guides */
.guide-card {
  height: 350px;
}

.guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guide-card:hover img {
  transform: scale(1.1);
}

.guide-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* semi-transparent black */
  color: #fff;
  transition: background 0.5s ease, transform 0.5s ease;
  opacity: 1;
  /* always visible */
}

.guide-card:hover .overlay {
  background: rgba(0, 0, 0, 0.75);
  /* slightly darker on hover */
}

.guide-card h5 {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.guide-card .btn {
  border-radius: 50px;
  transition: 0.3s;
}

.guide-card .btn:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.read-more {
  color: #06A3DA;
  ;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-banner {
    background-attachment: scroll;
    padding: 100px 0;
  }

  .news-card img {
    width: 90px;
    height: 90px;
  }
}

.certification-section {
  background-color: #fff;
}

/* Shift heading toward right */
.heading-left {
  padding-left: 150px;
  /* You can increase to 70px if needed */
}

.certification-section h6 {
  color: #0056d2;
  letter-spacing: 0.5px;
}

.certification-section h2 {
  color: #111;
  font-weight: 700;
}

.trust-card {
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
}

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

.trust-logo {
  max-height: 90px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .heading-left {
    padding-left: 0;
    text-align: center;
  }

  .certification-section h2 {
    font-size: 1.7rem;
  }

  .certification-section p {
    font-size: 0.95rem;
  }

  .trust-logo {
    max-height: 70px;
  }
}

/* service */
.service-item {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-10px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon i {
  font-size: 1.8rem;
}

/* blog */
.category-list a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-list a:hover {
  background-color: #f0f4ff;

  transform: translateX(4px);
}

.category-list i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.category-list a:hover i {
  transform: translateX(4px);
}