/*---------------------------------------------------------------
  Template Name: AccoMint| Professional Accounting & Tax Solutions Template
  Description: AccoMint provides expert accounting, bookkeeping, tax filing, auditing, and financial advisory services for startups, SMEs, and corporates. Trusted, reliable, and accurate financial solutions.
  Author: Lucid ThemesLab
  Author URL: https://www.templatemonster.com/store/lucid_themeslab/

  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

  Version: 1.0.0
----------------------------------------------------------------*/

[data-accomint-theme="accomint_light"] {

  /* bg colors */
  --body-color: #ffffff;
  --primary-color: #12b9c7;
  --secondary-color: #112e5a;
  --alt-color: #f5faff;
  --card-color: #ffffff;
  --dark-color: #010807;
  --white-color: #ffffff;
  --primary-text:#12b9c7;
  --white-text: #ffffff;
  --heading-text: #112e5a;
  --para-text: #666;

  --input-bg: #f5faff;
  --input-text: #041124;
}

[data-accomint-theme="accomint_dark"] {

  /* bg colors */
  --body-color: #040f1e;
  --primary-color: #12b9c7;
  --secondary-color: #161f2d;
  --alt-color: #172232;
  --card-color: #2b3646;
  --dark-color: #010807;
  --white-color: #ffffff;
  --primary-text:#12b9c7;
  --white-text: #ffffff;
  --heading-text: #ffffff;
  --para-text: #f1f1f1;

  --input-bg: #172332;
  --input-text: #f1f1f1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

::placeholder {
  color: var(--nav-text) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:"Montserrat", sans-serif;
}

body {
  font-family:"Montserrat", sans-serif;
  overflow-x: hidden;
  background-color: var(--body-color);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 65px;
}

.primary-text {
  color: var(--primary-color);
}

.heading-text {
  color: var(--heading-text);
}

.para-text {
  color: var(--para-text);
}

.white-text {
  color: var(--white-text);
}

.secondary-color {
  background-color: var(--secondary-color);
}

.body-color {
  background-color: var(--body-color);
}

.alt-color {
  background-color: var(--alt-color);
}

.card-color {
  background-color: var(--card-color);
}

.dark-color {
  background-color: var(--dark-color);
}

/* ============================
    HEADER/HERO SECTION
============================ */

/* Header Area */
/* .header-area {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--body-color);
} */

/* .header-area.scrolled {
    transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
} */

.nav_ul li {
  margin: 8px 0; /* For offcanvas spacing */
}

/* ------------------------------------
   NAVBAR LINK STYLES
------------------------------------ */
.navbar .nav-link {
  font-weight: 600;
  padding: 8px 14px;
  color: var(--heading-text);           
  position: relative;
}

/* Hover effect */
.navbar .nav-link:hover {
  transition: 0.3s ease;
  color: var(--primary-color);      
}

/* Active Link */
.navbar .nav-link.active {
  color: var(--primary-color);    
  font-weight: 600;
}

/* Underline animation */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);    
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

