/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f97316;
    --secondary-color: #10b981;
    --accent-color: #eab308;
    --blue-color: #3b82f6;
    --dark-color: #1f2937;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --border-radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 2.7;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideDown 0.8s ease-out;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.nav-link:nth-child(1) {
  animation-delay: 0.3s;
}
.nav-link:nth-child(2) {
  animation-delay: 0.4s;
}
.nav-link:nth-child(3) {
  animation-delay: 0.5s;
}

.nav-link:hover {
  color: #e2b051;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #555;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(2) {
  margin: 3px 0;
}

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

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  max-height: 200px;
}

.mobile-menu-content {
  padding: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #e2b051;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-backgrounds {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.5s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 5rem;
    }
}

.hero-text {
    color: white;
    text-align: left;
    animation: heroFadeInUp 0.8s ease-out;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.experience-badge {
    background-color: #eaeaed;
    border-radius: 20px;
    padding: 0.1rem 0.50rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #636363;
    width: fit-content;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (min-width: 640px) {
    .experience-badge {
        border-radius: 30px;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
        gap: 1rem;
        font-size: 18px;
        letter-spacing: 0.81px;
    }
}

.avatars {
    display: flex;
    margin-left: -0.25rem;
}
@media (min-width: 640px) {
    .avatars {
        margin-left: -0.5rem;
    }
}
.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.25rem;
}
@media (min-width: 640px) {
    .avatar {
        width: 35px;
        height: 35px;
        margin-left: -0.5rem;
    }
}
.avatar-1 { background-color: #d1d5db; }
.avatar-2 { background-color: #9ca3af; }
.avatar-3 { background-color: #6b7280; }
.avatar-4 { background-color: #4b5563; }

.hero-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 2.6px;
    }
}
.hero-subtitle {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    max-width: 90%;
}
@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: 0.8px;
        margin-bottom: 2rem;
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
        line-height: 1.42;
        letter-spacing: 1.1px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 28px;
        line-height: 1.43;
        letter-spacing: 1.4px;
        max-width: 724px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.btn {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-radius: 10px;
    height: 48px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (min-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 16px;
        letter-spacing: 0.7px;
        height: 54px;
        width: auto;
        min-width: 240px;
    }
}

@media (min-width: 1024px) {
    .btn {
        font-size: 18px;
        letter-spacing: 0.9px;
        height: 58px;
        min-width: 260px;
    }
}

@media (min-width: 1280px) {
    .btn {
        min-width: 280px;
    }
}

.btn-primary {
    background-color: #f3bf5f;
    color: white;
}

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

.btn-group {
    display: flex;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-group {
        width: auto;
    }
}

.btn-secondary {
    border: 2px solid;
    color: #1ea013;
    
    background: transparent;
    flex: 1;
    border-radius: 10px ;
    min-width: 200px;
}

@media (min-width: 1024px) {
    .btn-secondary {
        min-width: 220px;
    }
}

@media (min-width: 1280px) {
    .btn-secondary {
        min-width: 280px;
    }
}

.btn-secondary:hover {
    background-color: #13690b;
    color: white;
    transform: translateY(-2px);
}

.btn-arrow {
    background-color: #4f4f4f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
    font-size: 20px;
}

@media (min-width: 640px) {
    .btn-arrow {
        padding: 0 1rem;
    }
}


/* Section Styles */
.section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 9rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionHeaderFadeIn 0.6s ease-out forwards;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

@keyframes sectionHeaderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #171712;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 48px;
        letter-spacing: -1px;
    }
}

.highlight {
    color: #feca28;
}

.section-header p {
    font-size: 16px;
    color: #727272;
    letter-spacing: 0.5px;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-header p {
        font-size: 20px;
        letter-spacing: 0.8px;
        max-width: 48rem;
    }
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 24px;
        letter-spacing: 1.1px;
        line-height: 1.42;
    }
}

