.digital-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 15, 0, 0.65) 0%,
    rgba(71, 33, 0, 0.65) 100%
  );
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  perspective: 1000px;
  transform-style: preserve-3d;
  animation: grid-float 20s linear infinite;
  z-index: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.banner-content {
  padding: 200px 0;
  color: white;
  text-align: center;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
}

.badge-icon {
  color: #f28e26;
}

.tech-badge span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.title {
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
  color: white;
}

.gradient-text {
  background: linear-gradient(90deg, #f28e26, #f24c1a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.primary-btn,
.secondary-btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background: linear-gradient(90deg, #f28e26, #f24c1a);
  color: white;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

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

@keyframes grid-float {
  0% {
    transform: translateZ(0) rotate3d(1, 1, 1, 0deg);
  }
  50% {
    transform: translateZ(100px) rotate3d(1, 1, 1, 3deg);
  }
  100% {
    transform: translateZ(0) rotate3d(1, 1, 1, 0deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-content {
    padding: 80px 0;
  }

  .title {
    font-size: 40px;
  }

  .description {
    font-size: 16px;
    padding: 0 20px;
  }

  .cta-group {
    flex-direction: column;
    padding: 0 20px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Add this CSS to your stylesheet */
.banner-marquee-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  overflow: hidden;
  z-index: 999;
  display: none; /* Hidden by default, will be shown by JavaScript */
}

.banner-marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

.banner-marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.banner-marquee-content span {
  display: inline-block;
  color: white;
  font-weight: 500;
  padding: 0 20px;
  font-size: 14px;
}

.banner-marquee-content span:nth-child(even) {
  color: rgba(255, 255, 255, 0.6);
  padding: 0 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.banner-marquee:hover .banner-marquee-content {
  animation-play-state: paused;
}

/* Outsourcing */

.outsourcing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.outsourcing .top-sub-heading span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent;
  background-image: linear-gradient(99.43deg, #f24c1a 0%, #f28e26 100%);
  font-size: 20px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
}

.outsourcing h2 {
  color: #010047;
  font-family: "Urbanist", sans-serif;
  font-size: 42px;
  line-height: 52px;
  margin-top: 14px;
}

.outsourcing p {
  margin-top: 13px;
  color: #454545;
}

/* Whatapp */

.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  animation: pulse 2s infinite;
  z-index: 1000;
}

.whatsapp-btn svg {
  width: 25px;
  height: 25px;
  fill: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Optional hover effect */
.whatsapp-btn:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Off-canvas menu styles */
.unleashed-offcanvas {
  position: fixed;
  right: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 999999;
  padding: 30px;
  transition: all 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.unleashed-offcanvas.is-active {
  right: 0;
}

.unleashed-offcanvas__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.unleashed-offcanvas__close i {
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
}

.unleashed-offcanvas__close:hover i {
  color: #1a73e9;
}

.unleashed-offcanvas__inner {
  padding-top: 30px;
}

.unleashed-offcanvas__logo {
  margin-bottom: 40px;
}

.unleashed-offcanvas__logo img {
  max-width: 150px;
}

.unleashed-offcanvas__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unleashed-offcanvas__nav-item {
  border-bottom: 1px solid #eee;
}

.unleashed-offcanvas__nav-link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.unleashed-offcanvas__nav-link:hover,
.unleashed-offcanvas__nav-link.is-active {
  color: #1a73e9;
  padding-left: 10px;
}

/* Overlay styles */
.unleashed-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999998;
  display: none;
}

.unleashed-overlay.is-active {
  display: block;
}

/* Canvas menu trigger styles */
.unleashed-trigger {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.unleashed-trigger i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  background: #f26f20;
  cursor: pointer;
  border-radius: 5px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .hidden-md {
    display: none;
  }

  .unleashed-trigger {
    display: block;
  }
}

/* Outsourcing  */

:root {
  --primary: #ff6b35;
  --primary-dark: #e85a2c;
  --secondary: #2d3142;
  --accent: #e85a2c;
  --white: #ffffff;
  --dark: #1a1f2e;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Full screen modal */
  --primary-orange: #ff7f00;
  --dark-orange: #e65c00;
  --light-orange: #ffb266;
  --accent-gray: #333333;
  --light-gray: #f7f7f7;
}

.outso-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  /* background: linear-gradient(135deg, var(--dark) 0%, var
  (--secondary) 100%); */
  background: linear-gradient(
    135deg,
    rgba(26, 15, 0, 0.95) 0%,
    rgba(71, 33, 0, 0.95) 100%
  );
  padding: 2rem;
}

.outso-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.03;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-50px) translateY(-50px);
  }
}

.outso-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.outso-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 200px 0;
  align-items: center;
}

.outso-hero__text {
  padding-right: 2rem;
}

.outso-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--primary);
}

