:root {
  --primary-color: #0000ff;
  --secondary-color: #00008b;
  --dark-blue: #1f2937;
  --light-color: #e2edff;
  --dark-color: #343a40;
}

.logo image {
  height: 100%;
  width: flex;
}

body {
  font-family: albert-sans, sans-serif;
}

/* Navigation */
.navbar {
  padding: 15px 0;
  background-color: #e2edff;
}

.navbar-brand {
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 60px;
  margin-right: 10px;
}

.navbar .nav-link {
  color: var(--dark-color);
  margin: 0 10px;
  font-weight: 500;
}

.login-btn {
  background-color: var(--primary-color);
  color: white;
  border-radius: 20px;
  padding: 5px 20px;
}

/* Hero Section */

.hero {
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  text-align: center;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 500;
}

.btn-outline-light {
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 500;
}

/* carousal */
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 36, 64, 0.7);
  z-index: 1;
}

.carousel-item img {
  height: 50vh;
  object-fit: cover;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

/* Services Section */
.services {
  padding: 60px 0;
}

.services h2 {
  font-weight: bold;
  margin-bottom: 50px;
  padding: 10px;
}

.service-item {
  padding: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  height: 100%;
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

/* Blog Section */
.blog {
  padding: 20px 0;
  background-color: #f8f9fa;
}

.blog h2 {
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}

.blog-card {
  background-color: #e2edff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 100px;
  display: flex;
  height: 100%;
}

.blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-date {
  align-self: center;
  display: inline-block;
  background-color: #000066;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-author {
  display: flex;
  align-items: center;
  align-self: center;
}

.blog-author-location {
  font-size: 0.9rem;
  color: #6c757d;
  margin-right: 15px;
}

.blog-author-name {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Newsletter */
.newsletter {
  background-color: #0011ff;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 30px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  border-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: none;
  padding: 10px 15px;
}

.newsletter-btn {
  background-color: #343a40;
  color: white;
  border: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 10px 20px;
}

/* Footer */
.footer {
  background-color: #212529;
  color: white;
  padding: 50px 0 20px;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer p {
  color: #9ca3af;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: #00008b;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.copyright {
  border-top: 1px solid #495057;
  margin-top: 30px;
  padding-top: 20px;
  color: #adb5bd;
  text-align: center;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Hero Section */
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Core Values Section */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #232323;
  margin-bottom: 1rem;
}

.value-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0000cc;
  font-size: 1.5rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #232323;
}

.value-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

/* Journey Section */

.journey-text {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.journey-chart img {
  width: 100%;
  height: auto;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #0000cc;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #555;
}

/* Team Section */
.team-card {
  margin-bottom: 30px;
}

.team-image {
  overflow: hidden;
  border-radius: 10px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 15px 0 5px;
  color: #232323;
}

.team-position {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #2563EB;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #0000cc;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    text-align: center;
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .value-card {
    margin-bottom: 20px;
  }
  
  .stat-value {
    font-size: 1.75rem;
  }
}
  .section-title {
    font-size: 1.5rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .newsletter-section {
    padding: 30px 0;
  }
}

/* Custom CSS */
.card {
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

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

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.bg-primary {
    background-color: #002db3 !important;
}

.btn-dark {
    background-color: #333;
    border-color: #333;
}

.fa-solid {
    color: blue;
}

/* Business Services Section */
.service-card {
  border-radius: 10px;
  transition: transform 0.3s ease;
  border: none;
}

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

.testimonial-card {
  border-radius: 10px;
  border: none;
}

/* Adjust icon styles to match the design */
.bi-building, .bi-question-circle, .bi-pencil-square {
  display: inline-block;
  color: #0d6efd;
}

/* Make sure cards have consistent height within rows */
.card-body {
  display: flex;
  flex-direction: column;
}

/* Add spacing between sections */
.services-section {
  background-color: #f8f9fa;
}

/* images are consistent */
.testimonial-card img {
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card, .testimonial-card {
    margin-bottom: 20px;
  }
}

/* Compliance Services Sections */
.compliance-hero {
  position: relative;
  overflow: hidden;
}

.compliance-content {
  max-width: 540px;
}

.compliance-content h1 {
  font-size: 2.5rem;
  color: #212529;
  line-height: 1.2;
}

.compliance-content p {
  font-size: 1.1rem;
}

.btn-primary {
  background-color: #2463eb;
  border-color: #2463eb;
  box-shadow: 0 4px 6px rgba(36, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e50c8;
  border-color: #1e50c8;
  transform: translateY(-2px);
}

.resource-card {
  border-radius: 8px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.resource-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-link {
  font-weight: 500;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Custom CSS for the Compliance Solutions Section */
.compliance-solutions-section {
  background-color: white;
  padding: 60px 0;
}

.solution-card {
  border-radius: 10px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.solution-icon {
  background-color: #e6f0ff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.solution-icon i {
  font-size: 24px;
}

.card-title {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.card-text {
  color: #6c757d;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .compliance-solutions-section {
    padding: 40px 0;
  }
  
  .solution-card {
    margin-bottom: 20px;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .compliance-content {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .compliance-image {
    margin-top: 2rem;
  }
  
  .compliance-content h1 {
    font-size: 2rem;
  }
}

.hero-section {
    background-size: cover;
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.icon-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 5px;
    background-color: #f8f9fa;
    height: 100%;
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark {
    color: #28a745;
    margin-right: 8px;
}

.service-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2751c4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-box {
    text-align: center;
    padding: 20px;
}

.arrow-icon {
    font-size: 24px;
    color: #2751c4;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

/* Search section styles */
.search-section {
  background-color: #fff;
}

.search-box {
  background-color: #f8f9fa;
  border-radius: 4px;
  padding: 8px 15px;
}

/* Badge styles */
.badge {
  font-weight: 500;
  padding: 6px 10px;
}

.text-purple {
  color: #6f42c1;
}

/* Card styles */
.card {
  transition: transform 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
}

/* Pagination styles */
.pagination .page-link {
  color: #212529;
  border: none;
  margin: 0 5px;
  border-radius: 4px;
}

.pagination .page-item.active .page-link {
  background-color: #0d6efd;
  color: white;
}

/* Round corners for cards */
.card {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Styling for the blue background section */
.bg-primary {
  background-color: #2c63e5 !important;
}

/* Style for download buttons */
.btn-outline-primary {
  border-color: #2c63e5;
  color: #2c63e5;
}

.btn-outline-primary:hover {
  background-color: #2c63e5;
  color: white;
}

/* Style for main CTA button */
.btn-light {
  border-radius: 6px;
}

/* Custom shadow for cards */
/* .shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
} */