@media (min-width: 1024px) {
    .section-header p {
        font-size: 28px;
        letter-spacing: 1.4px;
        line-height: 1.43;
        max-width: 64rem;
    }
}



/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight {
    color: var(--accent-color);
}

.highlight-blue {
    color: #e2b051;
}

.text-white {
    color: var(--white);
}

/* Feature Cards Section */
.feature-cards-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    padding: 2rem;
    transition: var(--transition);
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--blue-color), #06b6d4);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transform: rotate(12deg);
    transition: var(--transition);
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title {
    font-size: 1.50rem;
    font-weight: bold;
    color: var(--gray-900);
    transition: var(--transition);
}

.feature-card:hover .feature-title {
    color: #eab308;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Image Cards Section */
.image-cards-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.image-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 2rem;
}

@media (min-width: 1024px) {
    .image-cards-container {
        flex-direction: row;
        gap: 6rem;
        justify-content: center;
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.image-card {
    position: relative;
    width: 25rem;
    height: 32.8125rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1rem;
}

.image-card-content {
    position: absolute;
    bottom: 1.875rem;
    left: 1.3125rem;
    right: 1.3125rem;
    background: var(--white);
    border-radius: 0.625rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.image-card:hover .image-card-content {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.image-card-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(22, 22, 22, 0.6);
    line-height: 1.2;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .image-card-content h3 {
        font-size: 2rem;
    }
}

.image-card-content p {
    font-size: 1rem;
    color: #8f9497;
    line-height: 1.8;
    letter-spacing: 0.0563em;
}

@media (min-width: 1024px) {
    .image-card-content p {
        font-size: 1.125rem;
    }
}

/* Process Timeline Section */
.process-timeline-section {
    padding: 10rem 0;
    background: var(--white);
}

.timeline-desktop {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .timeline-desktop {
        display: block;
    }
}

.timeline-line {
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-300);
}

.timeline-numbers {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.timeline-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--blue-color), #06b6d4);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    position: relative;
    z-index: 10;
}

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

.timeline-step {
    text-align: center;
}

.timeline-card {
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.timeline-card:hover {
    box-shadow: var(--shadow-lg);
}

.timeline-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.timeline-icon svg {
    width: 2rem;
    height: 2rem;
}

.timeline-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.timeline-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Mobile Timeline */
.timeline-mobile {
    display: block;
    white-space: 2rem;
}

@media (min-width: 1024px) {
    .timeline-mobile {
        display: none;
    }
}

.mobile-timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--blue-color), #06b6d4);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
}

.mobile-step-content {
    flex: 1;
    background: var(--white);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.mobile-step-content .timeline-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.mobile-step-content .timeline-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-step-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.mobile-step-content p {
    color: var(--gray-600);
}

/* Domain Expertise Section */
.domain-expertise-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.domain-bg {
    position: absolute;
    inset: 0;
}

.domain-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.domain-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.domain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .domain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .domain-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.domain-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.domain-card:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.domain-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    transition: var(--transition);
}

.domain-card:hover .domain-icon {
    transform: scale(1.1);
}

.domain-icon svg {
    width: 2rem;
    height: 2rem;
}

.domain-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.domain-card:hover h3 {
    color: var(--accent-color);
}

.domain-card p {
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* Additional Services Section */
.additional-services-section {
    padding: 10rem 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-inner {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow);
    text-align: center;
}

.service-inner h3 {
    font-size: 1.65rem;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.service-card:hover .service-inner h3 {
    color: #eab308;
}

.service-inner p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}



/* Footer */
.footer {
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.pixabay.com/photo/2020/05/04/13/30/outdoors-5129182_960_720.jpg");
  background-size: cover;
  background-position: center;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.75);
}

.footer-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-company {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-company {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #555;
}

.social-link:hover {
  background: #e2b051;
  transform: scale(1.1);
}

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

.footer-section-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links p {
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

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

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

/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

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