/* ------------------------------------
   CONTACT BUTTON
------------------------------------ */
  .primary-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600
  }

  .primary-btn:hover {
    transition: 0.3s;
    background: var(--secondary-color);
    color: var(--white-color);
  }

  .btn-secondary-cta {
    display: inline-block;
    margin-left: 10px;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  .btn-secondary-cta:hover {
    background: #fff;
    color: var(--heading-text);
  }

/* On mobile inside offcanvas */
/* .offcanvas .primary-btn{
  margin-top: 15px;
  width: 100%;
} */

/* Hero Section */
/* .hero-banner {
  margin-top: 80px;
} */

/* Split Layout */
.hero-split-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 850px;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.hero-left-content {
  width: 45%;
  background: var(--card-color);
  padding: 60px;
  margin-left: 6%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 3;
  position: relative;
}

/* Right Background Image */
.hero-right-bg {
  width: 55%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.hero-right-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Buttons */
.contact-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
}

.contact-btn:hover {
  background: var(--primary-color);
}


/* MOBILE RESPONSIVE */
@media(max-width: 991px) {
  .hero-split-slide {
    flex-direction: column;
    text-align: center;
    padding: 30px 10px;
    min-height: 500px!important;
  }

  .hero-left-content {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }

  .hero-right-bg {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }
  .splide__pagination__page{
    display: none;
  }
}

/* ============================
    PRELOADER SECTION
============================ */
#preloader {
  position: fixed;
  inset: 0;
  background: #0b2242;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Circle Reveal Animation */
.reveal-circle {
  position: absolute;
  width: 0;
  height: 0;
  background: #0b2242;
  border-radius: 50%;
  z-index: 1;
  transition: all 1s ease-out;
}

/* Wrapper */
.loader-wrapper {
  text-align: center;
  position: relative;
  z-index: 5;
  animation: fadeSlideIn 0.8s ease-out;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FLOATING ACCOUNTING ICONS */
.icon {
  position: absolute;
  font-size: 28px;
  opacity: 0.8;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
  animation: float 3s infinite ease-in-out alternate;
  transition: 0.3s;
}

.icon:hover {
  transform: scale(1.25);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

/* Positions (Same as before) */
.paper {
  left: -80px;
  top: -10px;
  animation-delay: 0s;
}

.calc {
  right: -80px;
  top: -5px;
  animation-delay: 0.4s;
}

.coin {
  left: -40px;
  top: 60px;
  animation-delay: 0.8s;
}

.checklist {
  right: -45px;
  top: 65px;
  animation-delay: 1.2s;
}

.chart {
  left: 0px;
  top: -70px;
  animation-delay: 1.6s;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-18px);
    opacity: 1;
  }
}

.graph {
  display: flex;
  gap: 14px;
  margin: 25px auto;
  justify-content: center;   /* CENTER ALIGN */
  align-items: flex-end;      /* Bars bottom se align rahe */
}

.graph .bar {
  width: 14px;
  border-radius: 5px;
  background: linear-gradient(180deg, #12b9c7, #0a8f9b);
  animation: graphBounce 1s infinite cubic-bezier(.36, .07, .19, .97);
  transform-origin: bottom;
  filter: drop-shadow(0 0 6px rgba(0, 220, 255, 0.4));
}

@keyframes graphBounce {

  0%,
  100% {
    transform: scaleY(0.4);
  }

  50% {
    transform: scaleY(1.15);
  }
}

/* Different bar delays */
.bar1 {
  height: 22px;
  animation-delay: 0s;
}

.bar2 {
  height: 37px;
  animation-delay: 0.2s;
}

.bar3 {
  height: 30px;
  animation-delay: 0.35s;
}

.bar4 {
  height: 45px;
  animation-delay: 0.55s;
}

/* Typing Text */
.typing-text {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  animation: fadeInText 1.2s ease-out;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Cursor */
#typed::after {
  content: "|";
  animation: blink 0.5s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ============================
    ABOUT SECTION
============================ */

.about-section {
  padding: 80px 0;
}

/* Info Boxes */
.about-box {
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
  border-left: 4px solid var(--primary-color);
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .about-heading {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

.about-box .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 30px;
  background-color: var(--card-color);
  color: var(--primary-color);
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.4s ease;
}

/* Hover effect */
.about-box:hover .icon-wrapper {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(0, 225, 255, 0.5);
  /* stronger shadow on hover */
  border-color: #fff;
}

/* ============================
    CASES SECTION
============================ */

/* Case Boxes */
.case-box {
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border-bottom: 4px solid transparent;
}

.case-box:hover {
  transform: translateY(-8px);
  border-bottom: 4px solid var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Icons */
.case-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(18, 185, 199, 0.18), rgba(18, 185, 199, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;

  border-left: 4px solid var(--primary-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: 0.35s ease;
}

/* Responsive */
@media(max-width: 768px) {
  .cases-title {
    font-size: 26px;
  }
}

/* ============================
    COUNTER SECTION
============================ */

.counter-box {
  color: #ffffff;
  padding: 20px;
}

/* Icon Styling */
.counter-box .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  transition: 0.3s ease-in-out;
}

.counter-box .icon-wrapper svg {
  font-size: 28px;
  color: var(--primary-color);
  transition: 0.3s;
}

/* Hover Effect */
.counter-box:hover .icon-wrapper {
  background:var(--primary-color);
  border-color: #fff;
}

.counter-box:hover .icon-wrapper svg {
  color: #ffffff;
}

/* ============================
    WHY CHOOSE SECTION
============================ */

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem
}

.feature-list .tick {
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, #0fb6c1);
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(18, 185, 199, 0.18);
}

.feature-list .feature-text {
  flex: 1
}

.feature-list .feature-text strong {
  display: block
}

.stats {
  margin-top: 1rem
}

.stat {
  background: var(--alt-color);
  padding: 12px 18px;
  border-radius: 12px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(15, 23, 36, 0.03)
}

/* Image card + decorations */
.image-card {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center
}

.image-card .main-img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 18px 40px rgba(11, 34, 66, 0.12);
  transform: translateY(0);
  transition: transform .45s cubic-bezier(.2, .9, .3, 1)
}

.image-card:hover .main-img {
  transform: translateY(-8px)
}

.shape {
  position: absolute;
  border-radius: 14px;
  filter: blur(14px);
  opacity: 0.9
}

.shape-1 {
  width: 130px;
  height: 130px;
  right: 10%;
  top: -12%;
  background: linear-gradient(135deg, rgba(18, 185, 199, 0.18), rgba(17, 24, 39, 0.02));
  transform: rotate(12deg)
}

.shape-2 {
  width: 90px;
  height: 90px;
  left: -6%;
  bottom: 8%;
  background: linear-gradient(135deg, rgba(18, 185, 199, 0.12), rgba(18, 185, 199, 0.02));
}

.floating-box {
  position: absolute;
  right: 6%;
  bottom: 14%;
  background: var(--card-color);
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(11, 34, 66, 0.12);
  transform: translateY(12px);
  transition: transform .35s ease
}

.image-card:hover .floating-box {
  transform: translateY(0)
}

.fb-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, var(--primary-color));
  color: #fff
}

/* Responsive tweaks */
@media (max-width:991.98px) {
  .feature-list li {
    gap: .75rem
  }

  .shape-1 {
    display: none
  }

  .shape-2 {
    display: none
  }

  .floating-box {
    right: 4%;
    bottom: 6%;
  }
}

@media (max-width:575.98px) {
  .why-choose .section-title {
    font-size: 1.5rem
  }

  .stat {
    min-width: 90px;
    padding: 8px 12px
  }
}

/* ========== Features Section ========== */

.feature-box {
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
  background-color:var(--card-color);
  color: var(--primary-color);
  transform: scale(1.2);
  border: 2px solid var(--primary-color)
}

/* Statistics */
.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #12b9c7;
}

