
/*----------------------------------------
 0.  CSS COLORS
----------------------------------------*/

:root {
  --primary-color: #577cd1;
  --secondary-color: white;
  --third-color: #c39595;  
}


/*----------------------------------------
  1.  MAIN CSS
----------------------------------------*/

html, body {
  height: 100%;
}

a:focus {
  outline: 0px solid;
}

img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

p {
  margin: 0 0 15px;
  color: #444;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  margin: 0 0 15px;
  color: #444;
  font-weight: 500;
}

h1 {
  font-size: 48px;
  line-height: 50px;
}

h2 {
  font-size: 38px;
  line-height: 40px;
}

h3 {
  font-size: 30px;
  line-height: 32px;
}

h4 {
  font-size: 24px;
  line-height: 26px;
}

h5 {
  font-size: 20px;
  line-height: 22px;
}

h6 {
  font-size: 16px;
  line-height: 20px;
}

a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

a:hover {
  color: #3EC1D5;
  text-decoration: none;
}

a:active, a:hover {
  outline: 0 none;
}

.tonyred h2 span {
color: #c82b2b;
font-weight: 900;
}

body {
  background: #fff none repeat scroll 0 0;
  color: #444;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-align: left;
  overflow-x: hidden;
  line-height: 22px;
}

.mission-area {
  padding: 60px 0;
  /* Padding for top and bottom */
  background-color: #fff;
  /* White background for contrast */
}

#mc1{
  background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);  
  /* background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); */
}

#mc2{
  background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
}

#mc3{
  background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%);
  /* background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%); */
}

#mc4{
  background-image: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%);
  /* background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%); */
}

#mc5{
  background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%);
  /* background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%); */
}

#mc6{
  background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);  
  /* background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%); */
}

.mission-content {
  /* background: linear-gradient(
    to right,
    rgba(0, 123, 255, 0.5),
    rgba(173, 216, 230, 0.7)
  ); */
  /* background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%); */
  /* Primary color to a light blue gradient */
  padding: 40px;
  /* Increased padding inside the content area */
  border-radius: 10px;
  /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Enhanced shadow for depth */
  margin-top: 30px;
  /* Margin at the top */
  transition: all 0.3s ease;
  /* Transition for hover effect */
}

.mission-content h4 {
  font-size: 26px;
  /* Font size for section headings */
  margin-top: 20px;
  /* Margin above the headings */
  margin-bottom: 15px;
  /* Margin below the headings */
  color: var(--primary-color);
  /* Heading color */
  font-weight: bold;
  /* Bold text for emphasis */
}

.mission-content p {
  font-size: 16px;
  /* Font size for paragraphs */
  color: #333;
  /* Text color */
  line-height: 1.8;
  /* Increased line height for readability */
  width: 80%;
  margin: auto;
  text-align: center;
}

.values-list {
  display: flex;
  /* Flexbox for layout */
  flex-wrap: wrap;
  /* Allow wrapping */
  margin-top: 20px;
  /* Margin above the list */
  justify-content: space-between;
  /* Space between items */
}

.value-item {
  flex: 1 1 calc(45% - 20px);
  /* Flex items with fixed width */
  display: flex;
  /* Flexbox for items */
  align-items: center;
  /* Center items vertically */
  margin: 10px;
  /* Margin around each item */
  padding: 15px;
  /* Padding inside each item */
  background-color: #fff;
  /* White background for each value */
  border: 2px solid hsl(222, 55%, 57%);
  /* Border color */
  border-radius: 8px;
  /* Rounded corners */
  transition: all 0.3s ease;
  /* Transition for hover effect */
}

.value-item:hover{
  margin: 20px;
  padding: 20px;
  transition: 1s;
}

.value-icon {
  font-size: 30px;
  /* Icon size */
  margin-right: 15px;
  /* Margin to the right of the icon */
  color: hsl(222, 55%, 57%);
  /* Icon color */
  transition: color 0.3s ease;
  /* Transition for icon color */
}

.value-item p {
  margin: 0;
  /* Remove default margin */
  font-size: 16px;
  /* Font size for list items */
  text-align: left;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .value-item {
    flex: 1 1 100%;
    /* Full width for smaller screens */
    margin: 10px 0;
  }
  .mission-content p {
    width: 100%;
    /* Adjust paragraph width on small screens */
  }
}



/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: white;
  color: var(--primary-color);
  border-width: medium;
  border-color: var(--primary-color);
  outline: none;
}

.back-to-top:hover {
  background: white;
  color: var(--primary-color);
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary-color);
  outline: none;
}