.outso-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.outso-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.outso-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.outso-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
}

.outso-cta:hover::before {
  transform: translateX(100%);
  transition: 0.5s;
}

.outso-hero__visual {
  position: relative;
}

.outso-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.outso-service {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.outso-service:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.outso-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transition: var(--transition);
}

.outso-service:hover::before {
  width: 100%;
  opacity: 0.1;
}

.outso-service__icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.outso-service__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.outso-service__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.outso-stats {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.outso-stat {
  text-align: center;
}

.outso-stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.outso-stat__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .outso-hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .outso-hero__text {
    padding-right: 0;
  }

  .outso-title {
    font-size: 3rem;
  }

  .outso-stats {
    position: relative;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .outso-services {
    grid-template-columns: 1fr;
  }

  .outso-stats {
    flex-direction: column;
    gap: 2rem;
  }
}

.outso-floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.outso-why-us {
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.outso-why-us__grid {
  background-image: radial-gradient(#ff6b35 1px, transparent 1px);
  background-size: 30px 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  pointer-events: none;
}

.outso-why-us__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.outso-why-us__header {
  text-align: center;
  margin-bottom: 4rem;
}

.outso-why-us__title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.outso-why-us__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary, #ff6b35);
  border-radius: 2px;
}

.outso-why-us__subtitle {
  /* color: rgba(255, 255, 255, 0.8); */
  color: #333;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.outso-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.outso-benefit {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.outso-benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary, #ff6b35) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.outso-benefit:hover::before {
  opacity: 0.05;
}

.outso-benefit:hover {
  transform: translateY(-10px);
}

.outso-benefit__icon {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1.5rem;
  position: relative;
}

.outso-benefit__title {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-bottom: 1rem;
  position: relative;
}

.outso-benefit__text {
  /* color: rgba(255, 255, 255, 0.7); */
  color: #333;
  line-height: 1.6;
  position: relative;
  margin-bottom: 1.5rem;
}

.outso-benefit__metrics {
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  position: relative;
}

.outso-metric {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-align: center;
}

.outso-metric__number {
  font-size: 1.25rem;
  color: var(--primary, #ff6b35);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.outso-metric__label {
  font-size: 0.875rem;
  /* color: rgba(255, 255, 255, 0.6); */
}

@media (max-width: 1024px) {
  .outso-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .outso-benefits {
    grid-template-columns: 1fr;
  }

  .outso-why-us {
    padding: 4rem 1rem;
  }

  .outso-why-us__title {
    font-size: 2rem;
  }
}

.outso-benefit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.outso-benefit__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* color: rgba(255, 255, 255, 0.8); */
  margin-bottom: 0.75rem;
}

.outso-benefit__list-item i {
  color: var(--primary, #ff6b35);
  font-size: 0.875rem;
}

.prod-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
  position: relative;
}

.prod-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(240, 240, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  z-index: 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d3748;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.prod-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.prod-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: none;
}

.prod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #f26f20, #f26f20);
  transition: height 0.3s ease;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.prod-card:hover::before {
  height: 8px;
}

.prod-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #f26f20;
}

.prod-title {
  font-size: 1.75rem;
  color: #1a202c;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}

.prod-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f26f20, #f26f20);
  margin-top: 0.75rem;
}

.prod-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.prod-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #f26f20;
  transition: color 0.2s ease;
}

.prod-cta:hover {
  color: #2b6cb0;
}

