*{
  font-family: 'Candara', sans-serif;
}
:root {
  --dark-primary: #1a1a1a;
  --dark-secondary: #2d2d2d;
  --accent-red: #dc3545;
  --accent-glow: rgba(220, 53, 69, 0.2);
  --text-primary: #ffffff;
  --text-secondary: #636161;
}


/* CAROUSEL CSS STARTS HERE */

.hero-carousel-section {
  position: relative;
  overflow: hidden;
}

#heroCarousel {
  height: 100vh;
}

.carousel-item {
  height: 100vh;
  background-color: #000;
}

.carousel-item video,
.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.8;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  padding: 0 20px;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-block;
  padding: 15px 30px;
  background:  #53B948;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background:orange;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .carousel-caption h1 {
      font-size: 2.5rem;
  }
  
  .carousel-caption p {
      font-size: 1.2rem;
  }
  
  .btn-hero {
      padding: 12px 25px;
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
      font-size: 2rem;
  }
  
  .carousel-caption p {
      font-size: 1rem;
  }
  
  .btn-hero {
      padding: 10px 20px;
      font-size: 0.9rem;
  }
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgb(66, 43, 1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}


/* CAROUSEL CSS ENDS HERE */


.social-card {
  --bg: #F7FBFD;
  --hover-bg: #185787;
  --hover-text: white;
  text-align: center;
  background: var(--bg);
  padding: 1.5em;
  padding-block: 1.8em;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: .3s cubic-bezier(.6, .4, 0, 1), transform .15s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

@media (max-width: 768px) {
  .col-md-3 {
    margin-bottom: 20px;
  }

  .social-card {
    max-width: 280px;
    margin: 0 auto;
  }
}


.social-card .card__body {
  color: #464853;
  line-height: 1.5em;
  font-size: 1em;
}

.social-card> :not(span) {
  transition: .3s cubic-bezier(.6, .4, 0, 1);
}

.social-card>strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -.035em;
}

.social-card span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--hover-text);
  border-radius: 5px;
  font-weight: bold;
  top: 100%;
  transition: all .3s cubic-bezier(.6, .4, 0, 1);
}

.social-card:hover span {
  top: 0;
  font-size: 1.2em;
}

.social-card:hover {
  background: var(--hover-bg);
}

.social-card:hover>div,
.social-card:hover>strong {
  opacity: 0;
}

/* From Uiverse.io by JkHuger */
.login {
  color: #185787;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-weight: bold;
  font-size: x-large;
}

.card-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 35px;
  background: white;
  box-shadow: 16px 16px 32px #c8c8c8,
    -16px -16px 32px #fefefe;
  border-radius: 8px;
}

/* Regular styles */
.inputBox {
  position: relative;
  width: 500px;
}

/* Media query */
@media (max-width: 768px) {
  .inputBox {
    width: 90%;
  }
}


.inputBox input {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  color: #000;
  font-size: 1em;
  background: transparent;
  border-left: 2px solid #185787;
  border-bottom: 2px solid #185787;
  transition: 0.1s;
  border-bottom-left-radius: 8px;
}

.inputBox span {
  margin-top: 5px;
  position: absolute;
  left: 0;
  transform: translateY(-4px);
  margin-left: 10px;
  padding: 10px;
  pointer-events: none;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 3px;
  border-radius: 8px;
}

.inputBox input:valid~span,
.inputBox input:focus~span {
  transform: translateX(210px) translateY(-15px);
  font-size: 0.8em;
  padding: 5px 10px;
  background: #185787;
  letter-spacing: 0.2em;
  color: #fff;
  border: 2px;
}

.inputBox input:valid,
.inputBox input:focus {
  border: 2px solid #185787;
  border-radius: 8px;
}

.enter {
  border: 1px solid #185787;
}

.enter:hover {
  background-color: #185787;
  color: white;
}

.card {
  --main-color: #000;
  --bg-color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 25px;
  background: var(--bg-color);
  border-radius: 20px;
  position: relative;
  /* Make sure the pseudo-element is positioned relative to the card */
  overflow: hidden;
  /* Hide any overflowing image */
  color: #fff;
  /* Ensure text is white for better visibility */
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: url('../img/favicon.png'); */
  /* Your background image */
  background-size: cover;
  background-position: center;
  z-index: -1;
  /* Ensure the image is placed behind the content */
  opacity: 0;
  /* Initially, the image is hidden */
  transition: opacity 0.5s ease;
  /* Smooth transition for the image visibility */
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  /* Semi-transparent black overlay */
  z-index: -1;
  /* Keep the overlay behind the text but in front of the image */
  opacity: 0;
  /* Initially hidden */
  transition: opacity 0.5s ease;
  /* Smooth transition for the overlay */
}