.clear {
  clear: both;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

input, select, textarea, input[type="text"], input[type="date"], input[type="url"], input[type="email"], input[type="password"], input[type="tel"], button, button[type="submit"] {
  appearance: none;
  box-shadow: none !important;
}

/* selection of text and items */
::selection {
  background: var(--third-color);
  text-shadow: none;
}

.area-padding {
  padding: 70px 0px 80px;
}

.area-padding-2 {
  padding: 70px 0px 50px;
}

.padding-2 {
  padding-bottom: 90px;
}

.section-headline h2 {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 70px;
  position: relative;
  text-transform: capitalize;
}

.section-headline h2::after {
  border: 1px solid #333;
  bottom: -20px;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 40%;
}

.sec-head {
  display: inline-block;
  font-size: 3vh;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0 0 10px;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

/*--------------------------------
 2. HEADER
--------------------------------*/

/* Menu in the initial layout is transparent */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: none;
  z-index: 9;
}

.navbar-header a.navbar-brand {
  display: inline-block;
  height: 70px;
  padding: 15px 0;
}

.main-menu ul.navbar-nav li {
  display: inline-block;
  padding: 0px 13px;
}

.main-menu ul.navbar-nav li a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 24px 0px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.main-menu ul.navbar-nav li.active > a::after {
  border: 1px solid #fff;
  bottom: 0px;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}

.main-menu ul.navbar-nav li.active a:hover {
  background: none;
  color: #fff;
}

.main-menu ul.navbar-nav li.active a:focus {
  color: #fff;
}

.main-menu ul.navbar-nav li.active a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #fff;
  position: relative;
}

.main-menu ul.navbar-nav li a:hover {
  color: var(--primary-color);
  font-weight: bolder; 
}

.navbar {
  border: medium none;
  margin-bottom: 0;
}

.navbar-default {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.main-menu ul.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
  background: none;
  color: #333;
}

.navbar-default .navbar-toggle {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  padding: 25px 0px;
}

.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
  background-color: transparent;
  color: #fff;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background: none;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
  width: 30px;
  height: 2px;
}

.top-right.text-right {
  float: right;
  position: relative;
  top: 24px;
  margin-left: 20px;
}

.top-right.text-right>li {
  float: right;
  margin: 0px 8px;
}

.top-right.text-right li a {
  color: #fff;
}

.main-menu .dropdown ul {
  background: #000;
}

.main-menu .dropdown ul li {
  display: block;
}

/*--------------------------------
2.1.  NAVIGATION BAR
--------------------------------*/

.header-area {
  background-color: var(--primary-color);
  height: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.scrolled {
  background-color: var(--primary-color); /* Use your theme's color */
}

.navbar-header a.navbar-brand {
  display: inline-block;
  height: 90px;
}

 .navbar-brand>img {
  display: none;
}

 .navbar-brand.logo>img {
  display: block;
}

.logo h1 {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 36px;  
  font-weight: bold;
  line-height: 1;
}

.logo h1 span {
  color: #c82b2b;
}
.main-menu ul.navbar-nav li.active > a::after {
  border: 1px solid #fff;
  bottom: 0px;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}

.main-menu ul.nav>li>a:hover {
  color: #fff;
}

.main-menu ul.navbar-nav li.active a {
  /* background: rgba(0, 0, 0, 0) none repeat scroll 0 0; */
  background: transparent none repeat scroll 0 0;
  color: #fff;
  position: relative;
}

/*--------------------------------
2.1.  NAVIGATION BAR
--------------------------------*/
.section-title {
  margin-top: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

.about-section p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #555;
}

.vision-mission-section .nav-tabs .nav-link {
  color: #007bff;
  font-weight: 500;
}

.vision-mission-section .nav-tabs .nav-link.active {
  background-color: #007bff;
  color: #fff;
}

.tab-content p {
  font-size: 1.2rem;
  color: #555;
}

.core-values-section {
  background-color: #f8f9fa;
}

.core-value-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease;
}

