@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&family=Manrope:wght@200..800&display=swap");

:root {
  --primary-color: #179ad7;
  --primary-light: #2d5aa0;
  --primary-color-hover: #1c4a8b;
  --primary-color-active: #1e5a9f;
  --primart-light-color: #1a3b74;
  --primart-dark-color: #091427;
  --primary-badge-color: #1e5a9f7b;
  --secondary-color: #1a3b74;
  --background-color: #f4f4f4;
  --text-color: #333;
  --text-light-color: #2c3e50;
  --accent-color: #4a90e2;
  --border: #e9ecef;
  --font-family: "Inter", sans-serif;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );

  --white: #ffffff;
  --accent-color: #00d4ff;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family) !important;
}

a {
  text-decoration: none !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.primary-badge {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 0.2em 0.5em;
  border-radius: 4px;
}

.animate-text-color {
  color: rgb(128, 231, 199) !important;
}

.primary-badge:hover {
  background-color: var(--secondary-color);
  transition: all 0.2s linear;
}

.primary-btn {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  cursor: pointer;
}

.primary-color {
  color: var(--primary-color) !important;
}

.primary-bg {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.secondary-color {
  color: var(--secondary-color) !important;
}

.secondary-bg {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
}

.secondary-btn-outline {
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color) !important;
  cursor: pointer;
}

.secondary-btn-outline:hover {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
  transition: all 0.2s linear;
}

.primary-btn:hover {
  background-color: var(--primary-color-hover) !important;
  transition: all 0.2s linear;
}

.bg-primary-dark-color {
  background-color: var(--primart-dark-color) !important;
  color: #ffffff !important;
}

.header {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: transparent;
}

.header-content {
  top: 25%;
  left: 0;
}

.header-content h2 {
  font-size: 4rem;
}

#mobile-burger {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .header-content h2 {
    font-size: 2.4rem;
  }

  .header-content {
    top: 20%;
    left: 0;
  }
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  /* optional overlay */
  pointer-events: none;
}

.header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

.service-carousel {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 10;
  max-width: 90%;
  width: 100%;
}

@media (max-width: 768px) {
  .service-carousel {
    max-width: 100%;
    width: 100%;
  }
}

.service-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
  padding-right: 22px;
  /* space for arrow */
}

.service-link::after {
  content: "\2192";
  /* Unicode right arrow */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
  font-size: 1em;
  margin-left: 6px;
}

.service-link:hover::after {
  transform: translateY(-50%) translateX(6px);
}

.service-card {
  background-color: var(--primary-badge-color) !important;
  color: #ffffff !important;
  height: 100%;
}

.stats-section {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  min-height: 400px;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(52, 152, 219, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
  background-size: 200px 200px, 300px 300px, 60px 60px, 60px 60px;
  animation: backgroundMove 20s ease-in-out infinite;
}

.stats-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

@keyframes backgroundMove {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  25% {
    transform: translateX(-10px) translateY(-5px);
  }

  50% {
    transform: translateX(10px) translateY(10px);
  }

  75% {
    transform: translateX(-5px) translateY(5px);
  }
}

.stats-content {
  position: relative;
  z-index: 2;
}

.section-title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #ecf0f1;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1rem;
  color: #bdc3c7;
  font-weight: 400;
  line-height: 1.4;
  max-width: 120px;
  margin: 0 auto;
}