/* ============================
    PRICING SECTION
============================ */

.price-card {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: all .35s ease;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color)
}

.feature-list li {
  padding: 6px 0;
}

.feature-list .not-included {
  opacity: 0.5
}

/* Popular plan highlight */
.price-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(18, 185, 199, 0.25)
}

.pricing-section .tag {
  position: absolute;
  top: 14px;
  right: -38px;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 40px;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Responsive */
@media(max-width:767px) {
  .price-card {
    padding: 24px
  }

  .price {
    font-size: 2rem
  }
}

/* ============================
    TEAMS  SECTION
============================ */

.team-card {
  padding: 22px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: all .35s ease;
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color)
}

.img-wrap {
  position: relative;
   display: inline-block;
  width: 130px;
  height: 130px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--alt-color);
  box-shadow: 0 8px 20px rgba(11, 34, 66, 0.15);
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease
}

.team-card:hover img {
  transform: scale(1.08)
}

.badge-tag {
    position: absolute;
    top: 80%;        /* vertical center */
    left: 50%;       /* horizontal center */
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Responsive */
@media(max-width:767px) {
  .team-card {
    padding: 18px
  }

  .img-wrap {
    width: 110px;
    height: 110px
  }
}

/* ============================
    SUCCESS STORY SECTION
============================ */

.case-card {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: all .35s ease;
  border: 2px solid transparent;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color)
}

.case-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 15px
}

.case-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: .3s ease
}

.case-card:hover img {
  transform: scale(1.07)
}


/* Responsive */
@media(max-width:767px) {
  .case-card {
    padding: 18px
  }

  .case-img img {
    height: 180px
  }
}

/* ============================
    FAQ SECTION
============================ */

.sub-title {
  letter-spacing: 2px;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
}

/* Accordion Item Styling */
.modern-accordion .accordion-item {
border: none;
margin-bottom: 18px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
transition: box-shadow 0.3s ease;
}

