@import url("https://fonts.googleapis.com/css2?family=Cantata+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cantata+One&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-purple: #3d315f;
  --primary-dark-purple: #35275c;
  --primary-orange: #f68633;
  --secondary-orange: #ff8c42;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-beige: #f5f5f0;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Outfit";
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden !important;
  background-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Extra large screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    padding: 0 40px;
  }

  .industries-container {
    max-width: 1320px;
    padding: 0 40px;
  }
}

/* Large screens */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1140px;
    padding: 0 30px;
  }
  .industries-container {
    max-width: 1140px;
    padding: 0 30px;
  }
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  left: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-purple);
  text-decoration: none;
}

.logo svg {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.logo-text {
  font-size: 1.3rem;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .logo svg {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .logo svg {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1rem;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 769px) and (max-width: 992px) {
  .nav-menu {
    gap: 1.2rem;
  }
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-purple);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link.active::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--secondary-orange);
  border-radius: 50%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-purple);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  color: var(--white);
  padding: 180px 20px 120px;
  text-align: center;
  margin-top: 70px;
  height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  background: linear-gradient(
      135deg,
      rgba(74, 21, 75, 0.6) 0%,
      rgba(107, 44, 122, 0.6) 100%
    ),
    url("images/hero-image.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  animation: fadeInUp 1s ease;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Cantata One" !important;
}
.hero-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s both;
  line-height: 1.6;
  padding: 0 20px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.horizontal-line {
  width: 80px;
  height: 2px;
  background: var(--bg-light);
  display: inline-block;
}
.hero-subtitle span {
  white-space: nowrap;
}

.dot-separator {
  color: var(--primary-orange);
  font-weight: bold;
}

.highlight-orange {
  color: var(--primary-orange);
}

.hero-locations {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.3s both;
  color: rgba(255, 255, 255, 0.95);
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: left;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s both;
  flex-wrap: wrap;
}

/* Introductory Section */
.intro-section {
  display: flex;
  justify-content: end;
  position: absolute;
  width: 100%;
  bottom: 5px;
}

.intro-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 80%;
  padding: 2% 20px;
  background: #f8f8f8;
  border-left: 2px solid var(--primary-orange);
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.intro-cta {
  display: flex;
  justify-content: flex-end;
}

.intro-cta .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.intro-cta .btn svg {
  flex-shrink: 0;
}

@media (min-width: 993px) and (max-width: 1199px) {
  .hero {
    padding: 160px 20px 100px;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .hero {
    padding: 140px 20px 90px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }
}

@media (min-width: 320px) and (max-width: 1029px) {
  .intro-section {
    position: unset;
  }
  .intro-content {
    max-width: 100%;
    border-left: 0px;
    flex-direction: column;
  }
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    min-width: auto;
  }
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-orange);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-purple);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-purple);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
  line-height: 1.3;
  font-family: "Cantata One" !important;
}
.title-left {
  font-size: 2.5rem;
  color: var(--primary-purple);
  position: relative;
  padding-bottom: 1rem;
  font-family: "Outfit" !important;
}
.subtitle-left {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 450px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.section-title-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (min-width: 993px) and (max-width: 1199px) {
  section {
    padding: 70px 0;
  }

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

@media (min-width: 769px) and (max-width: 992px) {
  section {
    padding: 60px 0;
  }

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

  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }
}

/* About Section */
.about {
  margin-top: 100px;
  padding-top: 80px;
}
@media (max-width: 1029px) {
  .about {
    margin-top: 0px;
    padding-top: 0px;
  }
}
.about-content {
  margin-top: 1rem;
}

.about-text {
  max-width: 850px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  padding: 0 20px;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section {
  background: white;
  border: 1px solid var(--secondary-orange);
  padding: 40px;
  margin-bottom: 0;
}

.about-section-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.about-icon svg {
  width: 100%;
  height: 100%;
}

.about-text-content h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 400;
}

.about-text-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #ff8c42;
  margin-top: 8px;
}

.about-text-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.about-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-two-column .about-section {
  border-right: none;
}