.counter {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.counter.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .fs-sm-12{
    font-size: 12px !important;
  }
  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stats-section {
    padding: 60px 0;
  }

  .section-subtitle {
    margin-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .stat-item {
    margin-bottom: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

.services-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  min-height: 100vh;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}

.section-title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.2;
}

.section-description {
  color: #6b7280;
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.service-card-2 {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 25px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  min-height: 70px;
}

.service-card-2:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: #e0f2fe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

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

.service-title {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.view-all-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.services-grid {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    margin-bottom: 15px;
    padding: 18px 20px;
  }

  .services-section {
    padding: 60px 0;
  }
}

.logo-marquee {
  padding: 30px 0;
  border-radius: 8px;
}

.swiper {
  width: 100%;
  height: 100px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.swiper-slide img {
  height: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.swiper-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  margin: 0 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: auto;
  min-height: 400px;
}

.client-name {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.client-company {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
}

.testimonial-text {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .section-main-title {
    font-size: 32px;
  }

  .testimonial-card {
    margin: 0 10px;
    padding: 30px 20px;
    min-height: 350px;
  }
}

.blog-slider-container {
  position: relative;
  padding: 0 50px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  display: flex !important;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 25px;
}

.blog-card-date {
  color: var(--primary-color-active);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  flex-grow: 1;
}

.blog-card-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-card-link {
  color: var(--primary-color-active);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.blog-card-link:hover {
  color: var(--primary-color-hover);
  text-decoration: none;
}

.blog-card-link::after {
  content: "→";
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.blog-card-link:hover::after {
  margin-left: 10px;
}

@media (max-width: 992px) {
  .blog-slider-container {
    padding: 0 40px;
  }

  .blog-card {
    margin: 0 10px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }

  .blog-slider-container {
    padding: 0 30px;
  }

  .blog-card {
    height: 350px;
    margin: 0 8px;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .blog-slider-container {
    padding: 0 20px;
  }
}

.left-section {
  background-color: #f8f9fa;
}

.right-section {
  background-color: var(--primary-color);
  color: #ffffff;
  z-index: 3;
}

.lets-text {
  color: var(--primary-color-active);
  font-weight: 400;
}

.get-started {
  color: #212529;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.section-subtitle {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #495057;
}

.section-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
}

.right-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.right-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.connect-btn {
  background-color: white;
  color: #20c997;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .left-section::before {
    font-size: 4rem;
  }

  .get-started {
    font-size: 2rem;
  }

  .right-title {
    font-size: 1.8rem;
  }
}

.about-header {
  height: 85vh;
  background: url("../images/Banner.png");
  background-size: cover !important;
  background-position: center;
}

.animated-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.animated-letter.visible {
  opacity: 1;
  transform: translateY(0);
}

.procedures-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Desktop Layout */
.timeline-container {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

/* Main horizontal timeline */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  height: 3px;
  background: linear-gradient(
    to right,
    #d4af37 0%,
    #d4af37 20%,
    #d4af37 40%,
    #d4af37 60%,
    #d4af37 80%,
    #d4af37 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}

.step {
  position: relative;
  width: 16.66%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* Step circles */
.step-circle {
  width: 70px;
  height: 70px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  z-index: 3;
}

/* Content above timeline (steps 1, 3, 5) */
.content-above {
  position: absolute;
  bottom: 120px;
  width: 200px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

/* Content below timeline (steps 2, 4, 6) */
.content-below {
  position: absolute;
  top: 120px;
  width: 200px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Vertical connecting lines */
.connector-top {
  position: absolute;
  bottom: 35px;
  left: 50%;
  width: 2px;
  height: 60px;
  background-color: var(--secondary-color);
  transform: translateX(-50%);
}

.connector-bottom {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 2px;
  height: 60px;
  background-color: var(--secondary-color);
  transform: translateX(-50%);
}

/* Small dots at the end of connectors */
.connector-dot-top {
  position: absolute;
  bottom: 90px;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translateX(-50%);
}

.connector-dot-bottom {
  position: absolute;
  top: 90px;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* Timeline dots */
.timeline-dot {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #d4af37;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.dot-1 {
  left: 25%;
}

.dot-2 {
  left: 41.66%;
}

.dot-3 {
  left: 58.33%;
}

.dot-4 {
  left: 75%;
}

/* Mobile vertical timeline (hidden by default) */
.mobile-timeline {
  display: none;
}

/* Tablet Layout */
@media (max-width: 1024px) {
  .timeline-container {
    padding: 0 20px;
  }

  .content-above,
  .content-below {
    width: 180px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-description {
    font-size: 13px;
  }

  .step-circle {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  /* Hide desktop timeline */
  .timeline-container {
    display: none;
  }

  /* Show mobile timeline */
  .mobile-timeline {
    display: block;
  }

  .mobile-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
  }

  .mobile-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: 40px;
    background-color: #d4af37;
  }

  .mobile-step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 20px;
  }

  .mobile-step-content {
    flex: 1;
    padding-top: 8px;
  }

  .mobile-step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .mobile-step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }
}

/* Small Mobile Layout */
@media (max-width: 480px) {
  .mobile-step {
    margin-bottom: 35px;
  }

  .mobile-step-circle {
    width: 50px;
    height: 50px;
    font-size: 16px;
    margin-right: 15px;
  }

  .mobile-step:not(:last-child)::after {
    left: 24px;
    top: 50px;
    height: 85px;
  }

  .mobile-step-title {
    font-size: 16px;
  }

  .mobile-step-description {
    font-size: 13px;
  }
}

.our-location-section {
  background: url("../images/our-location.png") no-repeat center center;
  background-size: cover;
}

.sustainability-section {
  background: url("https://unisonglobus.com/wp-content/uploads/2024/03/Sustainability-1.jpg")
    no-repeat center center;
  background-size: cover;
}

.about-us-section {
  position: relative;
  overflow: hidden;
}

.about-us-section::before {
  content: "ABOUT US";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 8rem;
  /* Much larger text that scales with viewport */
  font-weight: 800;
  color: rgba(240, 240, 240, 0.857);
  /* Very light gray, almost white */
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  background: transparent;
}

.work-with-us-section {
  position: relative;
  overflow: hidden;
}

.work-with-us-section::before {
  content: "WORK WITH US";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 8rem;
  /* Much larger text that scales with viewport */
  font-weight: 800;
  color: rgba(240, 240, 240, 0.857);
  /* Very light gray, almost white */
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
}

.services-section {
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "SERVICES";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  /* Much larger text that scales with viewport */
  font-weight: 800;
  color: rgba(240, 240, 240, 0.857);
  /* Very light gray, almost white */
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.commitment-section {
  position: relative;
  overflow: hidden;
}

.commitment-section::before {
  content: "DATA SECURITY";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  /* Much larger text that scales with viewport */
  font-weight: 800;
  color: rgba(240, 240, 240, 0.857);
  /* Very light gray, almost white */
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.Software-section {
  position: relative;
  overflow: hidden;
}

.Software-section::before {
  content: "SOFTWARES";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 8rem;
  /* Much larger text that scales with viewport */
  font-weight: 800;
  color: rgba(240, 240, 240, 0.857);
  /* Very light gray, almost white */
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "TESTIMONIALS";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  /* Much larger text that scales with viewport */
  font-weight: 800;
  color: rgba(240, 240, 240, 0.857);
  /* Very light gray, almost white */
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.blog-section {
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: "RESOURCES";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  /* Much larger text that scales with viewport */
  font-weight: 800;
  color: rgba(240, 240, 240, 0.857);
  /* Very light gray, almost white */
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "CONTACT US";
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 8rem;
  /* Much larger text that scales with viewport */
  font-weight: 800;
  color: rgba(240, 240, 240, 0.857);
  /* Very light gray, almost white */
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}

.icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .features-container {
    gap: 20px;
  }

  .feature-item {
    width: 160px;
  }

  .icon-circle {
    width: 100px;
    height: 100px;
  }
}

.contact-banner {
  height: 70vh;
  background: url("https://img.freepik.com/premium-photo/customer-support-hotline-people-connect-phone-application-contact-us-man-cellphone_36325-2482.jpg?w=900")
    no-repeat center center;
  background-size: cover;

  overflow: hidden;
}

.bg-image-overlay {
  background-color: rgba(79, 78, 78, 0.5);
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.25em;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.vision-mission-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
  position: relative;
  overflow: hidden;
}

.vision-mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.vision-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
}

.card-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
}

.card-content {
  color: var(--text-dark);
  text-align: justify;
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: var(--primary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
}

.work-stages {
  padding: 80px 0;
  background: white;
}

.stage-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.stage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stage-number {
  background: var(--secondary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.stage-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.attributes-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.attribute-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.attribute-icon {
  background: var(--secondary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.attribute-content h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-section {
  padding: 80px 0;
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.acculedger-faq-hero {
  padding: 80px 0;
  text-align: center;
}

.acculedger-faq-hero-title {
  /* font-size: 3rem; */
  font-weight: 700;
  margin-bottom: 0px;
}

.acculedger-faq-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.acculedger-faq-main-section {
  padding: 80px 0;
}

.acculedger-faq-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem;
}

.acculedger-faq-section-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.acculedger-faq-categories {
  margin-bottom: 4rem;
}

.acculedger-category-btn {
  background: white;
  border: 2px solid var(--border);
  color: var(--text-light-color);
  padding: 12px 24px;
  border-radius: 25px;
  margin: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.acculedger-category-btn:hover,
.acculedger-category-btn.acculedger-active {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
  transform: translateY(-2px);
}

.acculedger-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.acculedger-faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.acculedger-faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.acculedger-faq-question {
  background: white;
  border: none;
  padding: 1.5rem 2rem;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.acculedger-faq-question:hover {
  background: var(--background-color);
}

.acculedger-faq-question.collapsed .acculedger-faq-icon {
  transform: rotate(0deg);
}

.acculedger-faq-question:not(.collapsed) .acculedger-faq-icon {
  transform: rotate(180deg);
}

.acculedger-faq-icon {
  background: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.acculedger-faq-answer {
  padding: 0 2rem 1.5rem;
  color: #6c757d;
  line-height: 1.7;
}

.acculedger-faq-answer p {
  margin-bottom: 1rem;
}

.acculedger-faq-answer ul {
  padding-left: 1.5rem;
}

.acculedger-faq-answer li {
  margin-bottom: 0.5rem;
}

.acculedger-search-box {
  max-width: 500px;
  margin: 0 auto 3rem;
  position: relative;
}

.acculedger-search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid var(--border);
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.acculedger-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 59, 116, 0.25);
}

.acculedger-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

.acculedger-no-results {
  text-align: center;
  padding: 3rem;
  color: #6c757d;
}

.acculedger-no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.acculedger-contact-cta {
  background: var(--background-color);
  padding: 60px 0;
  text-align: center;
  margin-top: 4rem;
}

.acculedger-contact-cta h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.acculedger-contact-cta p {
  color: #6c757d;
  margin-bottom: 2rem;
}

.acculedger-btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.acculedger-btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  color: white;
}

.acculedger-highlight {
  background-color: yellow;
  padding: 2px 4px;
  border-radius: 3px;
}

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

  .acculedger-faq-section-title {
    font-size: 2rem;
  }

  .acculedger-faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .acculedger-faq-answer {
    padding: 0 1.5rem 1.2rem;
  }

  .acculedger-category-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.service-hero-section {
  background: var(--gradient-primary) !important;
}

/* Service Cards */
.featured-service {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 59, 116, 0.1);
}

.featured-service:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 28px;
  color: var(--white);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.feature-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.software-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.software-badge {
  background: var(--secondary-color);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 18px;
}

.feature-item span {
  font-weight: 500;
  color: var(--text-dark);
}

.year-end-service-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(26, 59, 116, 0.1);
  border: 1px solid rgba(26, 59, 116, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.year-end-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
}

.year-end-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 59, 116, 0.15);
}

.year-end-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.year-end-service-title {
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.year-end-service-description {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .service-hero-title {
    font-size: 2.5rem;
  }

  .service-hero-subtitle {
    font-size: 1.1rem;
  }

  .year-end-service-card {
    padding: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

.contact-us-header {
  background: url("../images/contact-us-header.png") no-repeat center center;
  background-size: cover !important;
}

.bookkeeping-header {
  background: url("../images/bookkeeping.png") no-repeat center center;
  background-size: cover !important;
}

.us-taxation-header {
  background: url("../images/us-taxation-header.png") no-repeat center center;
  background-size: cover !important;
}

.payroll-header {
  background: url("../images/payroll-header.png") no-repeat center center;
  background-size: cover !important;
}

.sale-tax-header {
  background: url("../images/sale-tax-header.png") no-repeat center center;
  background-size: cover !important;
}

.bank-account-header {
  background: url("../images/bank-account-header.png") no-repeat center center;
  background-size: cover !important;
}

.ar-ap-header {
  background: url("../images/ar-ap-header.png") no-repeat center center;
  background-size: cover !important;
}

.year-end-header {
  background: url("../images/year-end-header.png") no-repeat center center;
  background-size: cover !important;
}

.audit-assurance-header {
  background: url("../images/audit-assurance-header.png") no-repeat center
    center;
  background-size: cover !important;
}

.xero-header {
  background: url("../images/xero-header.png") no-repeat center center;
  background-size: cover !important;
}

.faq-header {
  background: url("../images/faq.png") no-repeat center center;
  background-size: cover !important;
}

.blog-header {
  background: url("../images/blog.png") no-repeat center center;
  background-size: cover !important;
}

.cfo-header {
  background: url("../images/cfo.png") no-repeat center center;
  background-size: cover !important;
}

.managment-header {
  background: url("../images/managment.png") no-repeat center center;
  background-size: cover !important;
}

@media (max-width: 768px) {
  .contact-us-header {
    background: url("../images/contact-mob.png") no-repeat center center;
  }

  .bookkeeping-header {
    background: url("../images/bookkeeping-mob.png") no-repeat center center;
  }

  .us-taxation-header {
    background: url("../images/us-tax-mob.png") no-repeat center center;
  }

  .payroll-header {
    background: url("../images/payroll-mob.png") no-repeat center center;
  }

  .sale-tax-header {
    background: url("../images/sale-tax-mob.png") no-repeat center center;
  }

  .bank-account-header {
    background: url("../images/bank-account-mob.png") no-repeat center center;
  }

  .ar-ap-header {
    background: url("../images/ar-ap-mob.png") no-repeat center center;
  }

  .year-end-header {
    background: url("../images/year-end-mob.png") no-repeat center center;
  }

  .audit-assurance-header {
    background: url("../images/audit-mob.png") no-repeat center center;
  }

  .xero-header {
    background: url("../images/xero-mob.png") no-repeat center center;
  }

  .faq-header {
    background: url("../images/faq-mob.png") no-repeat center center;
  }

  .blog-header {
    background: url("../images/blog.png") no-repeat center center;
  }

  .cfo-header {
    background: url("../images/cfo-mob.png") no-repeat center center;
  }

  .managment-header {
    background: url("../images/managment-mob.png") no-repeat center center;
  }
}

/* Custom Checkbox Styles for .service-options */
.service-options .form-check-input {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--primary-color);
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(23, 154, 215, 0.08);
  cursor: pointer;
  position: relative;
}

.service-options .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(23, 154, 215, 0.15);
}

.service-options .form-check-input:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.service-options .form-check-label {
  font-size: 1.08rem;
  color: var(--secondary-color);
  font-weight: 500;
  cursor: pointer;
  padding-left: 6px;
  transition: color 0.2s;
}

.service-options .form-check-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(26, 59, 116, 0.15);
}

.service-options .form-check {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .service-options .form-check-label {
    font-size: 1rem;
  }

  .service-options .form-check-input {
    width: 18px;
    height: 18px;
  }
}

.digital-clock {
  font-family: "Courier New", Courier, monospace;
  border-radius: 8px;
  padding: 8px 0;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  min-width: 120px;
  margin: 0 auto;
}

/* Dropdown menu active background on click */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
}

.dropdown-menu .dropdown-item.active i,
.dropdown-menu .dropdown-item:active i {
  color: #fff !important;
}

.calendly-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, #f97316 100%);
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.calendly-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
  color: white;
}

.cta-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  margin-top: 80px;
}

.cta-card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 2rem;
}
