/* 
   Berkah Karya Landing Page Styles
   Modern, professional design with tech elements
*/

:root {
  /* Primary Colors */
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  
  /* Secondary Colors */
  --secondary: #10b981;
  --secondary-dark: #059669;
  --secondary-light: #34d399;
  
  /* Accent Colors for Services */
  --shopee-color: #ee4d2d;
  --seo-color: #8b5cf6;
  --trading-color: #f59e0b;
  
  /* Neutral Colors */
  --dark: #1e293b;
  --medium: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
  
  /* Font Sizes */
  --h1-size: 3rem;
  --h2-size: 2.5rem;
  --h3-size: 1.75rem;
  --h4-size: 1.25rem;
  --body-size: 1rem;
  --small-size: 0.875rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
}

h2 {
  font-size: var(--h2-size);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

.section-padding {
  padding: var(--space-xl) 0;
}

.bg-light {
  background-color: var(--light);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--medium);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  text-align: center;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-service {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.btn-service:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
}

.logo-img {
  height: 35px;
  width: auto;
}

.brand-text {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.contact-btn {
  background-color: var(--primary);
  color: white !important;
  border-radius: 8px;
  padding: 8px 20px !important;
  margin-left: 10px;
}

.contact-btn::after {
  display: none;
}

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

@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .nav-link {
    padding: 12px 0 !important;
  }

  .contact-btn {
    margin: 10px 0 0 0;
  }
}

/* Hero Section */
#hero {
  position: relative;
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
  padding: 180px 0 100px;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-buttons .btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
  transform: translateX(3px);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--medium);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  transition: all 0.3s ease;
}

.floating-card i {
  font-size: 1.2rem;
  color: var(--primary);
}

.floating-card span {
  font-weight: 500;
  color: var(--dark);
}

.card-1 {
  top: 20%;
  left: -20px;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  top: 50%;
  right: -20px;
  animation: float 8s ease-in-out infinite;
}

.card-3 {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation: float 7s ease-in-out infinite;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
}

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

/* Problem Statement Section */
.problem-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition-normal);
}

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