.about-two-column .about-section:last-child {
  border-right: 1px solid var(--secondary-orange);
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.about-value-item strong {
  color: #1a1a1a;
  font-size: 16px;
}

.about-value-item p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .about-two-column {
    grid-template-columns: 1fr;
  }

  .about-two-column .about-section {
    border-right: 1px solid var(--secondary-orange);
  }

  .about-section {
    padding: 30px;
  }

  .about-icon {
    width: 70px;
    height: 70px;
  }

  .about-text-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-section {
    padding: 25px;
  }

  .about-section-content {
    gap: 20px;
  }

  .about-icon {
    width: 60px;
    height: 60px;
  }

  .about-text-content h2 {
    font-size: 24px;
  }

  .about-text-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 20px;
  }

  .about-section-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .about-icon {
    width: 50px;
    height: 50px;
  }

  .about-text-content h2 {
    font-size: 22px;
  }

  .about-text-content p,
  .about-value-item p {
    font-size: 14px;
  }
}

.values-list {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.values-list li {
  padding: 0.7rem 0;
  color: var(--text-dark);
  line-height: 1.6;
  border-bottom: 1px solid rgba(74, 21, 75, 0.1);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list li strong {
  color: var(--primary-purple);
}

@media (max-width: 768px) {
  .about-text {
    margin-bottom: 3rem;
    font-size: 1rem;
    padding: 0 10px;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 20px;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px var(--shadow);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
}

@media (min-width: 769px) and (max-width: 992px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }
}

/* Services Section */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 20px;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #2525251a;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(233, 112, 32, 0.185);
  border-color: var(--secondary-orange);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  background: #f686330f;
  border-radius: 20px;
  padding: 15px;
  transition: all 0.3s ease;
}
.service-img {
  width: 50px;
}
.service-card:hover .service-icon {
  background: #f6873346;
  transform: scale(1.05);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  max-width: 70px;
  max-height: 70px;
}

.service-card h3 {
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 993px) and (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .service-card {
    padding: 2.2rem;
    border-radius: 22px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
    border-radius: 20px;
  }

  .service-icon {
    width: 90px;
    height: 90px;
    border-radius: 18px;
  }

  .service-icon svg {
    max-width: 60px;
    max-height: 60px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }
}

.service-features {
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
}

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

/* Software Expertise Section */
.software-section {
  background: #f686330f;
}

.software-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 0 20px;
}

.software-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  justify-content: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.software-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-purple);
}

.software-item span {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  font-weight: 500;
}

/* Industries Section */
.industries-section {
  background: #f686330f;
  padding: 80px 0;
  position: relative;
}

.industries-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.industries-header {
  padding-right: 40px;
}

.industries-title {
  font-size: 48px;
  color: #2c2c54;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.industries-title-highlight {
  color: #ff8c42;
}

.industries-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #ff8c42;
  margin-top: 15px;
}

.industries-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-top: 25px;
}

.industries-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.industries-grid-container {
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
}
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  grid-column: 1 / -1;
}

.industries-card {
  background: white;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  border: 2px solid transparent;
  color: #2c2c54;
}

.industries-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--secondary-orange);
  color: var(--secondary-orange);
}

.industries-card.industries-featured {
  border: 2px solid #ff8c42;
  border-bottom: 4px solid #ff8c42;
}

.industries-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
}

.industries-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.industries-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Georgia", serif;
}

.industries-card.industries-featured .industries-card-title {
  color: #ff8c42;
}