.prod-cta-icon {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.prod-card:hover .prod-cta-icon {
  transform: translateX(4px);
}

.prod-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  background-color: rgba(225, 172, 66, 0.15);
  color: #f26f20;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

@media (max-width: 768px) {
  .prod-section {
    padding: 3rem 1.5rem;
  }

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

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .prod-container {
    gap: 1.5rem;
  }

  .prod-card {
    padding: 1.5rem;
  }
}

/* For Fullscreen modal */
#openModal {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

#openModal:hover {
  background-color: var(--dark-orange);
}

.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-modal.active {
  opacity: 1;
  display: flex;
}

.contact-modal-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.contact-modal-left {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--light-gray);
  position: relative;
}

.contact-modal-right {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  overflow-y: auto;
}

.contact-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  z-index: 10;
}

.contact-close:hover {
  background-color: #e0e0e0;
}

.contact-close:before,
.contact-close:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--accent-gray);
}

.contact-close:before {
  transform: rotate(45deg);
}

.contact-close:after {
  transform: rotate(-45deg);
}

.contact-logo {
  margin-bottom: 40px;
}

.contact-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-orange);
}

.contact-accent {
  width: 80px;
  height: 6px;
  background-color: var(--primary-orange);
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-headline {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--accent-gray);
  margin-bottom: 30px;
}

.contact-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  max-width: 500px;
}

.contact-feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 127, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-orange);
}

.contact-feature-text {
  font-size: 16px;
  color: #444;
}

.contact-features {
  margin-top: 40px;
}

.contact-form-title {
  font-size: 28px;
  font-weight: 700;
  padding-top: 50px;
  color: var(--accent-gray);
  margin-bottom: 30px;
}

.contact-form-group {
  margin-bottom: 24px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-gray);
  font-weight: 600;
  font-size: 14px;
}

.contact-form-group select,
.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  background-color: #f9f9f9;
}

.contact-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ccc'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px top 50%;
  background-size: 12px;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.2);
  background-color: white;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-char-count {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

.contact-button {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: block;
  width: 100%;
  margin-top: 10px;
}

.contact-button:hover {
  background-color: var(--dark-orange);
  transform: translateY(-2px);
}

.contact-button:active {
  transform: translateY(0);
}

.contact-highlight {
  color: var(--primary-orange);
  font-weight: 700;
}

.contact-two-col {
  display: flex;
  gap: 20px;
}

.contact-two-col .contact-form-group {
  flex: 1;
}

@media (max-width: 992px) {
  .contact-modal-container {
    flex-direction: column;
    overflow-y: auto;
  }

  .contact-modal-left,
  .contact-modal-right {
    flex: none;
    width: 100%;
    padding: 40px 20px;
  }

  .contact-modal-left {
    min-height: auto;
  }

  .contact-headline {
    font-size: 32px;
  }

  .contact-description {
    font-size: 16px;
  }

  .contact-two-col {
    flex-direction: column;
    gap: 10px;
  }
}

/* Bookkeeping Services Section Styles */
.bookkeeping-services {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.bookkeeping-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f28e26 0%, #ff7f00 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(125, 99, 255, 0.2);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-description {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.bookkeeping-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

.bookkeeping-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bookkeeping-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.bookkeeping-image:hover img {
  transform: scale(1.03);
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #f28e26;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bookkeeping-info {
  flex: 1;
  padding: 20px 0;
}

.benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #f28e26;
  color: white;
  border-radius: 50%;
  margin-right: 16px;
  margin-top: 2px;
  font-size: 14px;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.benefit-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.bookkeeping-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff7f00 0%, #ff6b35 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(125, 99, 255, 0.3);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(125, 99, 255, 0.4);
  color: white;
}

.secondary-button {
  display: inline-block;
  background-color: white;
  color: #ff7f00;
  border: 2px solid #ff7f00;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: white;
  color: #ff7f00;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .bookkeeping-content {
    flex-direction: column;
  }

  .bookkeeping-image,
  .bookkeeping-info {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .bookkeeping-services {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .bookkeeping-cta {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }
}