.modern-accordion .accordion-item:hover {
box-shadow: 0px 7px 25px rgba(0,0,0,0.12);
}

/* Accordion Button Styling */
.modern-accordion .accordion-button {
background: var(--card-color);
padding: 18px 22px;
font-size: 17px;
font-weight: 600;
color: var(--heading-text);
border: none;
box-shadow: none;
display: flex;
align-items: center;
position: relative;
transition: background 0.3s ease, color 0.3s ease;
}

/* Remove default Bootstrap arrow */
.modern-accordion .accordion-button::after {
background-image: none;
font-family: "Font Awesome 6 Free";
font-weight: 900; 
content: "\f078"; /* down arrow by default */
font-size: 14px;
color: var(--heading-text);
margin-left: auto;
transition: transform 0.3s ease, color 0.3s ease;
}

/* Expanded State */
.modern-accordion .accordion-button:not(.collapsed)::after {
content: "\f078"; /* down arrow by default */
color: var(--primary-color);
}

/* Active button styling */
.modern-accordion .accordion-button:not(.collapsed) {
color: var(--primary-color);
}

/* Accordion Body Styling */
.modern-accordion .accordion-body {
padding: 20px 22px;
font-size: 15px;
color: var(--para-text);
background: var(--alt-color);
}


/* ============================
    BLOG SECTION
============================ */

/* Blog Card */
.blog-card {
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  border: 1px solid var(--alt-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image */
.blog-img {
  overflow: hidden;
  height: 220px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.12);
}

.blog-section  .tag {
  background: var(--alt-color);
  color: var(--primary-color);
  padding: 5px 12px;
  font-size: 13px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-title {
  transition: 0.3s;
}

.blog-title:hover {
  color: var(--primary-color);
}

/* Read More Link */
.read-more {
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
  text-decoration: none;
}

.read-more:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* ============================
    CTA LEAD CAPTURE SECTION
============================ */

.cta-section {
  background: linear-gradient(135deg, #0b2242 0%, #123b6b 100%);
  color: #fff;
  padding: 80px 0;
  border-radius: 20px;
}

/* Text */
.cta-sub {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color:#0ea4ad;
}
.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.3;
}
.cta-desc {
  font-size: 15px;
  max-width: 500px;
  color: #e6e6e6;
  margin-bottom: 25px;
}

/* Buttons */
.btn-cta {
  display: inline-block;
  background: #0ea4ad;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-cta:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* Form */
.cta-form-wrapper {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-form .form-control {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: var(--input-bg);
  color: var(--input-text);
}
.cta-form .form-control:focus {
  border-color:var(--primary-color);
  box-shadow: 0 0 0 2px rgba(26,164,216,0.2);
  color: var(--input-text);
}

/* Responsive */
@media (max-width: 991px) {
  .cta-title {
    font-size: 30px;
  }
}

/* ============================
    CONTACT SECTION
============================ */

  .contact-info-box {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .info-item:last-child {
    border-bottom: none;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background:var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
  }

  .social-links a:hover {
    background: var(--secondary-color);
  }

  .contact-form-box {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .form-input {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--alt-color);
    font-size: 14px;
    background-color: var(--input-bg);
    color: var(--input-text);
  }

  .form-input:focus {
    border-color: var(--primary-color);
     background-color: var(--input-bg);
    color: var(--input-text);
    box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.15);
  }

/* ============================
    TESTIMONIALS SECTION
============================ */

.testimonial-card.modern {
  transition: all 0.3s ease;
  border-top: 4px solid  var(--primary-color);
}
.testimonial-card.modern:hover {

}
.testimonial-header .client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.testimonials-section .splide__arrow {
  background:  var(--primary-color);
  border-radius: 50%;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 18px;
  transition: 0.3s;
}
.testimonials-section .splide__arrow:hover {
  background: #0b2242;
}
.testimonials-section .splide__pagination__page {
  background:  var(--primary-color);
}
.testimonials-section .splide__pagination__page.is-active {
  background: #0b2242;
}
@media (max-width: 991px) {
  .main-title {
    font-size: 30px;
  }
}
.testimonials-section .splide__pagination{
  bottom: -23px!important
}
.testimonials-section .splide__arrow svg {
    fill: var(--white-color)
}

.testimonials-section .splide__arrow--prev {
    left: 0;
}

.testimonials-section .splide__arrow--next
 {
    right: 0;
}

/* ============================
    ACCOUNTING SECTION
============================ */

.process-card {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}
.process-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

@media(max-width: 991px) {
  .main-title {
    font-size: 30px;
  }
} 

/* ============================
    EXPERTISE SECTION
============================ */

.industry-card.modern {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}
.industry-card.modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  background:  var(--primary-color);
  color: var(--white-color);
}

.industry-card.modern:hover .industry-icon {
  color:  var(--white-color);
}

@media (max-width: 991px) {
  .main-title {
    font-size: 30px;
  }
}

/* ==================================
    TOOLS AND TECHNOLOGIES SECTION
===================================== */

.tools-section {
  padding: 80px 0;
}

.tool-card {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.tool-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
@media(max-width: 991px) {
  .main-title {
    font-size: 30px;
  }
}

/* ==================================
    FOOTER SECTION
===================================== */

  footer {
    background: #051833;
    color: #fff;
  }

  footer p, footer li a {
    color: #b0b0b0;
  }

  footer h4, footer h5 {
    color: #fff;
  }

  .footer-links li {
    margin-bottom: 0.6rem;
  }

  .footer-links li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
  }

  .footer-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
  }

  .footer-links li a:hover {
    color: var(--primary-color);
  }

  .footer-links li a:hover::after {
    width: 100%;
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    background:  var(--primary-color);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: 0.3s;
  }

  .social-icon:hover {
    background:  var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
  }

  .footer .border-top {
    border-color: rgba(255,255,255,0.2) !important;
  }

  @media (max-width: 767px) {
    .social-icon {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  }

  /* ==================================
    BACK TO TOP SECTION
===================================== */

/* Back to Top Button Styling */
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  background:var(--primary-color);
  color: #fff;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s;
}

#backToTop:hover {
  background-color: #0b2242;
  transform: translateY(-4px);
}

.subscribe-btn{
  background: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: none;
}

.subscribe-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/*================================================
   Theme Switch Button Styles
=================================================*/

#btnSwitch {
  top: 200px;
  z-index: 2;
}

