* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*  
 font-family: "Barlow", sans-serif;
 font-family: "Lato", sans-serif;
*/
body {
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  font-family: "Lato", sans-serif;
}
a {
  text-decoration: none;
  background: transparent;
  color: #fff;
  transition: 0.4s all ease;
}
a:hover {
  color: #fff;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
}
p {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 0rem;
  color: #5f5f5f;
  font-weight: 400;
}
section {
  padding: 100px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
/* SITE BTN */
.site-btn {
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    color: var(--s-white);
    font-weight: 500;
    text-align: center;
    padding: 13px 25px;
    background-color: var(--s-primary);
    border: 1px solid var(--s-primary);
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    transition: all 0.5s;
    letter-spacing: 1.5px;
}
.site-btn:hover {
  color: var(--s-white);
  border:1px solid var(--s-secondary);
  background-color: var(--s-secondary);
}
.revSite-btn {
  background-color: #fff;
  color: var(--s-primary);
  border-color: #fff;
}
.revSite-btn:hover span {
  color: var(--s-white);
}
.site-outline-btn {
  background-color: transparent;
  border-color: var(--s-primary);
  color: var(--s-primary);
}
.revSite-outline-btn {
  background-color: transparent;
  border-color: var(--s-white);
  color: var(--s-white);
}
/* TITLE BAR */
.titleBar {
  margin-bottom: 25px;
  position: relative !important;
}
.titleBar h6 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--s-primary);
  margin-bottom: 15px;
  position: relative;
}
.titleBar h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--s-primary);
  margin-bottom: 20px;
}
.iconbg {
  background: var(--s-primary);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
:root {
  --s-primary: #06674c;
  --s-secondary: #04503a;
  /* --s-third: #34838a; */
  --s-white: #ffffff;
  --s-black: #575757;
}
.bg-s-primary {
  background-color: var(--s-primary) !important;
}
.text-s-primary {
  color: var(--s-primary) !important;
}
.bg-s-secondary {
  background-color: var(--s-secondary) !important;
}
.text-s-secondary {
  color: var(--s-secondary) !important;
}
.text-s-white {
  color: var(--s-white) !important;
}
.bg-s-white {
  background-color: var(--s-white) !important;
}
.text-s-black {
  color: var(--s-black) !important;
}
.bg-s-black {
  background-color: var(--s-black) !important;
}
/*=========================================  
        HOME PAGE CSS START HERE 
===========================================*/
/* Sticky Header CSS Start */
header .header-scrolled {
  transition: all 0.5s;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  background-color: var(--s-primary);
  z-index: 99;
  border-radius: 0;
  padding: 0px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header-scrolled .nav-link {
  /* color: var(--s-black) !important; */
  font-size: 15px !important;
}
.header-scrolled .navbar-brand img{
  width: 70px;
  transition: all 0.5s;
  filter: brightness(0) invert(1);
}
/*================================
      HEADER CSS START HERE 
==================================*/
header {
  background-color: transparent;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
    z-index: 99;
  transition: all 0.5s;

}
/* TOP SECTION CSS */
.top-section {
  padding: 15px 0;
  background-color: transparent;
  border-bottom: 1px dotted #fff;
}
.top-location ul li {
  font-weight: 400;
  font-size: 14px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-white);
}
.top-location ul li a {
  color: var(--s-white);
  font-weight: 300;
}
.top-location ul li a lord-icon {
  margin-right: 8px;
}
.header-info ul li {
  padding: 0 3px;
}
.header-info ul li a {
  color: var(--s-primary);
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--s-white);
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.header-info ul li a:hover {
  color: var(--s-third);
  background-color: var(--s-secondary);
}
/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 0;
  border: none;
  background-color: var(--s-white);
  color: var(--s-primary);
  padding: 0;
}
.dropdown-menu li a
{
  color: var(--s-primary);
  /* border-bottom: 1px solid var(--s-secondary); */
  padding: 10px 15px;
}
.dropdown-item:hover {
    background-color: var(--s-secondary);
    border-color: var(--s-secondary);
  color: var(--s-white);
}
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.bottom-header {
  background-color: transparent;
  width: 100%;
  border-radius: 0px;
  /* padding: 40px 40px 0 40px; */
}
.navbar-toggler
{
  border: 1PX SOLID #FFF;
}
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 700;
  color: var(--s-black);
  margin: 0;
}
.navbar-brand  img{
  transition: all 0.5s;

}
.bottom-header nav .navbar-nav .nav-item .nav-link.active::after {
  transform: scale(1);
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 400;
  color: var(--s-white);
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
  letter-spacing: 1px;
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
}