.card:hover::before {
  opacity: 0.1;
  /* Show the background image when the card is hovered */
}

.card:hover::after {
  /* opacity: 1; */
  /* Show the overlay when the card is hovered */
}

/* Ensure text visibility by adding a slight text shadow */
.card__title,
.card__subtitle,
.card__indicator {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  /* Subtle shadow to make text stand out */
}

.card__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.card___wrapper-acounts {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}

.card___wrapper-acounts>div:nth-child(2) {
  position: absolute;
  left: 25px;
  z-index: -1;
}

.card___wrapper-acounts>div:nth-child(3) {
  position: absolute;
  left: 50px;
  z-index: -2;
}

.card__score {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--main-color);
}

.card__acounts {
  width: 42px;
  height: 42px;
}

.card__acounts svg {
  width: 100%;
  height: 100%;
}

.card__menu {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.card__title {
  font-weight: 900;
  font-size: 25px;
  color: #185787;
}

.card__subtitle {
  margin-top: 15px;
  font-weight: 400;
  font-size: 15px;
  color: var(--main-color);
}

.card__subtitle:hover {
  margin-top: 15px;
  font-weight: 400;
  font-size: 15px;
  color: black;
}

.card__indicator {
  margin-top: 50px;
  font-weight: 500;
  font-size: 14px;
  color: var(--main-color);
}

.card__progress progress {
  width: 100%;
  height: 4px;
  border-radius: 100px;
}

.card__progress progress::-webkit-progress-bar {
  background-color: #00000030;
  border-radius: 100px;
}

.card__progress progress::-webkit-progress-value {
  background-color: var(--main-color);
  border-radius: 100px;
}



.social-icons a {
  transition: transform 0.3s ease;
  display: inline-block;
  color: orange;
}

.social-icons a:hover {
  transform: translateY(-5px);
  color: white !important;
}

.fas,
.fab {
  width: 25px;
}

.col-md-10 {
  border-radius: 0 0 100px 100px;
}

@media (max-width: 991px) {
  .contact-details {
    text-align: center;
  }

  .social-media {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
  }

  .contact-details p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contact-details p {
    font-size: 0.8rem;
  }
}

/* Remove dropdown arrows */
.dropdown-toggle::after {
  display: none;
}



/* OFFCANVAS NAVIGATION BAR CSS STARTS HERE  */


/* Dark Theme Variables */



.offcanvas {
  width: 300px;
  background: #185787;
  border-left: 1px solid #52a38b;
}

.offcanvas-header {
  background: #52a38b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offcanvas-title {
  color: #fff;
  background: linear-gradient(45deg, #185787, #52a38b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-close {
  background-color: #fff;
}

.nav-link {
  color: black !important;
  transition: all 0.3s ease;
  position: relative;
}
.offcanvas-body{
  background-color: white;
}
.nav-link:hover {
  color: #52a38b !important;
  text-shadow: 0 0 10px rgba(82, 163, 139, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: #52a38b;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 50%;
}

.dropdown-menu {
  background: #52a38b;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-item {
  color: #fff;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  /*background: #185787;*/
  color: #fff;
  transform: translateX(10px);
}

.dropdown-divider {
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-danger {
  border-width: 2px;
  transition: all 0.3s ease;
}

.btn-outline-danger:hover {
  box-shadow: 0 0 15px rgba(82, 163, 139, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .offcanvas {
    width: 100%;
    background: linear-gradient(135deg, #185787, #52a38b);
  }

  .navbar-nav {
    text-align: center;
    padding: 2rem 0;
  }

  .nav-item {
    margin: 1rem 0;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }

  .nav-item:hover {
    transform: translateX(10px);
  }

  .dropdown-menu {
    background: transparent;
    border: none;
  }
}

.offcanvas.showing,
.offcanvas.show {
  animation: neonSlide 0.4s ease-out;
}

@keyframes neonSlide {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* For large screens */
@media (min-width: 992px) {
  .nav-link {
    color: #185787 !important;
    /* Using your theme color */
    font-weight: 600;
  }

  .nav-link:hover {
    color: #52a38b !important;
  }

  .nav-link.active {
    color: #52a38b !important;
    font-weight: 700;
  }

  .dropdown-menu {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .dropdown-item {
    color: #185787;
  }

  .dropdown-item:hover {
    background: #f8f9fa;
    color: #52a38b;
  }
}

/* Dropdown Submenu Styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* For mobile/tablet view */
@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    background: transparent;
    border: none;
    padding-left: 1.5rem;
    margin-left: 0;
  }

  .dropdown-submenu>.dropdown-item {
    padding-left: 2rem;
  }
}

/* For desktop view */
@media (min-width: 992px) {
  .dropdown-submenu .dropdown-menu {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .dropdown-submenu:hover>.dropdown-menu {
    display: block;
    animation: neonSlide 0.3s ease-out;
  }

  .dropdown-item.dropdown-toggle::after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid #185787;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Enhanced hover effects */
.dropdown-submenu .dropdown-item:hover {
  background: #185787;
  color: #fff;
  transform: translateX(10px);
}

/* Animation for submenu */
@keyframes neonSlide {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}





/* OFFCANVAS NAVIGATION BAR CSS ENDSS HERE  */

/* CAROUSEL CSS STARTS HERE  */

@import url("https://fonts.googleapis.com/css?family=Titillium+Web:400,700&display=swap");

/* *,
*::before,
*::after {
  box-sizing: border-box;
} */

/* body {
  margin: 0;
  padding: 0;
  font-family: "Titillium Web", sans-serif;
} */

.carousel {
  min-height: 100vh;
  position: relative;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
}

.progress-bar__fill {
  width: 0;
  height: inherit;
  background: #52a38b;
  transition: all 0.16s;
}

.progress-bar--primary {
  z-index: 2;
}

.main-post-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.main-post {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.main-post__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.main-post__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.main-post__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 13, 14, 0.5);
}

.main-post__content {
  position: absolute;
  top: 40%;
  left: 4%;
  transform: translateY(-40%);
  color: #fff;
  width: 90%;
}

.main-post__tag-wrapper {
  margin: 0;
  display: inline-flex;
  overflow: hidden;
}

.main-post__tag {
  font-size: 0.95em;
  background: #185787;
  padding: 6px 18px;
}

.main-post__title {
  font-weight: 700;
  font-size: 1.95em;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.main-post__link {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
}

.main-post__link-text {
  font-size: 0.9em;
}

.main-post__link-icon--arrow {
  margin-left: 12px;
}

.main-post__link-icon--play-btn {
  margin-right: 12px;
}

.main-post__link:hover .main-post__link-text,
.main-post__link:hover .main-post__link-icon--arrow path {
  color: #52a38b;
  stroke: #52a38b;
}

.main-post--active {
  top: 0;
  z-index: 1;
  transition: top 0.9s 0.4s ease-out;
}

.main-post--not-active {
  top: 100%;
  z-index: 0;
  transition: top 0.75s 2s;
}

.main-post.main-post--active .main-post__tag-wrapper {
  width: 25%;
  transition: all 0.98s 1.9s;
}

.main-post.main-post--not-active .main-post__tag-wrapper {
  width: 0;
  transition: width 0.3s 0.2s;
}

.main-post.main-post--active .main-post__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s 1.42s, transform 0.5s 1.4s;
}

.main-post.main-post--not-active .main-post__title {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.2s 0.35s, opacity 0.5s 0.2s;
}

.main-post.main-post--active .main-post__link {
  opacity: 1;
  transition: opacity 0.9s 2.2s;
}

.main-post.main-post--not-active .main-post__link {
  opacity: 0;
  transition: opacity 0.5s 0.2s;
}

.posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 14px;
  position: absolute;
  bottom: 0;
  max-width: 95%;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

.post {
  background: rgba(14, 13, 14, 0.6);
  opacity: 0.3;
  color: #fff;
  position: relative;
  padding: 16px 20px;
  transition: opacity 0.2s linear;
}

.post__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
}

.post__tag {
  color: #80837e;
}

.post__title {
  font-weight: 400;
  font-size: 0.95em;
  line-height: 1.5;
}

.post--active {
  opacity: 1;
  background: rgba(14, 13, 14, 0.75);
  pointer-events: none;
}

.post--disabled {
  pointer-events: none;
}

.post:hover {
  cursor: pointer;
  opacity: 1;
}

.hide-on-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .main-post__title {
    font-size: 2.9em;
  }
}

@media screen and (min-width: 1024px) {
  .hide-on-mobile {
    display: grid;
  }

  .hide-on-desktop {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .main-post__content {
    width: 45%;
  }

  .posts-wrapper {
    left: 80%;
    transform: translateX(-80%);
    max-width: 70%;
  }
}




/* CAROUSEL CSS ENDS HERE  */

/* ABOUT SECTION CSS STARTS HERE  */

.card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-5px);
}

.background-text {
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .background-text {
    font-size: 120px !important;
  }
}

@media (max-width: 576px) {
  .background-text {
    font-size: 120px !important;
  }
}


.background-text-about {
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .background-text-about {
    margin-left: 110px;
    font-size: 120px !important;
  }
}

@media (max-width: 576px) {
  .background-text-about {
    font-size: 120px !important;
  }
}



.main-heading {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.heading-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 auto;
  position: relative;
  display: inline-block;
  padding: 0 60px;
  /* Space for decorative elements */
}

.text-primary {
  color: #52a38b;
}

.text-secondary {
  color: #185787;
}

.heading-accent {
  width: 120px;
  height: 4px;
  margin: 1rem auto 0;
  background: linear-gradient(to right, #52a38b, #185787);
  border-radius: 2px;
}

.heading-text::before,
.heading-text::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.heading-text::before {
  left: 15px;
  border: 3px solid #52a38b;
}

.heading-text::after {
  right: 15px;
  border: 3px solid #185787;
}

@media (max-width: 768px) {
  .heading-text {
    font-size: 2rem;
    padding: 0 40px;
  }
}

@media (max-width: 576px) {
  .heading-text {
    font-size: 1.8rem;
    padding: 0 30px;
  }
}



/* ABOUT SECTION CSS ENDS HERE  */

/* SERVICES SECTION CSS STARTS HERE  */

/* Professional Heading Styles */
/* Service Heading Styles */
.service-heading {
  padding: 2rem 0;
  position: relative;
  width: 100%;
  background-color: white;
  margin-bottom: 0;
}

.service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem !important;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 auto;
  position: relative;
  display: inline-block;
  padding: 0 60px;
  line-height: 1.2;
}

.text-primary {
  color: #52a38b;
}

.text-secondary {
  color: #185787;
}

.heading-accent {
  width: 120px;
  height: 4px;
  margin: 1rem auto 0;
  background: linear-gradient(to right, #52a38b, #185787);
  border-radius: 2px;
}

.service-title::before,
.service-title::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.service-title::before {
  left: 5px;
  border: 3px solid #52a38b;
}

.service-title::after {
  right: 5px;
  border: 3px solid #185787;
}

/* Vertical Scroll Section Styles */
.vertical-scroll-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.background-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.background-image.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10%;
}

.heading-container {
  max-width: 600px;
  padding: 2rem;
  position: absolute;
  right: 10%;
}

.heading-item {
  margin: 4rem 0;
  opacity: 0.3;
  transition: all 0.3s ease;
  cursor: pointer;
}

.heading-item h2 {
  font-size: 4rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.heading-item p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.heading-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .service-title {
    font-size: 3rem;
  }

  .heading-item h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .service-title {
    font-size: 2.5rem;
    padding: 0 40px;
  }

  .service-title::before,
  .service-title::after {
    width: 20px;
    height: 20px;
  }

  .content-wrapper {
    padding-right: 5%;
  }

  .heading-item h2 {
    font-size: 2.5rem;
  }

  .heading-item {
    margin: 3rem 0;
  }
}

@media (max-width: 576px) {
  .service-title {
    font-size: 2rem;
    padding: 0 30px;
    letter-spacing: 2px;
  }

  .heading-accent {
    width: 80px;
  }

  .heading-item h2 {
    font-size: 2rem;
  }

  .heading-item p {
    font-size: 1rem;
  }

  .heading-item {
    margin: 2rem 0;
  }
}











.vertical-scroll-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.background-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.background-image.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10%;
}

.heading-container {
  max-width: 600px;
  padding: 2rem;
  position: absolute;
  /* Add this line */
  right: 10%;
  /* Add this line */
}


.heading-item {
  margin: 4rem 0;
  /* Reduced from 8rem to 4rem */
  opacity: 0.3;
  transition: all 0.3s ease;
  cursor: pointer;
}

.heading-item h2 {
  font-size: 4rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.heading-item p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.heading-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .heading-item h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding-right: 5%;
  }

  .heading-item h2 {
    font-size: 2.5rem;
  }

  .heading-item {
    margin: 3rem 0;
  }
}

@media (max-width: 576px) {
  .heading-item h2 {
    font-size: 2rem;
  }

  .heading-item p {
    font-size: 1rem;
  }

  .heading-item {
    margin: 2rem 0;
  }
}


/* SERVICES SECTION CSS ENDS HERE  */


/* NEWSLETTER SECTION CSS STARTS HERE */

.newsletter-wrapper {
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(82, 163, 139, 0.97), rgba(11, 118, 120, 0.97));
}

.newsletter-content {
  padding: 4rem 0;
  z-index: 2;
}

.newsletter-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.gradient-text {
  color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.newsletter-description {
  color: #ffffff;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.input-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-control {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subscribe-btn {
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #52a38b, #185787);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Decorative Elements */
.decoration-left,
.decoration-right {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.decoration-left {
  left: -75px;
  top: 50%;
  transform: translateY(-50%);
}

.decoration-right {
  right: -75px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 2.5rem;
  }

  .newsletter-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .decoration-left,
  .decoration-right {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-content {
    padding: 3rem 1rem;
  }
}


/* NEWSLETTER SECTION CSS ENDS HERE */


/* BLOG SECTION CSS STARTS HERE */

/* Blog Section Styles */
.blog-heading {
  margin-top: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-primary {
  color: #52a38b;
}

.text-secondary {
  color: #185787;
}

.heading-accent {
  width: 120px;
  height: 4px;
  margin: 1rem auto;
  background: linear-gradient(to right, #52a38b, #185787);
  border-radius: 2px;
}
.heading-accent_1{
  width: 120px;
  height: 4px;
  margin: 1rem;
  background: linear-gradient(to right, #52a38b, #185787);
  border-radius: 2px;
}
.heading-accent_2 {
  width: 120px;
  height: 4px;
  margin: 1rem 0 0 auto; /* Auto margin right align ke liye */
  background: linear-gradient(to right, #52a38b, #185787);
  border-radius: 2px;
}



/* Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #52a38b, #185787);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.blog-date span {
  display: block;
}

.blog-content {
  padding: 2rem;
}

.blog-category {
  color: #52a38b;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  color: #185787;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
  color: #52a38b;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .blog-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .blog-content {
    padding: 1.5rem;
  }

  .blog-title {
    font-size: 1.3rem;
  }
}


/* BLOG SECTION CSS ENDS HERE */

/* PARALLAX SECTION CSS STARTS HERE */

.bg-image {
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(11, 118, 120, 0.85), rgba(82, 163, 139, 0.85));
}

.content-wrapper-new {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.content-wrapper-new h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-wrapper-new p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.service-box {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: transparent;
  backdrop-filter: blur(2px);
  border: 1px solid white;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(82, 163, 139, 0.2);
}

.service-box i {
  font-size: 2rem;
  color: white;
  margin-right: 1rem;
  min-width: 40px;
}

.service-box-1 {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: transparent;
  backdrop-filter: blur(2px);
  border: 1px solid white;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-box-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(82, 163, 139, 0.2);
}

.service-box-1 i {
  font-size: 2rem;
  color: #185787;
  ;
  margin-right: 1rem;
  min-width: 40px;
}

.service-box h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.service-box-1 h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* Media Queries */
@media (min-width: 1400px) {
  .content-wrapper-new h2 {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .content-wrapper-new h2 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .content-wrapper-new h2 {
    font-size: 2.5rem;
  }

  .services-grid {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .bg-image {
    min-height: auto;
    padding: 3rem 0;
  }

  .content-wrapper-new h2 {
    font-size: 2rem;
    text-align: center !important;
  }

  .content-wrapper-new p {
    text-align: center !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .content-wrapper-new h2 {
    font-size: 1.8rem;
  }

  .service-box {
    padding: 0.8rem;
  }

  .service-box i {
    font-size: 1.5rem;
  }
}



/* PARALLAX SECTION CSS ENDS HERE */

/* ABOUT PAGE CSS STARTS HERE  */

.hero-about {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  /* background: #f8f9fa; */
}

.hero-text-bg {
  position: absolute;
  font-size: 35vw;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  /* text-transform: uppercase; */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-caption {
  position: absolute;
  bottom: 10%;
  right: 10%;
}

.hero-caption h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-about {
    height: 40vh;
  }

  .hero-caption h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-about {
    height: 30vh;
  }

  .hero-caption h2 {
    font-size: 1.5rem;
  }
}

.biz-services-pro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #185787, #00ff88);
  top: -150px;
  left: -150px;
}

.shape2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #ff3366, #ff9933);
  bottom: 50px;
  right: -100px;
  animation-delay: -5s;
}

.shape3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #6610f2, #6f42c1);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

.header-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #185787, #00ff88);
  margin: 20px auto;
  border-radius: 2px;
}

.biz-card-pro {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.5), transparent 70%);
  top: -100%;
  left: 0;
  transition: 0.5s;
}

.biz-card-pro:hover {
  transform: translateY(-10px);
}

.biz-card-pro:hover .card-glow {
  top: 0;
}

.biz-icon-pro {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #18578720, #00ff8820);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
  transition: 0.3s;
}

.biz-card-pro:hover .biz-icon-pro {
  transform: rotate(0deg);
}

.card-overlay {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, #52a38b, #185787);
  transition: 0.3s;
  opacity: 0;
}

.biz-card-pro:hover .card-overlay {
  bottom: 0;
  opacity: 1;
}

.learn-more {
  color: white;
  font-weight: 600;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, 20px);
  }
}

@media (max-width: 768px) {
  .biz-card-pro {
    padding: 2rem;
  }

  .floating-shape {
    display: none;
  }
}



.voice-showcase {
  background: #185787;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #52a38b80, #18578780);
  animation: waveMove 20s linear infinite;
}

.glowing-text {
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 0 10px #52a38b, 0 0 20px #52a38b, 0 0 30px #52a38b;
  /* opacity: 0.3; */
}

.impact-text {
  font-size: 3.5rem;
  font-weight: 800;
  margin: -20px 0 20px;
  color: white;
}

.dynamic-subtitle {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease;
}

.voice-card-pro {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2px;
  transition: all 0.4s ease;
}

.card-inner {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 18px;
  position: relative;
}

.glow-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(82, 163, 139, 0.3), transparent 70%);
  top: -50%;
  left: 0;
  transition: 0.5s;
}

.voice-card-pro:hover .glow-effect {
  top: 0;
}

.rating-stars {
  color: #52a38b;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.voice-message {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #52a38b, #185787);
}

.profile-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info h4 {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
}

.profile-info span {
  color: #52a38b;
  font-size: 0.9rem;
}

@keyframes waveMove {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .glowing-text {
    font-size: 2.5rem;
  }

  .impact-text {
    font-size: 2rem;
  }

  .voice-card-pro {
    margin-bottom: 20px;
  }
}

/* ABOUT PAGE CSS ENDS HERE  */

/* WHY-BETTER-LEDGER PAGE CSS STARTS HERE  */

.company-banner {
  min-height: 80vh;
  /* background: linear-gradient(135deg, #185787, #52a38b); */
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.company-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(24, 87, 135, 0.5), rgba(24, 87, 135, 0.5));
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: #fff;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation: floatAnimation 20s infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  animation: floatAnimation 15s infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  animation: floatAnimation 25s infinite;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.banner-text {
  text-align: center;
  color: #fff;
}

.super-title {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.mega-title {
  font-size: 5rem;
  font-weight: 800;
  margin: 1rem 0;
  background: linear-gradient(to right, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-accent {
  width: 100px;
  height: 4px;
  background: #fff;
  margin: 2rem auto;
  position: relative;
}

.title-accent::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: #52a38b;
  animation: accentSlide 2s infinite;
}

.scrolling-text {
  margin: 2rem 0;
  height: 50px;
  overflow: hidden;
}

.text-line {
  font-size: 2rem;
  font-weight: 600;
  animation: scrollText 6s infinite;
}

.company-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, 30px);
  }
}