.core-value-box:hover {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.core-value-box i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.core-value-box h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.services-list {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  padding-left: 0;
}

.services-list li {
  margin-bottom: 15px;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.services-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #007bff;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .header-title {
    font-size: 1.8rem;
  }

  .core-value-box i {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .header-title {
    font-size: 1.5rem;
  }

  .main-nav a {
    font-size: 0.9rem;
    margin-right: 10px;
  }

  .core-value-box {
    padding: 20px;
  }

  .core-value-box i {
    font-size: 1.8rem;
  }
}


 /*--------------------------------
14. CONTACTOS
/*--------------------------------*/
.about-hero {
margin-top: 70px;
position: relative;
height: 40vh; 
background-image: url('../img/services/main.jpg');
background-size: cover; 
background-position: center; 
color: white; 
display: flex; 
align-items: center; 
justify-content: center; 
text-align: center; 
flex-direction: column; 
}

.about-hero::before {
content: ""; 
position: absolute; 
top: 0; 
left: 0; 
right: 0; 
bottom: 0; 
background-color: rgba(0, 0, 0, 0.7); 
z-index: 1; 
}

.about-heading {
position: relative; 
z-index: 2; 
font-size: 48px; 
color: white;
font-weight: bolder;
margin: 0; 
}

.breadcrumb {
list-style: none; 
padding: 0; 
margin: 10px 0 0; 
display: flex; 
justify-content: center; 
z-index: 2; 
background-color: transparent;
}

/* .nav-items{
  color: white;
} */

.breadcrumb li {
margin: 0 5px; 
}

.breadcrumb a {
text-decoration: none; 
color: white; 
font-size: 16px; 
transition: color 0.3s; 
}

.breadcrumb a:hover {
color: #f0f0f0; 
}

.breadcrumb .active {
font-weight: bold;
/* color: var(--primary-color);  */
color: #3EC1D5; 
}

/* New Styles for About Us Content Layout */


/* header Section Styling */
.section-header {
  text-align: center;
  padding: 10px 20px;
  background-color: #ffffff; /* White background */
  color: #333; /* Dark gray text for readability */
}

/* Heading Styles */
.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #004b8d; /* Blue color for the main heading */
  margin-bottom: 15px;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #004b8d;
  margin: 10px auto 0;
}

.section-header h4 {
  font-size: 20px;
  font-weight: 400;
  color: #007bb5; /* Lighter blue color for the subheading */
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  font-weight: 300;
  color: #555; /* Slightly lighter text for the paragraph */
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Audit and Assurance */

.service-content h1{
padding-top: 30px;
}

.service-content p{
  text-align: center;
  padding-bottom: 30px;
  font-size: 1.8rem;
}

/* List of services */
.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Set exactly 3 columns */
  gap: 20px; /* Add some space between items */
  margin-top: 20px;
}

/* Each individual service item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  position: relative;
  text-align: center;
  height: 200px; /* Allow height to adjust based on content */
  min-height: 150px; /* Ensure the icon fits properly without overflow */
  overflow: hidden;
  padding-bottom: 0; /* Remove any extra padding at the bottom */
  margin-bottom: 0; /* Remove any margin at the bottom */
}

/* Service icon styling */
.feature-icon {
  font-size: 4rem;
  color: #007bff;
  background-color: #f0f0f0;
  border-radius: 50%;
  padding: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1; /* Keeps icon above the text */
}

/* Hover effect for service items */
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  height: 200px; /* Expand height on hover */
}

/* Service text styling */
.feature-item p {
  font-weight: bold;
  font-size: 1.8rem;
  color: #333;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px); /* Start slightly lower for smooth reveal */
  padding-top: 10px; /* Add some padding for spacing after the icon */
}

/* Ensure the icon is always centered */
.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Adjust the hover effect to show the text smoothly */
.feature-item:hover p {
  opacity: 1;
  transform: translateY(0); /* Smoothly reveal the text on hover */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .features-list {
      grid-template-columns: 1fr 1fr; /* 2 columns on smaller screens */
  }

  .feature-item {
      padding: 15px;
  }

  .service-content h1 {
      font-size: 2rem;
  }
}





/* Tax Consulting and Compliance Service Section */

/* Section heading */
.tax-consulting-section h1 {
  padding-top: 30px;
  text-align: center;
}

/* Section description */
.tax-consulting-section p {
  text-align: center;
  padding-bottom: 30px;
  font-size: 1.8rem;
}

/* List of tax services */
.tax-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Set exactly 3 columns */
  gap: 20px; /* Space between items */
  margin-top: 20px;
}

/* Individual service items */
.tax-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  text-align: center;
  height: auto;
  min-height: 150px;
  overflow: hidden;
  margin-bottom: 0;
}

/* Service icon styling */
.tax-consulting-section h1{
  padding-top: 100px;
}