.problem-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(45deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

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

.problem-card h3 {
  margin-bottom: var(--space-sm);
}

.problem-card p {
  color: var(--medium);
  margin-bottom: 0;
}

/* Services Overview Section */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 1.75rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card[data-service="shopee-tiktok"]::before {
  background: linear-gradient(to bottom, var(--shopee-color), #ff7a59);
}

.service-card[data-service="seo"]::before {
  background: linear-gradient(to bottom, var(--seo-color), #a78bfa);
}

.service-card[data-service="flashrobs"]::before {
  background: linear-gradient(to bottom, var(--trading-color), #fbbf24);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card[data-service="shopee-tiktok"] .service-icon {
  background: linear-gradient(45deg, var(--shopee-color), #ff7a59);
}

.service-card[data-service="seo"] .service-icon {
  background: linear-gradient(45deg, var(--seo-color), #a78bfa);
}

.service-card[data-service="flashrobs"] .service-icon {
  background: linear-gradient(45deg, var(--trading-color), #fbbf24);
}

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

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  line-height: 1.3;
}

.service-description {
  color: var(--text-color);
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.highlight-item {
  text-align: center;
  padding: 0.75rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.highlight-item i {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.highlight-item span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.4;
}

.service-features {
  background: rgba(var(--primary-rgb), 0.02);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.service-features h4 {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

.service-features li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.service-stats .stat {
  text-align: center;
  padding: 0.25rem;
}

.service-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.service-stats .stat-label {
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.3;
}

.btn-service {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .service-content {
    gap: 1rem;
  }
  
  .service-content h3 {
    font-size: 1.35rem;
  }
  
  .service-description {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    padding: 0.5rem;
  }
}

@media (max-width: 767px) {
  .service-card {
    padding: 1.25rem;
  }
  
  .service-content h3 {
    font-size: 1.25rem;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
  
  .service-features {
    padding: 0.875rem;
  }
  
  .service-features li {
    font-size: 0.9rem;
  }
  
  .service-stats {
    padding: 0.875rem;
  }
  
  .service-stats .stat-number {
    font-size: 1.35rem;
  }
  
  .btn-service {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}

/* Service Detail Sections */
.service-detail {
  position: relative;
}

.service-detail-content {
  padding: var(--space-md) 0;
}

.service-detail-content .lead {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.features-list {
  margin-bottom: var(--space-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.feature-item i {
  color: var(--secondary);
  margin-right: 15px;
  font-size: 1.2rem;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.stat-item {
  flex: 1;
  min-width: 150px;
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.stat-item h4 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: var(--small-size);
  margin-bottom: 0;
}

.service-detail-image {
  height: 100%;
  min-height: 400px;
  position: relative;
}

.image-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-element {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.shopee-tiktok-image {
  background-color: #ffebe5;
  background-image: linear-gradient(45deg, #ffebe5 25%, #ffe0d5 25%, #ffe0d5 50%, #ffebe5 50%, #ffebe5 75%, #ffe0d5 75%, #ffe0d5 100%);
  background-size: 20px 20px;
}

.seo-image {
  background-color: #f3f0ff;
  background-image: linear-gradient(45deg, #f3f0ff 25%, #ebe5ff 25%, #ebe5ff 50%, #f3f0ff 50%, #f3f0ff 75%, #ebe5ff 75%, #ebe5ff 100%);
  background-size: 20px 20px;
}

.trading-image {
  background-color: #fff7e5;
  background-image: linear-gradient(45deg, #fff7e5 25%, #fff0d5 25%, #fff0d5 50%, #fff7e5 50%, #fff7e5 75%, #fff0d5 75%, #fff0d5 100%);
  background-size: 20px 20px;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

.stat {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 150px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: var(--small-size);
  color: var(--medium);
}

.graph-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--space-lg);
}

.graph-line {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 70%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.7);
}

.graph-point {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--primary);
}

.graph-point.active {
  background-color: var(--primary);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.3);
}

.dashboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
}

.dashboard-element {
  width: 80%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.dashboard-chart {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 80%;
  height: 40%;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.3) 100%);
  border-radius: var(--radius-sm);
}

/* Results & Case Studies Section */
.case-study-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.case-study-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: var(--small-size);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.case-study-card:nth-child(1) .case-study-tag {
  background-color: var(--shopee-color);
}

.case-study-card:nth-child(2) .case-study-tag {
  background-color: var(--seo-color);
}

.case-study-card:nth-child(3) .case-study-tag {
  background-color: var(--trading-color);
}

.case-study-card h3 {
  margin-bottom: var(--space-md);
}

.case-study-challenge, .case-study-solution {
  margin-bottom: var(--space-md);
}

.case-study-challenge h4, .case-study-solution h4, .case-study-result h4 {
  font-size: 1rem;
  color: var(--medium);
  margin-bottom: 5px;
}

.case-study-challenge p, .case-study-solution p {
  margin-bottom: 0;
}

.result-metric {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.result-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.result-label {
  font-size: var(--small-size);
  color: var(--medium);
}

/* Testimonials Section */
#testimonials {
  position: relative;
  overflow: hidden;
}

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

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.testimonial-content {
  position: relative;
  padding: 0.5rem 0;
}

.testimonial-content i {
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
}

.testimonial-content p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--primary-color);
}

.author-info h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--heading-color);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .testimonial-content p {
    font-size: 0.95rem;
  }
  
  .author-info h4 {
    font-size: 1rem;
  }
}

/* About Us Section */
.about-content h2 {
  margin-bottom: var(--space-sm);
}

.about-content .lead {
  margin-bottom: var(--space-lg);
}

.about-content h3 {
  margin-bottom: var(--space-md);
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.approach-item {
  display: flex;
  align-items: flex-start;
}

.approach-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: var(--space-sm);
  margin-top: 5px;
}

.approach-item h4 {
  margin-bottom: 5px;
}

.approach-item p {
  margin-bottom: 0;
  color: var(--medium);
}

.about-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.team-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background-color: var(--light);
  position: relative;
  z-index: 2;
}

.about-shape {
  position: absolute;
  width: 80%;
  height: 80%;
  background: linear-gradient(45deg, var(--primary-light), var(--secondary-light));
  border-radius: var(--radius-lg);
  bottom: -20px;
  right: -20px;
  z-index: 1;
}

/* Contact Section */
.contact-form-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: var(--space-md);
  margin-top: 5px;
}

.contact-info-item h3 {
  margin-bottom: 5px;
}

.contact-info-item p {
  margin-bottom: 0;
  color: var(--medium);
}

.social-links {
  margin-top: var(--space-md);
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-normal);
}

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

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: none;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-size: var(--small-size);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
  }
  
  .section-padding {
    padding: var(--space-lg) 0;
  }
  
  #hero {
    padding: 150px 0 80px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .floating-card {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-image {
    margin-top: var(--space-xl);
    height: 300px;
  }
  
  .service-card, .problem-card, .case-study-card, .testimonial-card {
    margin-bottom: var(--space-md);
  }
  
  .service-detail-image {
    margin-top: var(--space-lg);
  }
  
  .contact-info {
    margin-top: var(--space-xl);
  }
}

@media (max-width: 767px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h3-size: 1.25rem;
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .approach-item {
    flex-direction: column;
  }
  
  .approach-item i {
    margin-bottom: var(--space-sm);
  }
  
  .footer [class*="col-"] {
    margin-bottom: var(--space-lg);
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .logo-img {
    height: 30px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-stats .stat-item {
    align-items: center;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
}

/* Our Story Section Styles */
#our-story {
    background-color: #ffffff;
}

.story-content {
    padding: 2rem 0;
}

.story-content h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

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

.stat-item h4 {
    color: #007bff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    margin-bottom: 0;
}

.story-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.02);
}

/* Trust Section Styles */
.trust-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.trust-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.trust-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-card p {
    color: #666;
    margin-bottom: 0;
}

/* Enhanced Team Section Styles */
.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.team-member:hover .team-overlay {
    opacity: 1;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
    background: #fff;
}

.team-info h3 {
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.4rem;
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Team Values Styles */
.team-values {
    padding: 40px 0;
}

.team-values h3 {
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.value-item {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.value-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .team-image {
        height: 300px;
    }
    
    .value-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .team-image {
        height: 250px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-info h3 {
        font-size: 1.2rem;
    }
    
    .team-position {
        font-size: 1rem;
    }
}

/* Gallery Section Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

/* Services Section Styles */
#services {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-badge i {
    font-size: 0.8rem;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-badge {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    line-height: 1.3;
}

.service-description {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.highlight-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.highlight-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.service-features {
    background: rgba(var(--primary-rgb), 0.02);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.service-features h4 {
    font-size: 1rem;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.service-stats .stat {
    text-align: center;
    padding: 0.25rem;
}

.service-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.service-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.3;
}

.btn-service {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    #services {
        padding: 4rem 0;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-content {
        gap: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.35rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-highlights {
        gap: 0.5rem;
    }
    
    .highlight-item {
        padding: 0.5rem;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-features {
        padding: 0.875rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .service-stats {
        padding: 0.875rem;
    }
    
    .service-stats .stat-number {
        font-size: 1.35rem;
    }
    
    .btn-service {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

.video-frame {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-frame video {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