@keyframes accentSlide {

  0%,
  100% {
    left: 0;
  }

  50% {
    left: 50%;
  }
}

@keyframes scrollText {

  0%,
  33% {
    transform: translateY(0);
  }

  34%,
  66% {
    transform: translateY(-50px);
  }

  67%,
  100% {
    transform: translateY(-100px);
  }
}

@media (max-width: 768px) {
  .mega-title {
    font-size: 3rem;
  }

  .company-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .counter {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .mega-title {
    font-size: 2.5rem;
  }

  .super-title {
    font-size: 1.2rem;
  }

  .text-line {
    font-size: 1.5rem;
  }
}

.who-we-are {
  background: #fff;
  position: relative;
}

.section-title {
  margin-bottom: 2rem;
}

.subtitle {
  color: #185787;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.title {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  position: relative;
}

.description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.key-points {
  background: rgba(82, 163, 139, 0.05);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.key-points h3 {
  color: #185787;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.key-points ul {
  list-style: none;
  padding: 0;
}

.key-points li {
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.key-points li::before {
  content: "→";
  color: #52a38b;
  position: absolute;
  left: 0;
}

.key-points li span {
  color: #185787;
  font-weight: 600;
  margin-right: 0.5rem;
}

.consult-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #185787, #52a38b);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.consult-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.image-wrapper {
  position: relative;
  padding: 1rem;
}

.main-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #185787;
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.experience-badge .text {
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .content-side {
    margin-bottom: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .experience-badge {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .image-wrapper {
    margin-top: 2rem;
  }

  .key-points {
    padding: 1.5rem;
  }
}


/* WHY-BETTER-LEDGER PAGE CSS ENDS HERE  */

/* OUR LEADERSHIP PAGE CSS SATRTS HERE  */

.founder-section {
  background: #fff;
  position: relative;
}

.founder-image-wrapper {
  position: relative;
  padding: 2rem;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(82, 163, 139, 0.15);
}

.founder-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.founder-image:hover {
  transform: scale(1.02);
}

.experience-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #185787, #52a38b);
  color: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
}

.experience-tag .years {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.experience-tag .text {
  font-size: 0.9rem;
}

.founder-content {
  padding: 2rem;
}

.section-title .subtitle {
  color: #185787;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-title .title {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #333;
}

.designation {
  color: #185787;
  font-size: 1.2rem;
  font-weight: 500;
}

.founder-description p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 2rem 0;
}

.expertise-points {
  background: rgba(82, 163, 139, 0.05);
  padding: 2rem;
  border-radius: 15px;
}

.expertise-points h3 {
  color: #185787;
  margin-bottom: 1.5rem;
}

.expertise-points i {
  color: #185787;
  font-size: 3rem;
}

.expertise-points ul {
  list-style: none;
  padding: 0;
}

.expertise-points li {
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.expertise-points li::before {
  content: "→";
  color: #52a38b;
  position: absolute;
  left: 0;
}

.expertise-points li span {
  color: #185787;
  font-weight: 600;
  margin-right: 0.5rem;
}

@media (max-width: 991px) {
  .founder-image-wrapper {
    margin-bottom: 2rem;
  }

  .section-title .title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-title .title {
    font-size: 2rem;
  }

  .experience-tag {
    padding: 1rem;
  }
}

.client-feedback-area {
  background: #f8f9fa;
}

.feedback-header .feedback-subtitle {
  color: #185787;
  font-weight: 600;
  letter-spacing: 2px;
}

.feedback-header .feedback-title {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.review-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  margin: 1rem 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-icon {
  color: #52a38b;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.review-text {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
}

.reviewer-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.reviewer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details h4 {
  color: #333;
  font-size: 1.2rem;
  margin: 0;
}

.reviewer-details span {
  color: #185787;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .feedback-header .feedback-title {
    font-size: 2rem;
  }

  .review-box {
    padding: 1.5rem;
  }
}


/* OUR LEADERSHIP PAGE CSS ENDS HERE  */

/* CONFIDENTIALITY-POLICY PAGE CSS STARTS HERE  */

.security-showcase {
  background: #f8f9fa;
}

.showcase-header {
  margin-bottom: 4rem;
}

.badge {
  background: linear-gradient(135deg, #185787, #52a38b);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.header-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.header-content p {
  color: #666;
  font-size: 1.1rem;
}

.security-stats {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #185787;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

.security-feature {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.security-feature:hover {
  transform: translateY(-5px);
}

.security-feature.active {
  background: linear-gradient(135deg, #185787, #52a38b);
  color: #fff;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(11, 118, 120, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.active .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon i {
  color: #185787;
  font-size: 1.5rem;
}

.active .feature-icon i {
  color: #fff;
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-content p {
  margin-bottom: 1.5rem;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-content ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #185787;
}

.active .feature-content ul li:before {
  color: #fff;
}

@media (max-width: 991px) {
  .security-stats {
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .header-content h2 {
    font-size: 2rem;
  }
}

.agreement-section {
  background: #f8f9fa;
}

.section-badge {
  background: linear-gradient(135deg, #185787, #52a38b);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.agreement-header h2 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.agreement-box {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.agreement-intro {
  border-left: 4px solid #185787;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.agreement-intro p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.section-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.section-item h3 {
  color: #185787;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-item ul li {
  color: #666;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.section-item ul li:before {
  content: "•";
  color: #52a38b;
  position: absolute;
  left: 0;
}

.agreement-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.enforcement-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #666;
}

.enforcement-note i {
  color: #185787;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .agreement-box {
    padding: 1.5rem;
  }

  .agreement-header h2 {
    font-size: 2rem;
  }

  .section-item {
    padding: 1.5rem;
  }
}

/* CONFIDENTIALITY-POLICY PAGE CSS ENDS HERE  */

/* PRICING PAGE CSS STARTS HERE   */

.pricing-blocks {
  background: #f8f9fa;
}

.pricing-intro {
  margin-bottom: 3rem;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #185787, #52a38b);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.badge-text {
  color: white;
  font-weight: 500;
}

.pricing-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin: 1rem 0;
}

.blocks-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.price-block {
  background: white;
  border-radius: 25px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price-block:hover {
  transform: translateY(-10px);
}

.featured {
  background: linear-gradient(135deg, #185787, #52a38b);
  color: white;
}

.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #185787;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-type {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
}

.type-icon {
  width: 50px;
  height: 50px;
  background: rgba(11, 118, 120, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured .type-icon {
  background: rgba(255, 255, 255, 0.2);
}

.type-icon i {
  color: #185787;
  font-size: 1.3rem;
}

.featured .type-icon i {
  color: white;
}

.service-highlight {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(11, 118, 120, 0.1);
  border-radius: 15px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.featured .service-highlight {
  background: rgba(255, 255, 255, 0.2);
}

.price-tag {
  margin: 1.5rem 0;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.block-features {
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1rem 0;
}

.feature i {
  color: #185787;
}

.featured .feature i {
  color: white;
}

.premium {
  background: rgba(11, 118, 120, 0.1);
  padding: 8px;
  border-radius: 8px;
}

.featured .premium {
  background: rgba(255, 255, 255, 0.2);
}

.action-button {
  display: block;
  text-align: center;
  padding: 1rem;
  background: #185787;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured .action-button {
  background: white;
  color: #185787;
}

.action-button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pricing-intro h2 {
    font-size: 2rem;
  }

  .blocks-wrapper {
    grid-template-columns: 1fr;
  }
}


/* PRICING PAGE CSS ENDS HERE   */


/* FOOTER CSS STARTS HERE  */

.footer {
  background: url('../img/footer/footer-bg.png') no-repeat right top;
  background-size: cover;
  /* padding: 30px 0 0; */
}

/* Footer Wrapper */
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* gap: 40px; */
}

/* Brand Circle Style */
.footer-brand {
  width: 45% !important;
  max-width: 380px;
  margin: 0;
}

.brand-circle {
  width: 280px;
  height: 280px;
  background: rgba(0, 0, 0, 0.009);
  /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 24px rgba(27, 16, 66, 0.05);
}


.shadow-sm,
.shadow,
.brand-circle {
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-brand:hover .shadow-sm {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.02);
}

.footer-brand:hover .shadow {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.01);
}

.orbit-dots .dot {
  width: 15px;
  height: 15px;
  background: #f9fafb;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  top: 50%;
  left: 50%;
  transform-origin: -100px;
}

.dot-1 {
  animation: orbit1 8s infinite linear;
}

.dot-2 {
  animation: orbit2 8s infinite linear;
}

.brand-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}

.brand-content img {
  margin-bottom: 15px;
  max-width: 150px;
}

.contact-info a,
.contact-info p {
  color: #49bcf7;
  font-size: 16px;
  margin: 5px 0;
}

/* Footer Content Grid */
.footer-content {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 30px; */
  margin-top: 0;
}

.footer-column h5 {
  color: #403663;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: rgba(64, 54, 99, 0.8);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #ff7555;
}

/* Location Info */
.location-info h6 {
  color: #403663;
  font-size: 18px;
  margin-bottom: 10px;
}

.location-info p {
  color: rgba(64, 54, 99, 0.8);
  margin-bottom: 15px;
}

.map-link {
  color: #49bcf7;
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ecf0f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606a8f;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #fff;
}

.social-icon.facebook:hover {
  background: #3b5998;
}

.social-icon.twitter:hover {
  background: #55acee;
}

.social-icon.linkedin:hover {
  background: #007bb5;
}

.social-icon.google:hover {
  background: #dd4b39;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* padding: 40px 0; */
  /* margin-top: 60px; */
  /* border-top: 1px solid #ecf0f3; */
}

.footer-links a {
  color: #403663;
  margin-right: 30px;
  position: relative;
  text-decoration: none;
}

.footer-links a:after {
  content: '';
  width: 5px;
  height: 5px;
  /* background: #ecf0f3; */
  border-radius: 50%;
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-links a:last-child:after {
  display: none;
}

/* Orbit Animations */
@keyframes orbit1 {
  0% {
    transform: rotate(0deg) translateX(140px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(140px) rotate(-360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: rotate(180deg) translateX(140px) rotate(-180deg);
  }

  100% {
    transform: rotate(540deg) translateX(140px) rotate(-540deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-wrapper {
    flex-direction: column;
  }

  .footer-brand,
  .footer-content {
    width: 100% !important;
  }

  .footer-brand {
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links {
    margin-bottom: 15px;
  }
}

.footersocialcard {
  color: #185787 !important;
}

/* FOOTER CSS ENDS HERE  */