/* Responsive spacing */
@media (max-width: 576px) {
  #btnSwitch {
    top: 130px;
  }

  .banner-content h2 {
    font-size: 30px;
  }
}

.error{
  color: #ff5959;
}

/* Mobile Offcanvas Styling (below 991px) */
@media (max-width: 991px) {

  /* Offcanvas BG Colors */
  .offcanvas-header {
    background-color: var(--alt-color);
  }
  .offcanvas-body {
    background-color: var(--card-color) !important;
  }

  /* Same styling for both toggler and close button */
  .navbar-toggler,
  .btn-close {
    width: 46px !important;
    height: 46px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0;
    border: none;
    outline: none;
    background-color: var(--secondary-color);
    border-radius: 6px;
    box-shadow: none;
    transition: 0.3s ease;
    opacity: 1;
  }

  /* Remove default bootstrap toggler icon */
  .navbar-toggler .navbar-toggler-icon {
    display: none;
  }

  /* Remove bootstrap background-image from close button */
  .btn-close {
    background-image: none !important;
  }

  /* Icon styling (Font Awesome) */
  .navbar-toggler svg,
  .btn-close svg {
    font-size: 24px;
    color: #fff;
    transition: 0.3s ease;
    pointer-events: none;
    opacity: 1;
  }

  /* Hover effect */
  .navbar-toggler:hover,
  .btn-close:hover {
    background-color: var(--primary-color);
  }
  .navbar-toggler:hover svg,
  .btn-close:hover svg {
    color: #fff;
  }

  /* Remove focus outlines */
  .navbar-toggler:focus,
  .btn-close:focus {
    box-shadow: none;
    outline: none;
  }
}

/* Button active/focus state (global) */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--white-text);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* ===== CUSTOM SPLIDE PAGINATION ===== */
.splide__pagination {
  display: flex !important;
  justify-content: center;
  gap: 5px;
  position: absolute;
  width: 100%;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.splide__pagination__page:hover {
  background: var(--primary-color);
}

/* Active state (current slide) */
.splide__pagination__page.is-active {
  background: var(--primary-color);
  transform: scale(1.45);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}
.alertmsg{
  z-index: 9999;
}