/*************************************/
/***     Banner CSS Start Here     ***/
/*************************************/
/* Banner section start here */
.banner {
  background-color: #ffffff;
  position: relative;
}
.video-banner {
  padding: 300px 40px 200px;
  position: relative;
  width: 100%;
  /* height: 730px; */
  overflow: hidden;
}
.video-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(116deg, #000000 0%, #000000 100%);
    left: 0;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: .6;
}
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%); /* Centers the video */
  z-index: 1;
  object-fit: cover; /* Ensures the video covers the entire banner area */
}
.bannerContent h5{
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--s-white);
    margin-bottom: 15px;
}
.bannerContent h1{
    font-size: 75px;
    font-weight: 800;
    line-height: 113px;
    text-transform: uppercase;
    color: var(--s-white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.678);
    margin-bottom: 15px;
}
.bannerContent p{
    font-size: 17px;
    font-weight: bold;
    color: var(--s-white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
    text-shadow: 1px 2px 3px rgba(0, 0, 0, .5);
    margin-bottom: 25px;
}

/* Hero Section Start Here */
.heroSection {
    position: relative;
    margin-top: -100px;
    z-index: 1;
    display: block;
    width: 100%;
}
.hero-Box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 190px;
    padding: 15px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}
.hero-Box:hover {
    transform: translateY(-5px);
}

/* PROFESSIONAL BOOKKEEPER Section */
.professionalBookkeeperSection {
    background: linear-gradient(116deg, #06674ce5 0%, #06674ce5 100%), url('https://secondactbookkeeping.com/wp-content/uploads/2025/09/hero-image.webp') center / cover no-repeat;
}
.professionalBox{
    padding: 45px 15px;
    border-right: 1px solid #ffffff4d;
    border-bottom: 1px solid #ffffff4d;
}
.col-md-6:nth-child(2) .professionalBox
{
    border-right: none;
}
.col-md-6:nth-child(3) .professionalBox
{
    border-bottom: none;
}
.col-md-6:nth-child(4) .professionalBox
{
    border-right: none;
    border-bottom: none;
}

/* Footer Section Start Here */
footer {
  background-color: var(--s-primary);
  position: relative;
  padding-top: 25px;
}
/* footer:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #222222f5;
    z-index: 0;
} */
.footer-box h2 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-white);
}
.footer-box p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--s-white);
}
.footer-box h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--s-white);
  text-transform: uppercase;
}
.footer-box ul li {
  margin-bottom: 0.5rem;
}
.footer-box ul li a {
  font-size: 15px;
  color: var(--s-white);
}
.footer-box ul li a:hover {
  color: var(--s-white);
  letter-spacing: 1px;
}
.footer1stRow {
  padding: 2rem 0 1.5rem 0;
  position: relative;
  z-index: 1;
  /* border-top: 1px solid #2525251e; */
}
.socialmediaicon ul li a i {
  background-color: var(--s-white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
  padding: 0;
  color: var(--s-primary);
  transition: 0.3s;
  border-radius: 100px;
}
.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: var(--s-secondary);
  color: var(--s-white);
}
.SocialIcon h3 {
  font-size: 17px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}
.copyRight {
  border-top: 1px dotted #ffffff5b;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

/* Back To Top CSS Start Here */
.button {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid var(--s-primary);
  mix-blend-mode: multiply;
  overflow: hidden;
  border-radius: 30px;
  color: var(--s-primary);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.btn-txt {
  z-index: 1;
}
.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--s-primary);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}
.button:hover {
  box-shadow: 1px 1px 200px var(--s-white);
  color: #fff;
  border: none;
}
.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}

/* Sticky icon */
.social-sticky {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}
.social-sticky-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color:var(--s-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--s-primary);
    font-size: 20px;
}
.social-sticky-icon:hover {
    transform: scale(1.1);
    color: var(--s-primary);
}






/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner
{
  background-color: var(--s-black);
  background-image: url(https://secondactbookkeeping.com/wp-content/uploads/2025/09/inner-pages-banner.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 502px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.innerPagesBanner::after
{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000000a4;
}
.innerpage-title
{
  position: relative;
  z-index: 2;
  margin-top: 50px;
  text-transform: uppercase;
}
.innerpage-title h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin: 0 5px;
}
.breadcrumb-content ul li a{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin-right: 5px;
}
.titleBar img{
    width: 250px;
    height: 250px;
    border-radius: 100%;
    object-fit: cover;
    border: 2px solid var(--s-primary);
    margin-bottom: 20px;
}
.county-image img{
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}