/* ========================================
   INDEX PAGE MODERN STYLES (index.html)
======================================== */

/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Header Section - Fix visibility on homepage */
.header_section {
  background: rgba(0, 32, 74, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff !important;
}

.navbar-brand img {
  /* No filter - using white logo directly */
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff !important;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #00bbf0 !important;
  background: rgba(0, 187, 240, 0.1);
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}

.custom_nav-container .navbar-toggler span {
  background-color: #ffffff !important;
}

/* Service Section Modern Styling */
.service_section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.service_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 187, 240, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.service_section .container {
  position: relative;
  z-index: 2;
}

.service_section .heading_container {
  margin-bottom: 70px;
}

.service_section .heading_container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
}

.service_section .heading_container h2 span {
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service_section .heading_container p {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Box Styling */
.service_box {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service_box:hover::before {
  transform: scaleX(1);
}

.service_box:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 50px rgba(0, 187, 240, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.1);
}

.service_img_box {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service_box:hover .service_img_box {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
}

.service_img_box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.service_box:hover .service_img_box img {
  filter: brightness(1.1);
}

.service_detail_box {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service_detail_box h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.3;
}

.service_detail_box p {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  flex: 1;
}

/* Statistics Section Enhancement */
.stats_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.stats_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 187, 240, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.stats_section .container {
  position: relative;
  z-index: 2;
}

.stats_section .heading_container {
  margin-bottom: 60px;
}

.stats_section .heading_container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
}

.stats_section .heading_container h2 span {
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats_section .stat_item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 187, 240, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.stats_section .stat_item:nth-child(1) { animation-delay: 0.1s; }
.stats_section .stat_item:nth-child(2) { animation-delay: 0.2s; }
.stats_section .stat_item:nth-child(3) { animation-delay: 0.3s; }
.stats_section .stat_item:nth-child(4) { animation-delay: 0.4s; }

.stats_section .stat_item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0, 187, 240, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.1);
}

.stats_section .stat_number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stats_section .stat_label {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #4a5568;
  letter-spacing: 0.5px;
}

/* Why Section Enhancements */
.why_section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.why_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.why_section .container {
  position: relative;
  z-index: 2;
}

/* Featured Value Section */
.featured_value_section {
  margin-bottom: 80px;
}

.featured_value_card {
  background: white;
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.1),
    0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.featured_value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
}

.value_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 1px solid rgba(0, 187, 240, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #00bbf0;
}

.value_badge i {
  font-size: 14px;
}

.featured_value_content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 25px;
  line-height: 1.2;
}

.featured_description {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 30px;
}

.transparency_features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.transparency_features .feature_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(0, 187, 240, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 187, 240, 0.1);
  transition: all 0.3s ease;
}

.transparency_features .feature_item:hover {
  background: rgba(0, 187, 240, 0.1);
  transform: translateX(5px);
}

.transparency_features .feature_item i {
  font-size: 1.25rem;
  color: #00bbf0;
  min-width: 20px;
}

.transparency_features .feature_item span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a202c;
}

.featured_value_image {
  position: relative;
  padding: 20px;
}

.featured_value_image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured_value_image .main_image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.floating_stats {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 991.98px) {
  .floating_stats {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    right: auto;
  }
  
  .featured_value_image {
    flex-direction: column;
  }
  
  .featured_value_image .main_image {
    max-width: 300px;
  }
}

.stat_bubble {
  background: white;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 2px solid rgba(0, 187, 240, 0.2);
  animation: float 3s ease-in-out infinite;
}

.stat_bubble:nth-child(2) {
  animation-delay: 1.5s;
}

.stat_bubble .stat_number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #00bbf0;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.stat_bubble .stat_label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
}

/* Values Grid */
.values_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.value_card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.value_card:nth-child(1) { animation-delay: 0.1s; }
.value_card:nth-child(2) { animation-delay: 0.2s; }
.value_card:nth-child(3) { animation-delay: 0.3s; }

.value_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 187, 240, 0.05), transparent);
  transition: left 0.6s ease;
}

.value_card:hover::before {
  left: 100%;
}

.value_card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0, 187, 240, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.1);
}

.value_icon_wrapper {
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
}

.value_icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.value_card:hover .value_icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
}

.value_icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.value_icon i {
  font-size: 2.5rem;
  color: #00bbf0;
  transition: all 0.3s ease;
}

.value_card:hover .value_icon i {
  color: #0099cc;
  transform: scale(1.1);
}

.icon_badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 187, 240, 0.4);
}

.icon_badge i {
  color: white;
  font-size: 14px;
}

.value_content h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.3;
}