@media (max-width: 1100px) {
  .industries-content-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .industries-header {
    padding-right: 0;
  }

  .industries-title {
    font-size: 42px;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .industries-grid-container {
    position: unset;
  }
  .industries-container {
    max-width: unset;
    margin: unset;
    padding: unset;
    width: 100%;
  }
  .text-center {
    text-align: center !important;
    max-width: 100% !important;
  }
  .section-title-border::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .industries-title {
    font-size: 36px;
  }

  .industries-cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .industries-card {
    padding: 30px 20px;
  }

  .industries-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

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

@media (max-width: 480px) {
  .industries-title {
    font-size: 30px;
  }

  .industries-subtitle {
    font-size: 14px;
  }

  .industries-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-card {
    padding: 25px 15px;
  }

  .industries-card-title {
    font-size: 15px;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  background: #f8f8f8;
  padding: 250px 0;
}
@media (max-width: 1100px) {
  .why-choose-section {
    padding: 60px 0px 60px 0px;
  }
}
.why-choose-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-top: 3rem;
  padding: 0 20px;
  align-items: center;
  position: relative;
}

.why-choose-left,
.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-choose-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.boy {
  width: 300px;
}

.why-choose-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.why-choose-vector.left {
  width: 60px;
}
.why-choose-vector.right {
  width: 60px;
  transform: scaleX(-1);
}
.why-choose-description-container {
  background-color: var(--white);
  border-radius: 5px;
  padding: 5px 10px;
  height: 64px;
  position: absolute;
  left: 7px;
}
.why-choose-description {
  width: 80%;
}

.why-choose-description-right {
  text-align: right;
}
@media (min-width: 1100px) {
  .why-choose-description-container.right {
    display: flex;
    justify-content: end;
    right: 7px !important;
    left: unset;
    width: 90%;
  }
  .why-choose-description-container {
    width: 90%;
  }
  .why-choose-item.right {
    align-items: end;
  }
}
@media (min-width: 965px) and (max-width: 1120px) {
  .why-choose-description {
    width: 90%;
  }
  .why-choose-description-right {
    width: 90%;
    text-align: right;
  }
}
@media (max-width: 1050px) {
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-choose-description-right {
    width: 100%;
    text-align: left;
  }
  .why-choose-description-container.right {
    display: flex;
    justify-content: start;
    width: 100%;
  }
  .vector-img {
    display: none;
  }
  .why-choose-vector.right {
    transform: scale(1);
  }
  .why-choose-description-container {
    width: 100%;
  }
}
.why-choose-item p {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* How We Work Section */
.how-we-work-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.work-process {
  margin-top: 3rem;
}

.work-process-title {
  text-align: center;
  color: var(--primary-purple);
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.work-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.work-process-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(74, 21, 75, 0.05);
  transition: all 0.3s ease;
}

.work-process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(74, 21, 75, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
}

.work-process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(74, 21, 75, 0.05) 100%);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.work-process-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary-orange);
  stroke-width: 2;
}

.work-process-item:hover .work-process-icon {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(74, 21, 75, 0.1) 100%);
  transform: scale(1.05);
}

.work-process-item h4 {
  color: var(--primary-purple);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.work-process-item p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Communication Section */
.communication-section {
  background: var(--white);
  padding: 80px 0;
}

.communication-content {
  max-width: 900px;
  margin: 0 auto;
}

.communication-intro {
  text-align: center;
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.communication-intro strong {
  color: var(--primary-purple);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.communication-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.communication-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.communication-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.communication-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(74, 21, 75, 0.05) 100%);
  border-radius: 12px;
  padding: 1rem;
}

.communication-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary-orange);
  stroke-width: 2;
}

.communication-feature-content h4 {
  color: var(--primary-purple);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.communication-feature-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.communication-note {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-style: italic;
}

.communication-testimonial {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(74, 21, 75, 0.02) 100%);
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-orange);
  text-align: center;
}

.testimonial-quote {
  color: var(--text-dark);
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 500;
}

.testimonial-author {
  color: var(--primary-purple);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* Pricing Section */
.pricing-section {
  background: var(--white);
  padding: 80px 0;
}

.pricing-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.pricing-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 250px;
}

.benefit-icon {
  font-size: 3rem;
  line-height: 1;
}