.tax-service-item .service-icon {
  font-size: 4rem;
  color: #007bff;
  background-color: #f0f0f0;
  border-radius: 50%;
  padding: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hover effect for service items */
.tax-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Service text styling */
.tax-service-item p {
  font-weight: bold;
  font-size: 1.8rem;
  color: #333;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px); /* Slide up effect */
  padding-top: 10px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .tax-services-list {
    grid-template-columns: 1fr 1fr; /* 2 columns on smaller screens */
  }

  .tax-consulting-section h1 {
    font-size: 2rem;
  }
}



/* Consulting and Outsourcing Section */
.service-content1 h1{
  padding-top: 100px;
}

.service-content1 p{
  text-align: center;
  padding: 30px;
  font-size: 20px;
  padding-top: 0px;
}

/* Corporate law and allied services Section */

/* Styling for Corporate Law Section */
.corporate-law-section h1 {
  padding-top: 100px;
  text-align: center;
}

.corporate-law-section p {
  text-align: center;
  padding-bottom: 30px;
  font-size: 1.8rem;
}

/* List of corporate services */
.corporate-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px; /* Space between items */
  margin-top: 20px;
}

/* Individual corporate service item */
.corporate-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  text-align: center;
  height: auto;
  min-height: 150px;
}

/* Corporate service icon styling */
.service-icon1 {
  font-size: 4rem;
  color: #007bff;
  background-color: #f0f0f0;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover effect for service items */
.corporate-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  height: 200px;
}

.corporate-service-item p {
  font-weight: bold;
  font-size: 1.8rem;
  color: #333;
  margin: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .corporate-services-list {
    grid-template-columns: 1fr 1fr; /* 2 columns on smaller screens */
  }

  .corporate-law-section h1 {
    font-size: 2rem;
  }
}


/* Other Services section */

.audit-financial-section h1 {
  font-size: 4.5rem;
  color: #333;
  padding-top: 100px;
}

.audit-financial-section p {
  font-size: 1.8rem;
  padding: 30px;
  text-align: center;
  padding-top: 0px;
}


/* List of audit financial services */
.audit-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Set exactly 3 columns */
  gap: 20px; /* Add some space between items */
  margin-top: 20px;
}

/* Each individual service item */
.audit-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  position: relative;
  text-align: center;
  height: 200px; /* Allow height to adjust based on content */
  min-height: 150px; /* Ensure the icon fits properly without overflow */
  overflow: hidden;
  padding-bottom: 0; /* Remove any extra padding at the bottom */
  margin-bottom: 0; /* Remove any margin at the bottom */
}

/* Service icon styling */
.service-icon {
  font-size: 4rem;
  color: #007bff;
  background-color: #f0f0f0;
  border-radius: 50%;
  padding: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* Ensures it stays within the container's bounds */
  z-index: 1; /* Keeps icon above the text */
}


/* Hover effect for audit service items */
.audit-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  height: 200px; /* Expand height on hover */
}

/* Service text styling */
.audit-service-item p {
  font-weight: bold;
  font-size: 1.8rem;
  color: #333;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px); /* Start slightly lower for smooth reveal */
  padding-top: 10px; /* Add some padding for spacing after the icon */
}

/* Ensure the icon is always centered */
.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Adjust the hover effect to show the text smoothly */
.audit-service-item:hover p {
  opacity: 1;
  transform: translateY(0); /* Smoothly reveal the text on hover */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .audit-services-list {
    grid-template-columns: 1fr 1fr; /* 2 columns on smaller screens */
  }

  .audit-service-item {
    padding: 15px;
  }

  .audit-financial-section h1 {
    font-size: 2rem;
  }
}

/*----------------------------------------
15. FOOTER
----------------------------------------*/

.footer-area {
  padding: 40px 0;
  background: #f9f9f9;
}

.footer-head p {
  color: #444;
}

.footer-head h4 {
  color: #444;
  font-size: 16px;
  letter-spacing: 2px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.footer-head a{
  color: #444;
  display: block;
  padding-bottom: 15px;
}

.footer-head a:hover{
  color: var(--primary-color);
}

.footer-logo {
  padding-bottom: 20px;
}

.footer-logo h2 {
  color: #222;
  padding: 0;
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  font-weight: 900;
}

.footer-logo h2 span {
  color: rgb(200, 43, 43);
  font-weight: 900;
}

.footer-icons ul li {
  display: inline-block;
}

.footer-icons ul li a {
  border: 1px solid #444;
  color: #444;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 38px;
  margin-right: 5px;
  text-align: center;
  width: 40px;
  border-radius: 50%;
}

.footer-icons {
  margin-top: 30px;
}

.footer-contacts p span {
  color: var(--primary-color);
  font-weight: 700;
}

.footer-content {
  display: block;
  overflow: hidden;
}

.footer-icons ul li a:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}

.footer-area-bottom {
  background: #f1f1f1 none repeat scroll 0 0;
  padding: 15px 0;
}

.copyright-text a {
  color: #444;
}

.copyright>p {
  margin-bottom: 0;
  color: #444;
}

/*----------------------------------------
 .End CSS
----------------------------------------*/