.value_content p {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.value_benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.benefit_tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 187, 240, 0.1);
  border: 1px solid rgba(0, 187, 240, 0.2);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00bbf0;
  transition: all 0.3s ease;
}

.value_card:hover .benefit_tag {
  background: rgba(0, 187, 240, 0.15);
  border-color: rgba(0, 187, 240, 0.3);
}

/* Why CTA Section */
.why_cta_section {
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 187, 240, 0.3);
}

.why_cta_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta_content {
  position: relative;
  z-index: 1;
}

.cta_content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta_content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta_primary,
.cta_secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta_primary {
  background: white;
  color: #00bbf0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: #0099cc;
  text-decoration: none;
}

.cta_secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta_secondary:hover {
  background: white;
  color: #00bbf0;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Portfolio Section */
.portfolio_section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.portfolio_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 187, 240, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.portfolio_section .container {
  position: relative;
  z-index: 2;
}

.portfolio_section .heading_container {
  margin-bottom: 60px;
}

.portfolio_card {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.1),
    0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 24px 24px 0 0;
}

.portfolio_card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 70px rgba(0, 187, 240, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio_image {
  text-align: center;
}

.portfolio_logo {
  max-width: 200px;
  height: auto;
  transition: all 0.3s ease;
}

.portfolio_card:hover .portfolio_logo {
  transform: scale(1.05);
}

.portfolio_content {
  text-align: center;
}

.portfolio_content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
  line-height: 1.2;
}

.portfolio_tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #00bbf0;
  margin-bottom: 20px;
  font-style: italic;
}

.portfolio_description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 30px;
}

.portfolio_features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.feature_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 1px solid rgba(0, 187, 240, 0.2);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00bbf0;
  transition: all 0.3s ease;
}

.feature_badge:hover {
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
  border-color: rgba(0, 187, 240, 0.4);
  transform: translateY(-2px);
}

.feature_badge i {
  font-size: 14px;
}

/* Footer Portfolio Section */
.info_portfolio {
  text-align: center;
}

.info_portfolio h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.portfolio_footer {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.portfolio_footer:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.footer_portfolio_logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.portfolio_footer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* Contact Section Enhancement */
.contact_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 187, 240, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.contact_section .container {
  position: relative;
  z-index: 2;
}

.contact_info_summary {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 30px;
}

.contact_info_item {
  text-align: center;
  padding: 20px 15px;
  transition: all 0.3s ease;
}

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

.contact_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 187, 240, 0.3);
}

.contact_info_item:hover .contact_icon {
  background: linear-gradient(135deg, #0099cc 0%, #007a99 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 187, 240, 0.4);
}

.contact_icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.contact_detail h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.contact_detail p {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  margin: 0;
}

.contact_detail a {
  color: #0487af;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact_detail a:hover {
  color: #0099cc;
  text-decoration: underline;
}

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

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

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

@media (max-width: 991.98px) {
  .featured_value_card {
    padding: 40px 30px;
  }
  
  .featured_value_content h3 {
    font-size: 2rem;
  }
  
  .floating_stats {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .header_section {
    padding: 10px 0;
  }
  
  .hero_area {
    padding-top: 60px;
  }
  
  .sub_page .hero_area {
    padding-top: 60px;
  }
  
  .product_hero_section {
    padding: 140px 0 80px;
  }
  
  .service_section,
  .stats_section,
  .why_section,
  .contact_section,
  .portfolio_section {
    padding: 60px 0;
  }
  
  .portfolio_card {
    padding: 40px 30px;
  }
  
  .service_section .heading_container h2,
  .stats_section .heading_container h2 {
    font-size: 2.25rem;
  }
  
  .values_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .featured_value_content h3 {
    font-size: 1.75rem;
  }
  
  .why_cta_section {
    padding: 60px 30px;
  }
  
  .cta_content h3 {
    font-size: 2rem;
  }
  
  .cta_buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta_primary,
  .cta_secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .header_section {
    padding: 8px 0;
  }
  
  .hero_area {
    padding-top: 55px;
  }
  
  .sub_page .hero_area {
    padding-top: 55px;
  }
  
  .product_hero_section {
    padding: 130px 0 60px;
  }
  
  .service_box,
  .value_card {
    padding: 30px 20px;
  }
  
  .portfolio_card {
    padding: 30px 20px;
  }
  
  .portfolio_logo {
    max-width: 150px;
  }
  
  .stats_section .stat_number {
    font-size: 2.5rem;
  }
  
  .featured_value_card {
    padding: 30px 20px;
  }
  
  .transparency_features .feature_item {
    padding: 12px 15px;
  }
  
  .why_cta_section {
    padding: 40px 20px;
  }
  
  .cta_content h3 {
    font-size: 1.75rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .service_box,
  .value_card,
  .stat_item {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .service_box:hover,
  .value_card:hover,
  .stat_item:hover {
    transform: translateY(-2px);
  }
}

/* socialRacer Service Page Styles */
.product_hero_section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 187, 240, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #00204a 0%, #001a38 15%, #00366b 50%, #005a96 75%, #00bbf0 100%);
  color: white;
  padding: 170px 0 100px; /* Extra top padding for fixed header */
  position: relative;
  overflow: hidden;
}

.product_hero_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.product_hero_section .container {
  position: relative;
  z-index: 2;
}

/* Remove backgrounds from socialRacer logos - gradient handles visibility */
img[src*="socialRacer_logo"] {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Override for footer logo (already has white filter) */
.footer_portfolio_logo {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.product_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 187, 240, 0.2);
  border: 1px solid rgba(0, 187, 240, 0.4);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #00bbf0;
}

.product_title img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.product_subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.product_description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 30px;
}

.product_stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.product_stats .stat_item {
  text-align: center;
}

.product_stats .stat_number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00bbf0;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.product_stats .stat_label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.platforms_showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
}

.platform_icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.platform_icon:hover {
  background: rgba(0, 187, 240, 0.3);
  transform: scale(1.1);
  border-color: #00bbf0;
}

/* Features Section */
.features_section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature_box {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  height: 100%;
}

.feature_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.feature_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.3);
}