.pricing-benefit-item p {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.pricing-steps {
  margin: 4rem 0;
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 15px;
}

.pricing-steps-title {
  text-align: center;
  color: var(--primary-purple);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

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

.step-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.step-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.engagement-models {
  margin: 4rem 0;
}

.engagement-title {
  text-align: center;
  color: var(--primary-purple);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.engagement-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.model-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(74, 21, 75, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(74, 21, 75, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
}

.model-card.featured {
  border-color: var(--primary-orange);
  border-width: 3px;
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.model-card h4 {
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.model-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.model-features li {
  padding: 0.7rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.model-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 1.1rem;
}

.model-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.all-plans-include {
  margin: 4rem 0;
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 15px;
}

.plans-title {
  text-align: center;
  color: var(--primary-purple);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

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

.plan-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.plan-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.plan-feature .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.plan-feature p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.pricing-faq {
  margin: 4rem 0;
}

.faq-title {
  text-align: center;
  color: var(--primary-purple);
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

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

.faq-item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-orange);
}

.faq-item h4 {
  color: var(--primary-purple);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.pricing-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(74, 21, 75, 0.05) 100%);
  border-radius: 15px;
  margin-top: 4rem;
}

.pricing-cta h3 {
  color: var(--primary-purple);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing-cta p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact {
  background: #f686330f;
  position: relative;
}

.contact-header {
  margin-bottom: 2rem;
}

.contact-header h3 {
  color: var(--primary-purple);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 0;
}

.info-item h4 {
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.info-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.info-item p a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item p a:hover {
  color: var(--secondary-orange);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--primary-purple);
  color: var(--white);
  padding-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 0 20px;
  align-items: center;
}

@media (min-width: 769px) and (max-width: 992px) {
  .footer-content {
    gap: 2rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-section h4 {
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-bottom-container {
  color: rgba(255, 255, 255, 0.7);
  background: var(--primary-dark-purple);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--primary-dark-purple);
}

.footer-tagline {
  font-style: italic;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .newsletter-form {
    flex-direction: column;
  }
}
.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.btn-newsletter {
  padding: 12px 24px;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  background: var(--secondary-orange);
  transform: translateY(-2px);
}

/* Scroll Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .slide-in-left,
  .slide-in-right,
  .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fade-in-up.animate-in,
  .slide-in-left.animate-in,
  .slide-in-right.animate-in,
  .scale-in.animate-in {
    opacity: 1;
    transform: none;
  }
}

/* Hero Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation delays for grid items */
.services-grid .service-card:nth-child(1) {
  animation-delay: 0s;
}

.services-grid .service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.services-grid .service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.services-grid .service-card:nth-child(4) {
  animation-delay: 0.3s;
}

.services-grid .service-card:nth-child(5) {
  animation-delay: 0.4s;
}

.services-grid .service-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* Responsive Design */

/* Tablet Landscape and Below */
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}

/* Tablet Portrait and Below */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px var(--shadow);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    padding: 120px 15px 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0;
  }

  .hero-locations {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    margin-bottom: 2rem;
  }

  .hero-description p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
    padding-bottom: 1.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    padding: 0 15px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 15px;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-cta {
    justify-content: center;
  }
  .boy {
    width: 250px;
  }
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accountant-illustration {
    order: -1;
    margin: 0 auto;
  }

  .software-item {
    width: 120px;
    height: 120px;
  }

   .services-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .work-process-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
   }

   .communication-features {
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
   }

   .pricing-benefits {
     gap: 2rem;
   }

   .steps-grid {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }

   .models-grid {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }

   .plans-features-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
   }

   .faq-grid {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }

   .software-grid {
     gap: 1rem;
     padding: 0 15px;
   }

  .software-item {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 15px;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 15px;
  }

  .service-card {
    padding: 2rem;
  }

  .about-text {
    padding: 0 15px;
  }

  .footer-content {
    gap: 2rem;
    padding: 0 15px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 100px 12px 60px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .hero-locations {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .hero-description {
    margin-bottom: 1.5rem;
  }

  .hero-description p {
    font-size: 0.9rem;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
    padding-bottom: 1rem;
    margin-bottom: 0.8rem;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 12px;
  }

  .about-text {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    padding: 0 12px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 12px;
  }

  .software-grid {
    gap: 0.8rem;
    padding: 0 12px;
  }

  .software-item {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .why-choose-grid {
    padding: 0 12px;
  }

  .why-choose-item p {
    font-size: 0.95rem;
  }

  .stat-item {
    padding: 1.8rem 1.2rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }

  .services-grid {
    gap: 1.2rem;
    padding: 0 12px;
  }

  .service-card {
    padding: 1.8rem;
    border-radius: 18px;
  }

  .service-icon {
    width: 85px;
    height: 85px;
    margin-bottom: 1.2rem;
    border-radius: 16px;
  }

  .work-process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .work-process-item {
    padding: 2rem 1.5rem;
  }

  .work-process-icon {
    width: 70px;
    height: 70px;
    padding: 1.2rem;
  }

  .pricing-benefits {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pricing-steps {
    padding: 2rem 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .model-card {
    padding: 2rem;
  }

  .all-plans-include {
    padding: 2rem 1.5rem;
  }

  .plans-features-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cta {
    padding: 2rem 1.5rem;
  }

  .communication-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .communication-feature {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .communication-icon {
    margin: 0 auto;
  }

  .communication-testimonial {
    padding: 2rem 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .service-icon svg {
    max-width: 55px;
    max-height: 55px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .info-item {
    gap: 1rem;
    padding: 0.8rem 0;
  }

  .info-item h4 {
    font-size: 1rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .footer {
    padding: 2.5rem 0 1rem;
  }

  .footer-content {
    gap: 1.8rem;
    padding: 0 12px;
  }

  .footer-logo {
    font-size: 1.1rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section ul li {
    font-size: 0.9rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

  .software-item {
    width: 100px;
    height: 100px;
    padding: 1rem;
  }

  .software-logo {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .software-item span {
    font-size: 0.75rem;
  }

  .why-choose-content {
    gap: 1.5rem;
  }

  .accountant-illustration {
    width: 150px;
    height: 225px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Reduce animation distance on mobile */
  .fade-in-up {
    transform: translateY(20px);
  }

  .slide-in-left {
    transform: translateX(-30px);
  }

  .slide-in-right {
    transform: translateX(25px);
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }

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

  .logo-text {
    font-size: 0.9rem;
  }

  .logo svg {
    width: 35px;
    height: 35px;
  }
}

.left-section {
  padding: 20px;
  width: 100%;
}

.heading {
  font-size: 48px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.heading span {
  color: #ff8844;
}

.subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  padding: 25px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 380px) {
  .info-card {
    flex-direction: column;
    align-items: unset;
  }
  .why-choose-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .why-choose-left,
  .why-choose-right {
    width: 100%;
  }
  .why-choose-description {
    width: 100%;
  }
  .intro-cta .btn{
    white-space: unset;
  }
}
.icon {
  width: 50px;
  height: 50px;
  background: #fff3ed;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke: #ff8844;
  fill: none;
  stroke-width: 2;
}

.info-content h3 {
  font-size: 14px;
  color: #999;
  font-weight: 500;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 16px;
  color: #2d2d2d;
  font-weight: 600;
}

.right-section {
  position: relative;
  padding: 20px;
  width: 100%;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.form-required {
  color: #ff8844;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: #fafafa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ff8844;
  background: white;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: #ff8844;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit-btn:hover {
  background: #ff7733;
  transform: translateY(-2px);
}

.form-submit-btn:active {
  transform: translateY(0);
}
.orange-bg {
  position: absolute;
  background-color: var(--secondary-orange);
  height: 100%;
  width: 400px;
  right: 0;
}
@media (max-width: 968px) {
  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }

  .heading {
    font-size: 36px;
  }

  .form-wrapper::before {
    width: 100px;
    height: 100px;
    top: -15px;
    right: -15px;
  }
  .orange-bg {
    display: none;
  }
  .title-left {
    text-align: center;
  }
  .subtitle-left {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .form-wrapper {
    padding: 30px 20px;
  }

  .heading {
    font-size: 32px;
  }
}

.links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 1070px) {
  .links {
    flex-direction: column;
    justify-content: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.card-title {
  font-family: "Cantata One" !important;
}

.font-cantata {
  font-family: "Cantata One" !important;
}

.text-black {
  color: #252525;
}
.margin-top {
  margin-top: 1rem;
}