.feature_box h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  text-align: center;
}

.feature_box p {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

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

.feature_list li {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.feature_list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00bbf0;
  font-weight: bold;
}

/* Platforms Grid */
.platforms_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.platforms_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.platform_card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.platform_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 187, 240, 0.15);
}

.platform_logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00bbf0;
  margin: 0 auto 15px;
}

.platform_card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 5px;
}

.platform_card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0;
}

/* Tech Stack Section */
.tech_stack_section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.tech_category {
  margin-bottom: 30px;
}

.tech_category h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech_category h4 i {
  color: #00bbf0;
}

.tech_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech_tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 1px solid rgba(0, 187, 240, 0.2);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00bbf0;
  transition: all 0.3s ease;
}

.tech_tag:hover {
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
  transform: translateY(-2px);
}

/* Pricing Section */
.pricing_section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing_card {
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.pricing_card.featured {
  border: 2px solid #00bbf0;
  transform: scale(1.05);
}

.pricing_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 187, 240, 0.15);
}

.pricing_card.featured:hover {
  transform: translateY(-5px) scale(1.05);
}

.popular_badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 187, 240, 0.4);
}

.plan_header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f8fafc;
}

.plan_header h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 1.5rem;
  color: #4a5568;
}

.amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #00bbf0;
}

.period {
  font-size: 1rem;
  color: #4a5568;
}

.plan_features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.plan_features li {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan_features li i {
  color: #00bbf0;
  font-size: 1.1rem;
}

.plan_features li i.fa-times {
  color: #cbd5e0;
}

.plan_action {
  text-align: center;
}

.plan_btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #00bbf0;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #00bbf0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.plan_btn:hover {
  background: #00bbf0;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.plan_btn.primary {
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  color: white;
  border: none;
}

.plan_btn.primary:hover {
  box-shadow: 0 8px 25px rgba(0, 187, 240, 0.4);
}

/* Developer Section */
.developer_section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.developer_content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.developer_content p {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

.company_highlights {
  margin: 40px 0;
}

.highlight_item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.highlight_item i {
  font-size: 2.5rem;
  color: #00bbf0;
  min-width: 50px;
}

.highlight_item h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 5px;
}

.highlight_item p {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  margin: 0;
}

.developer_actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.developer_info_box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.developer_info_box h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 30px;
}

.info_item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f8fafc;
}

.info_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info_item i {
  font-size: 1.5rem;
  color: #00bbf0;
  min-width: 30px;
}

.info_item strong {
  font-family: 'Poppins', sans-serif;
  color: #1a202c;
  display: block;
  margin-bottom: 5px;
}

.info_item p {
  font-family: 'Inter', sans-serif;
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
}

.info_item a {
  color: #00bbf0;
  text-decoration: none;
}

.info_item a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta_section {
  background: linear-gradient(135deg, #00bbf0 0%, #0099cc 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta_content {
  position: relative;
  z-index: 1;
}

.cta_content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta_content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

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

.cta_primary,
.cta_secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta_primary {
  background: white;
  color: #00bbf0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: #0099cc;
  text-decoration: none;
}

.cta_secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta_secondary:hover {
  background: white;
  color: #00bbf0;
  transform: translateY(-3px);
  text-decoration: none;
}

