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

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

html, body {
  height: auto;
  font-family: 'Inter', sans-serif;
}

/* Mobile Menu - COMPLETE VERSION */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  height: 99svh;
  border-bottom-left-radius: 20px;
  background: linear-gradient(135deg, #6f79a4, #48577a);
  z-index: 150;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.mobile-menu.active {
  right: 0;
}

.wrapper.menu-open {
  transform: translateX(-80vw);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.mobile-menu-header {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 160;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.mobile-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.mobile-close-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin-top: 5rem;
}

.mobile-nav-item {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}

.nav-number {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.6;
  min-width: 25px;
}

.nav-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mobile-nav-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(0);
}

.mobile-nav-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-footer {
  padding: 2rem 0;
  text-align: center;
  margin-top: auto;
}

.mobile-contact {
  margin-bottom: 1.5rem;
}

.mobile-contact p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin: 0.3rem 0;
  font-weight: 400;
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  display: block;
}

.social-dot:hover {
  background: white;
  transform: scale(1.2);
}

.mobile-copyright p {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin: 0;
  font-weight: 300;
}

/* Staggered animations */
.mobile-menu.active .mobile-nav-item:nth-child(1) { 
  animation: slideInLeft 0.6s ease 0.1s forwards; 
}
.mobile-menu.active .mobile-nav-item:nth-child(2) { 
  animation: slideInLeft 0.6s ease 0.2s forwards; 
}
.mobile-menu.active .mobile-nav-item:nth-child(3) { 
  animation: slideInLeft 0.6s ease 0.3s forwards; 
}
.mobile-menu.active .mobile-nav-item:nth-child(4) { 
  animation: slideInLeft 0.6s ease 0.4s forwards; 
}
.mobile-menu.active .mobile-nav-item:nth-child(5) { 
  animation: slideInLeft 0.6s ease 0.5s forwards; 
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  z-index: 200; /* Higher than mobile menu's 150 */
  position: relative;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: #6f79a4;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

/* Burger Animation to X */
.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(10.5px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-10.5px);
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
    z-index: 999999;
  }
  
  .nav, .contact-btn {
    display: none;
  }
}


.wrapper {
  width: 100%;
}

.main {
  position: relative;
  width: 98vw;
  height: 98svh;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}

.background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideDown 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(-100px);
}

.logo {
  height: 60px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.nav {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-item {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6f79a4;
  transition: width 0.3s ease;
}

.nav-item:hover {
  color: #000;
}

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

.contact-btn {
  background: #6f79a4;
  border: 2px solid #6f79a4;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.contact-btn:hover {
  background: transparent;
  color: #6f79a4;
  transform: translateY(-2px);
}

/* Hero Content */
.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 50;
}

.subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.2s ease-out forwards;
  animation-delay: 0.6s;
}

.title {
  font-size: clamp(1.5rem, 8vw, 4rem);
  font-weight: 800;
  color: #6f79a4;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 0.2s ease-out forwards;
  animation-delay: 0.8s;
  text-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.subtitle-main{
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.2s ease-out forwards;
  animation-delay: 0.6s;

}
.buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center; /* 👈 important: center contents vertically instead of stretching */
  opacity: 0;
  animation: fadeInUp 0.2s ease-out forwards;
  animation-delay: 1s;
}


.btn-primary {
  background: #6f79a4;
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #48577a;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: #00000078;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex; /* <- change from inline-block to inline-flex */
  align-items: center;   /* <- vertical center alignment */
  gap: 0.5rem;           /* <- space between image and text */
}
.btn-secondary img {
  width: 40px;
  height: 40px;          /* <- ensure fixed height */
  background-color: #6f79a4;
  border-radius: 50%;
  padding: 10px;
  object-fit: cover;     /* <- optional, helps maintain aspect ratio */
}

.btn-secondary:hover {
  /* border-color: #6f79a4;
  color: #6f79a4;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
  color:#6f79a4;
}

/* Birds */
.bird {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  filter: brightness(85%) saturate(110%);
}

/* Tech Stack Section */
.tech-stack-section {
  padding: 120px 3rem 50px;
  background: white;
  text-align: center;
}

.tech-stack-title {
  font-size: clamp(1rem, 5vw, 1.5rem);
  font-weight: 500;
  color: #888888;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.tech-stack-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FIXED Tech Stack */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(111, 121, 164, 0.15);
  transition: all 0.3s ease;
  min-height: 44px;
}

.tech-item:hover {
  background: rgba(111, 121, 164, 0.1);
  transform: translateY(-2px);
  border-color: rgba(111, 121, 164, 0.3);
}

.tech-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.tech-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
}

.tech-item:hover .tech-name {
  color: #6f79a4;
}

/* Remove any conflicting styles from the main tech grid */
.tech-grid .tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-grid .tech-item:hover {
  transform: translateY(-10px);
}

.tech-grid .tech-icon {
  width: 100px;
  height: 100px;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.tech-grid .tech-item:hover .tech-icon {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%);
}

.tech-grid .tech-name {
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-grid .tech-item:hover .tech-name {
  opacity: 1;
}
/* Animations */
@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Scroll spacer */
.scroll-space {
  height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 1.5rem;
  }

  .contact-btn{
    display: none;
  }

  .hero{
    width: 90%;
  }
  
  .nav {
    display: none;
  }
  
  .title {
    font-size: 3rem;
  }
  
  .buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    font-size: 0.8rem;
  }
  
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .tech-stack-section {
    padding: 80px 2rem;
  }

  .subtitle {
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.2s ease-out forwards;
    animation-delay: 0.6s;
  }
  
  .title {
    font-size: clamp(1rem, 10vw, 4rem);
    font-weight: 800;
    color: #6f79a4;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.2s ease-out forwards;
    animation-delay: 0.8s;
    text-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .subtitle-main{
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.2s ease-out forwards;
    animation-delay: 0.6s;
    font-size: 0.8rem;
  
  }
}

/* Productivity Section */
.productivity-section {
    padding: 120px 3rem;
    background: white;
  }
  
  .productivity-content {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Add these styles to your CSS */
.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-8px); }
  70% { transform: translateY(-4px); }
  90% { transform: translateY(-2px); }
}

.form-notification {
  margin-top: 20px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.form-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.form-notification.success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 1px solid #34d399;
}

.form-notification.error {
  background: linear-gradient(135deg, #fecaca, #fca5a5);
  border: 1px solid #f87171;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

.notification-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

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

.form-notification.success .notification-icon {
  color: #059669;
}

.form-notification.error .notification-icon {
  color: #dc2626;
}

.notification-content p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
}

.form-notification.success p {
  color: #065f46;
}

.form-notification.error p {
  color: #991b1b;
}

.notification-close {
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  opacity: 1;
}

.notification-close svg {
  width: 100%;
  height: 100%;
}

.form-notification.success .notification-close {
  color: #059669;
}

.form-notification.error .notification-close {
  color: #dc2626;
}

  
  .productivity-header {
    margin-bottom: 80px;
  }
  
  .productivity-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 700px;
  }
  
  .productivity-description {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    max-width: 900px;
    font-weight: 400;
  }
  
  .productivity-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .productivity-row {
    display: flex;
    gap: 20px;
    width: 100%;
  }
  
  .video-container {
    position: relative;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-small {
    flex: 0 0 calc(30% - 10px);
  }
  
  .video-large {
    flex: 0 0 calc(70% - 10px);
  }
  
  .video-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
  }
  
  .video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 0 24px 20px 24px;
  }
  
  .video-text {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .productivity-section {
      padding: 80px 2rem;
    }
    
    .video-container {
      min-height: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .productivity-section {
      padding: 60px 1.5rem;
    }

    .main{
        height: 99svh !important;
    }
    
    .productivity-header {
      margin-bottom: 60px;
    }
    
    .productivity-row {
      flex-direction: column;
      gap: 15px;
    }
    
    .video-small,
    .video-large {
      flex: 1;
    }
    
    .video-container {
      min-height: 250px;
    }
    
    .video-overlay {
      height: 70px;
      padding: 0 20px 16px 20px;
    }
    
    .video-text {
      font-size: 13px;
    }
  }

  /* Interactive Scroll Section - STICKY VERSION */
.interactive-scroll-section {
    height: 400vh; /* Make it tall so it has scrolling distance */
    position: relative;
  }
  
  .interactive-content {
    position: sticky; /* STICKY - This makes it pause! */
    top: 0;
    height: 100svh;
    display: flex;
  }
  
  .interactive-left {
    flex: 0 0 40%;
    padding: 60px 60px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .interactive-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.2;
  }
  
  .progress-sections {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .progress-item {
    display: flex;
    gap: 20px;
    opacity: 0.3;
    transition: all 0.5s ease;
  }
  
  .progress-item.active {
    opacity: 1;
  }
  
  .progress-bar-container {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 5px;
  }
  
  .progress-bar {
    width: 5px;
    height: 150px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
  }
  
  .progress-fill {
    width: 100%;
    height: 0%;
    background: #6f79a4;
    transition: height 0.3s ease;
    border-radius: 3px;
  }
  
  .progress-content {
    flex: 1;
  }
  
  .progress-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
  }
  
  .progress-subtitle {
    font-size: 0.85rem;
    color: #6f79a4;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .progress-description {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .progress-link {
    color: #6f79a4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  
  .progress-link:hover {
    color: #48577a;
    transform: translateX(5px);
  }
  
  .interactive-right {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
  }
  
  .interactive-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
  }
  
  .interactive-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .interactive-image.active {
    opacity: 1;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .interactive-left {
      flex: 0 0 45%;
      padding: 60px 40px;
      padding-top: 100px;
    }
    
    .interactive-right {
      flex: 0 0 55%;
    }
  }
  
  @media (max-width: 768px) {
    .interactive-scroll-section {
      height: 200vh; /* Shorter on mobile */
    }
    
    .interactive-content {
      flex-direction: column;
    }
    
    .interactive-left {
      flex: none;
      padding: 40px 20px;
      padding-top: 60px;
    }
    
    .interactive-right {
      flex: none;
      height: 60vh;
    }
    
    .interactive-image-container {
      border-radius: 20px 20px 0 0;
    }
    
    .progress-sections {
      gap: 30px;
    }
    
    .progress-bar {
      height: 100px;
    }
  }
  
  .interactive-left {
    flex: 0 0 40%;
    padding: 60px 60px 80px 60px; /* Reduced top padding */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Back to center */
  }
  
  .interactive-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem); /* Smaller font */
    font-weight: 800;
    color: #000;
    margin-bottom: 40px; /* Reduced margin */
    line-height: 1.2;
  }
  
  .progress-sections {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Reduced gap */
  }
  
  .progress-item {
    display: flex;
    gap: 20px;
    opacity: 0.3;
    transition: all 0.5s ease;
  }
  
  .progress-item.active {
    opacity: 1;
  }
  
  .progress-bar-container {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 5px;
  }
  
  .progress-bar {
    width: 5px;
    height: 150px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
  }
  
  .progress-fill {
    width: 100%;
    height: 0%;
    background: #6f79a4;
    transition: height 0.3s ease;
    border-radius: 3px;
  }
  
  .progress-content {
    flex: 1;
  }
  
  .progress-title {
    font-size: 1.2rem; /* Smaller */
    font-weight: 700;
    color: #000;
    margin-bottom: 6px; /* Reduced */
  }
  
  .progress-subtitle {
    font-size: 0.85rem; /* Smaller */
    color: #6f79a4;
    font-weight: 500;
    margin-bottom: 8px; /* Reduced */
  }
  
  .progress-description {
    font-size: 0.8rem; /* Smaller */
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4; /* Tighter */
    margin-bottom: 15px; /* Reduced */
  }
  
  .progress-link {
    color: #6f79a4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  
  .progress-link:hover {
    color: #48577a;
    transform: translateX(5px);
  }
  
  .interactive-right {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
  }
  
  .interactive-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px 0 0 20px; /* Added border radius to top-left and bottom-left */
    overflow: hidden;
  }
  
  .interactive-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  .interactive-image.active {
    opacity: 1;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .interactive-left {
      flex: 0 0 45%;
      padding: 60px 40px;
      padding-top: 100px; /* Adjusted for smaller screens */
    }
    
    .interactive-right {
      flex: 0 0 55%;
    }
  }
  
  @media (max-width: 768px) {
    .interactive-scroll-section {
      height: auto;
      min-height: 100svh;
    }
    
    .interactive-content {
      flex-direction: column;
    }
    
    .interactive-left {
      flex: none;
      padding: 40px 20px;
      padding-top: 60px; /* Adjusted for mobile */
    }
    
    .interactive-right {
      flex: none;
      height: 60svh;
    }
    
    .interactive-image-container {
      border-radius: 20px 20px 0 0; /* Different radius for mobile */
    }
    
    .progress-sections {
      gap: 30px;
    }
    
    .progress-bar {
      height: 100px;
    }
  }


  /* Problem/Solution Section - MODERN PROFESSIONAL VERSION */
.problem-solution-section {
  position: relative;
  padding: 120px 0;
}

.problem-solution-content {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 3rem;
}

/* Left Sticky Container - Enhanced */
.sticky-container {
  position: sticky;
  top: 15svh;
  flex: 0 0 320px;
  height: fit-content;
  z-index: 10;
}

.status-indicator {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 28px;
  padding: 50px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator.solution-mode {
  background: linear-gradient(135deg, #6f79a4, #64748b);
}

.status-indicator::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(-45deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.status-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.status-icon svg {
  width: 45px;
  height: 45px;
  color: white;
  transition: all 0.6s ease;
}

.problem-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.solution-icon {
  position: absolute;
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

.status-indicator.solution-mode .problem-icon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.status-indicator.solution-mode .solution-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.status-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin: 0 0 25px 0;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.6s ease;
  letter-spacing: -0.5px;
}

.status-decoration {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.decoration-circle {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}

.decoration-circle:nth-child(2) {
  animation-delay: 0.4s;
}

.decoration-circle:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Right Content Cards - MODERN DESIGN */
.content-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 35px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
  transform: translateY(0);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.card-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.card-container:hover {
  transform: translateY(-8px) scale(1.02);
}

.card-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40px, -40px);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 16px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  z-index: 1;
  position: relative;
}

.problem-icon-small {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.solution-icon-small {
  background: linear-gradient(135deg, #64748b, #6f79a4);
}

.card-content {
  flex: 1;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-card .card-badge {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.solution-card .card-badge {
  background: rgba(16, 151, 185, 0.1);
  color: #64748b,;
}

/* Interactive Scroll Section - MOBILE FIXED */
.interactive-scroll-section {
  height: 400vh; /* Keep desktop height */
  position: relative;
}

.interactive-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
  .interactive-scroll-section {
    height: auto; /* Remove sticky height on mobile */
    position: relative;
    padding: 60px 0;
  }
  
  .interactive-content {
    position: relative; /* Remove sticky on mobile */
    height: auto; /* Remove fixed height */
    flex-direction: column;
    gap: 40px;
  }
  
  .interactive-left {
    flex: none;
    padding: 0 20px;
  }
  
  .interactive-right {
    flex: none;
    height: 50vh;
    order: -1; /* Put image above text on mobile */
  }
  
  .progress-item {
    opacity: 1 !important; /* Show all items on mobile */
  }
  
  .progress-fill {
    height: 100% !important; /* Show all progress bars filled */
  }
  
  .interactive-image {
    position: relative !important; /* Remove absolute positioning */
    opacity: 1 !important; /* Show first image only */
  }
  
  .interactive-image:not(:first-child) {
    display: none; /* Hide other images on mobile */
  }
  
  .interactive-image-container {
    border-radius: 20px;
  }
}

.card-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 25px 0;
  font-weight: 400;
}

.card-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1e293b;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 0 0 0 24px;
  transition: all 0.3s ease;
}

.problem-card .card-accent {
  background: linear-gradient(180deg, #ef4444, #dc2626);
}

.solution-card .card-accent {
  background: linear-gradient(180deg,#64748b, #6f79a4);
}

/* Transition Spacer - Enhanced */
.transition-spacer {
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.transition-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background:  #64748b;
  border-radius: 2px;
  opacity: 0.3;
}

.transition-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #64748b, #6f79a4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.transition-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .problem-solution-content {
    gap: 60px;
    padding: 0 2rem;
  }
  
  .sticky-container {
    flex: 0 0 280px;
  }
  
  .status-indicator {
    padding: 40px 25px;
  }
  
  .status-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .problem-solution-section {
    padding: 80px 0;
  }
  
  .problem-solution-content {
    flex-direction: column;
    gap: 40px;
    padding: 0 1.5rem;
  }
  
  .sticky-container {
    position: relative;
    top: auto;
    flex: none;
    width: 100%;
    order: -1;
  }
  
  .status-indicator {
    padding: 40px 30px;
    margin-bottom: 30px;
  }
  
  .content-cards {
    gap: 25px;
  }
  
  .card-container {
    padding: 30px 25px;
  }
  
  .card-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .card-header h3 {
    font-size: 1.3rem;
  }
  
  .card-container p {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* Mobile-Friendly Sticky Solution for Problem/Solution Section */

@media (max-width: 768px) {
  .problem-solution-section {
    padding: 60px 0;
    /* Remove min-height to let content flow naturally */
  }
  
  .problem-solution-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 1.5rem;
    position: relative;
  }
  
  /* MOBILE STICKY SOLUTION - Top Fixed Bar */
  .sticky-container {
    position: sticky;
    top: 0;
    flex: none;
    width: 100%;
    z-index: 100;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px !important;
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .status-indicator {
    padding: 20px 30px;
    margin: 0;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
    min-height: auto;
  }
  
  /* Horizontal layout for mobile */
  .status-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    flex-shrink: 0;
  }
  
  .status-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .status-title {
    font-size: 1.4rem;
    margin: 0;
    flex: 1;
  }
  
  .status-decoration {
    margin: 0;
    gap: 6px;
  }
  
  .decoration-circle {
    width: 6px;
    height: 6px;
  }
  
  /* Cards with better mobile spacing */
  .content-cards {
    gap: 20px;
    padding-top: 0;
  }
  
  .card-container {
    padding: 25px 20px;
    margin: 0;
    position: relative;
    /* Add subtle animation on scroll into view */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .card-container.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .card-header {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-header h3 {
    font-size: 1.2rem;
  }
  
  .card-container p {
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  /* Transition spacer mobile version */
  .transition-spacer {
    height: 60px;
    margin: 30px 0;
  }
  
  .transition-icon {
    width: 40px;
    height: 40px;
  }
  
  .transition-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Alternative: Floating Action Button Style for Mobile */
@media (max-width: 768px) {
  /* You can also try this FAB (Floating Action Button) approach */
  .sticky-container.fab-style {
    position: fixed;
    top: auto;
    bottom: 20px;
    right: 20px;
    left: auto;
    width: auto;
    z-index: 1000;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
  }
  
  .fab-style .status-indicator {
    width: 120px;
    height: 60px;
    border-radius: 30px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .fab-style .status-icon {
    width: 30px;
    height: 30px;
    margin: 0;
  }
  
  .fab-style .status-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .fab-style .status-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
  }
  
  .fab-style .status-decoration {
    display: none;
  }
}

/* Enhanced Mobile Cards Animation */
@media (max-width: 768px) {
  .card-container {
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
  }
  
  .card-container.problem-card {
    border-left-color: #ef4444;
  }
  
  .card-container.solution-card {
    border-left-color: #64748b;
  }
  
  /* Scroll-triggered animations for mobile */
  .card-container:nth-child(1) { animation-delay: 0.1s; }
  .card-container:nth-child(2) { animation-delay: 0.2s; }
  .card-container:nth-child(3) { animation-delay: 0.3s; }
  .card-container:nth-child(4) { animation-delay: 0.4s; }
  .card-container:nth-child(6) { animation-delay: 0.5s; }
  .card-container:nth-child(7) { animation-delay: 0.6s; }
  .card-container:nth-child(8) { animation-delay: 0.7s; }
}

/* Mobile Progress Indicator */
@media (max-width: 768px) {
  .mobile-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 101;
  }
  
  .mobile-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #64748b);
    width: 0%;
    transition: width 0.3s ease;
  }
}

/* Modern Grid Section */
.modern-grid-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.modern-grid-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 25px;
  grid-template-areas: 
    "item1 item2 item4"
    "item3 item3 item4";
}

.grid-item-1 {
  grid-area: item1;
}

.grid-item-2 {
  grid-area: item2;
}

.grid-item-3 {
  grid-area: item3;
}

.grid-item-4 {
  grid-area: item4;
}

/* Grid Items */
.grid-item {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
  position: relative;
}

.grid-item:nth-child(1) {
  animation-delay: 0.3s;
}

.grid-item:nth-child(2) {
  animation-delay: 0.4s;
}

.grid-item:nth-child(3) {
  animation-delay: 0.5s;
}

.grid-item:nth-child(4) {
  animation-delay: 0.6s;
}

.grid-item:hover {
  transform: translateY(-8px);
  border-color: #6f79a4;
}

.grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6f79a4, #64748b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.grid-item:hover::before {
  transform: scaleX(1);
}

/* Item Images */
.item-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.grid-item-4 .item-image {
  height: 250px;
}

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

.grid-item:hover .item-image img {
  transform: scale(1.05);
}

.item-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Item Content */
.item-content {
  padding: 30px;
}

.grid-item-4 .item-content {
  padding: 35px;
}

.item-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.grid-item-4 .item-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.item-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.grid-item-4 .item-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Innovation Stats (for grid-item-4) */
.innovation-stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #f1f5f9;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #6f79a4;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .modern-grid-content {
    padding: 0 2rem;
  }
  
  .grid-container {
    gap: 20px;
  }
  
  .item-content {
    padding: 25px;
  }
  
  .item-image {
    height: 180px;
  }
  
  .grid-item-4 .item-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .modern-grid-section {
    padding: 80px 0;
  }
  
  .modern-grid-content {
    padding: 0 1.5rem;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 20px;
    grid-template-areas: 
      "item1"
      "item2"
      "item3"
      "item4";
  }
  
  .item-image {
    height: 200px;
  }
  
  .grid-item-4 .item-image {
    height: 200px;
  }
  
  .item-content {
    padding: 25px 20px;
  }
  
  .item-title {
    font-size: 1.3rem;
  }
  
  .grid-item-4 .item-title {
    font-size: 1.4rem;
  }
  
  .item-description {
    font-size: 0.95rem;
  }
  
  .innovation-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .innovation-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
}

/* Contact Form Section */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.contact-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Side: Contact Info */
.contact-info {
  position: sticky;
  top: 120px;
}

.info-header {
  margin-bottom: 50px;
}

.info-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.info-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #1e293b;
  line-height: 1.2;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #1e293b, #6f79a4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Features List */
.info-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(111, 121, 164, 0.2);
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.feature-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Contact Stats */
.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(111, 121, 164, 0.1);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  border: 1px solid rgba(111, 121, 164, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(111, 121, 164, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #6f79a4;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 5px;
  display: block;
}

/* Right Side: Contact Form */
.contact-form {
  background: white;
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(111, 121, 164, 0.1);
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
  padding: 15px 20px;
  border: 2px solid #f1f5f9;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafbfc;
}

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

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

.form-textarea::placeholder {
  color: #94a3b8;
  font-style: italic;
}

/* Custom Checkbox */
.form-checkbox-group {
  margin: 10px 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-custom::after {
  content: '';
  width: 8px;
  height: 12px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.checkbox-input:checked + .checkbox-custom {
  background: #6f79a4;
  border-color: #6f79a4;
}

.checkbox-input:checked + .checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.checkbox-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #6f79a4, #64748b);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
}

.submit-btn:hover::before {
  left: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

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

/* Form Note */
.form-note {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  margin: 0;
}

.form-link {
  color: #6f79a4;
  text-decoration: none;
  font-weight: 500;
}

.form-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    gap: 60px;
    padding: 0 2rem;
  }
  
  .contact-form {
    padding: 40px;
  }
  
  .contact-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 1.5rem;
  }
  
  .contact-info {
    position: static;
  }
  
  .info-features {
    gap: 20px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-item:hover {
    transform: translateY(-5px) translateX(0);
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .contact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .stat-box {
    padding: 15px 10px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Footer Section */
.footer {
  background: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6f79a4, transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Top Footer */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
  border-bottom: 1px solid #1e293b;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.footer-stats {
  display: flex;
  gap: 25px;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: rgba(111, 121, 164, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(111, 121, 164, 0.2);
  transition: all 0.3s ease;
}

.footer-stat:hover {
  background: rgba(111, 121, 164, 0.2);
  transform: translateY(-3px);
}

.footer-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #6f79a4;
  line-height: 1;
}

.footer-stat .stat-text {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 4px;
  text-align: center;
}

/* Footer Navigation */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #6f79a4;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #6f79a4;
  transform: translateX(15px);
}

.footer-link:hover::before {
  width: 10px;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(111, 121, 164, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(111, 121, 164, 0.3);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: #6f79a4;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-text span {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.4;
}

.contact-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #6f79a4;
}

/* Bottom Footer */
.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #1e293b;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.legal-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #6f79a4;
}

.separator {
  color: #64748b;
  font-size: 0.8rem;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(111, 121, 164, 0.1);
  border: 1px solid rgba(111, 121, 164, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #6f79a4;
  color: white;
  transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    padding: 0 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 60px 0 40px;
    gap: 40px;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }
  
  .footer-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-stat {
    width: 100%;
    max-width: 200px;
  }
  
  .contact-info {
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 0 1.5rem;
  }
  
  .footer-top {
    padding: 50px 0 30px;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .separator {
    display: none;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Story Section */
.story-section {
  padding: 120px 0;
  background: #ffffff;
}

.story-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 30px;
}

.story-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 25px;
}

.story-highlight {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  border-left: 4px solid #6f79a4;
  margin-top: 40px;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: #6f79a4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.highlight-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: translateY(-10px);
}

.story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: white;
}

.overlay-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.overlay-content p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.values-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.values-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.value-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 121, 164, 0.2);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6f79a4, #64748b);
  border-radius: 20px 20px 0 0;
}

.value-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.value-card .card-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.value-card .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.value-card .card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

/* Team Section */
.team-section {
  padding: 120px 0;
  background: #ffffff;
}

.team-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.team-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.team-description {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
  margin-bottom: 80px;
}

.team-member {
  text-align: center;
}

.member-image {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(111, 121, 164, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 15px;
}

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

.member-overlay .social-link:hover {
  background: white;
  color: #6f79a4;
}

.member-overlay .social-link svg {
  width: 18px;
  height: 18px;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.member-role {
  font-size: 1rem;
  color: #6f79a4;
  font-weight: 600;
  margin-bottom: 15px;
}

.member-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 350px;
  margin: 0 auto;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid #f1f5f9;
}

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

.team-stats .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #6f79a4;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.team-stats .stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* Philosophy Section */
.philosophy-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.philosophy-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.philosophy-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 50px;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.point-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.point-number {
  width: 60px;
  height: 60px;
  background: #6f79a4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.point-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.philosophy-image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.grid-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.grid-image.large {
  grid-row: span 1;
}

.grid-image.small {
  grid-row: span 1;
}

.grid-image:first-child {
  grid-row: 1;
  grid-column: 1;
}

.grid-image:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}

.grid-image:nth-child(3) {
  grid-row: 2;
  grid-column: 2;
}

.grid-image:last-child {
  grid-row: 2;
  grid-column: 1;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .story-content,
  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .story-section,
  .values-section,
  .team-section,
  .philosophy-section {
    padding: 80px 0;
  }
  
  .story-content,
  .values-content,
  .team-content,
  .philosophy-content {
    padding: 0 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .team-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .philosophy-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
    height: auto;
  }
  
  .grid-image {
    grid-row: span 1 !important;
    grid-column: 1 !important;
  }
  
  .point-item {
    gap: 20px;
  }
  
  .point-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

/* Enhanced Team Member Titles */
.member-title {
  margin-bottom: 20px;
}

.title-main {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #6f79a4;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.title-secondary {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 8px;
  padding-left: 2px;
}

.title-secondary::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #6f79a4, transparent);
  margin-right: 10px;
  vertical-align: middle;
}

/* Remove old member-role styles if they exist */
.member-role {
  display: none;
}

/* Services Hero Section */
.services-hero-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.services-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #1e293b, #6f79a4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 50px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover {
  transform: translateY(-5px);
}

.hero-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #6f79a4;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

/* Hero Visual */
.visual-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e293b;
  border: 1px solid rgba(111, 121, 164, 0.1);
  animation: float 6s ease-in-out infinite;
}

.card-icon {
  font-size: 1.5rem;
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 10%;
  right: 20%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.card-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 4.5s;
}

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

/* Services Grid Section */
.services-grid-section {
  padding: 120px 0;
  background: #ffffff;
}

.services-grid-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.grid-header {
  text-align: center;
  margin-bottom: 80px;
}

.grid-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.grid-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

/* Service Cards - FIXED LAYOUT */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 2px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #6f79a4;
}

.service-card.featured {
  border-color: #6f79a4;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6f79a4, #64748b);
}

/* FIXED CARD HEADER */
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  min-height: 80px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

/* FIXED TITLE GROUP */
.service-title-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  word-wrap: break-word;
  hyphens: auto;
}

.service-badge {
  display: inline-block;
  background: rgba(111, 121, 164, 0.1);
  color: #6f79a4;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 25px;
  flex: 1;
}

.service-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.tech-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card:hover .tech-tag {
  background: rgba(111, 121, 164, 0.1);
  color: #6f79a4;
}

/* FIXED FEATURES LIST */
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.feature-item {
  font-size: 0.9rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}


/* Process Section */
.process-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.process-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.process-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.process-description {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, #6f79a4, transparent);
  z-index: 1;
}

.step-item:last-child::before {
  display: none;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

/* Contact Form Enhancements for Services Page */
.contact-section .info-subtitle {
  color: #6f79a4;
}

.contact-section .form-input,
.contact-section .form-textarea {
  border-color: #e2e8f0;
}

.contact-section .form-input:focus,
.contact-section .form-textarea:focus {
  border-color: #6f79a4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-stats {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .step-item::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-hero-section,
  .services-grid-section,
  .process-section {
    padding: 80px 0;
  }
  
  .services-hero-content,
  .services-grid-content,
  .process-content {
    padding: 0 1.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 30px;
    min-height: auto;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .floating-card {
    position: static;
    margin: 10px;
    display: inline-flex;
  }
  
  .visual-container {
    height: auto;
    flex-direction: column;
    gap: 15px;
  }
  
  .service-tech-stack {
    justify-content: center;
  }
  
  .card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon svg {
    width: 30px;
    height: 30px;
  }
}

/* Case Studies Hero Section */
.case-studies-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #1e293b, #6f79a4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover {
  transform: translateY(-5px);
}

.hero-stats .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #6f79a4;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stats .stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* Case Study Sections */
.case-study-section {
  padding: 80px 0;
  background: #ffffff;
}

.case-study-section:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.case-study-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}



.case-study-section.reverse .case-image {
  order: 2;
}

.case-study-section.reverse .case-details {
  order: 1;
}

/* Case Image */
.case-image {

  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: sticky; top: 20px;   height: fit-content;   align-self: start;
}

.case-image:hover {
  transform: translateY(-10px);
}

.case-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-image video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.case-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.case-category {
  background: rgba(111, 121, 164, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Case Details */
.case-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.case-header {
  margin-bottom: 10px;
}

.case-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.3;
}

.case-subtitle {
  font-size: 1.1rem;
  color: #6f79a4;
  font-weight: 600;
  line-height: 1.5;
}

/* Tech Stack */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(111, 121, 164, 0.1);
  transform: translateY(-2px);
}

.tech-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tech-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
}

/* Case Description */
.case-description {
  margin: 20px 0;
}

.case-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 20px;
}

/* Read More */
.read-more-container {
  margin-top: 20px;
}

.read-more-btn {
  background: transparent;
  border: 2px solid #6f79a4;
  color: #6f79a4;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.read-more-btn:hover {
  background: #6f79a4;
  color: white;
  transform: translateY(-2px);
}

.read-more-btn .btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.expanded-content {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.expanded-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 15px;
}

/* Case Facts */
.case-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  transition: all 0.3s ease;
}

.fact-item:hover {
  background: rgba(111, 121, 164, 0.05);
  transform: translateY(-3px);
}

.fact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fact-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.fact-content {
  display: flex;
  flex-direction: column;
}

.fact-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.fact-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

/* Contact Section Customization for Case Studies */
.contact-section .info-subtitle {
  color: #6f79a4;
}

.contact-section .submit-btn .btn-text {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .case-study-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .case-study-section.reverse .case-image,
  .case-study-section.reverse .case-details {
    order: unset;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
  }
  
  .case-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .case-studies-hero {
    padding: 80px 0;
  }
  
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .case-study-section {
    padding: 60px 0;
  }
  
  .case-study-content {
    padding: 0 1.5rem;
    gap: 30px;
  }
  
  .case-image img {
    height: 300px;
    

  }
  
  .case-image video {
    height: 300px;
    

  }

  .case-image{
    position: static; top: initial;   height: fit-content;   align-self: start;

  }
  
  .case-title {
    font-size: 1.8rem;
  }
  
  .tech-stack {
    gap: 15px;
  }
  
  .tech-item {
    padding: 10px 14px;
  }
  
  .tech-icon {
    width: 20px;
    height: 20px;
  }
  
  .tech-name {
    font-size: 0.85rem;
  }
  
  .case-facts {
    gap: 15px;
  }
  
  .fact-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .fact-icon {
    width: 35px;
    height: 35px;
  }
  
  .fact-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .fact-value {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 20px;
  }
  
  .case-title {
    font-size: 1.6rem;
  }
  
  .case-subtitle {
    font-size: 1rem;
  }
  
  .tech-stack {
    justify-content: center;
  }
  
  .read-more-btn {
    width: 100%;
    justify-content: center;
  }
}

.case-description ul {
  padding-left: 1.2rem;
  margin: 20px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-description li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(111, 121, 164, 0.1);
  border-radius: 12px;
  padding: 12px 16px 12px 2.5rem;
  transition: all 0.3s ease;
}

.case-description li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6f79a4;
  font-weight: bold;
  font-size: 1rem;
}

.case-description li:hover {
  background: rgba(111, 121, 164, 0.05);
  transform: translateY(-2px);
}


/* HOMEPAGE Tech Stack Section - DESKTOP UNCHANGED, MOBILE CAROUSEL */
.homepage-tech-section {
  padding: 120px 3rem 50px;
  background: white;
  text-align: center;
}

.homepage-tech-title {
  font-size: clamp(1rem, 5vw, 1.5rem);
  font-weight: 500;
  color: #888888;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.homepage-tech-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* DESKTOP GRID - UNCHANGED */
.homepage-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 0.5fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease 0.2s;
}

.homepage-tech-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.homepage-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.homepage-tech-item:hover {
  transform: translateY(-10px);
}

.homepage-tech-icon {
  width: 100px;
  height: 100px;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.homepage-tech-item:hover .homepage-tech-icon {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%);
}

.homepage-tech-name {
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6f79a4;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.homepage-tech-item:hover .homepage-tech-name {
  opacity: 1;
}

/* MOBILE ONLY - SIMPLE 3 COLUMN GRID */
@media (max-width: 768px) {
  .homepage-tech-section {
    padding: 40px 2rem;
  }
  
  .homepage-tech-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    animation: none !important;
    max-width: none !important;
  }
  
  .homepage-tech-item {
    min-width: auto;
    flex-shrink: 1;
    padding: 10px;
  }
  
  .homepage-tech-icon {
    width: 50px;
    height: 50px;
  }
  
  .homepage-tech-name {
    font-size: 0.7rem;
    margin-top: 8px;
    opacity: 1 !important;
  }
 }


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

/* Contact Hero Section */
.contact-hero-section {
  padding: 100px 3rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6f79a4;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 500px;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.7s;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-method:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 1);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.method-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
}

.method-content p {
  font-size: 1rem;
  color: #6f79a4;
  font-weight: 500;
  margin-bottom: 5px;
}

.method-time {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 120px 3rem;
  background: #ffffff;
}

.why-choose-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.benefit-card {
  padding: 35px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6f79a4, #64748b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 1);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.benefit-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* Contact Info (left side of contact section) */
.contact-info {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s ease-out forwards;
  animation-delay: 0.3s;
}

.info-header {
  margin-bottom: 50px;
}

.info-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6f79a4;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.info-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 25px;
}

.info-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6f79a4, #64748b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-cta {
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(111, 121, 164, 0.1);
  text-align: center;
}

.cta-text {
  margin-bottom: 15px;
  color: #1e293b;
  font-size: 1rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6f79a4;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: #5a6b91;
  transform: translateY(-2px);
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-hero-section,
  .why-choose-section {
    padding: 80px 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 25px;
  }
}

/* Language Selector Styles */
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  position: absolute;
  bottom: 15px; right: 15px;
  z-index: 999999;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

.language-selector .lang-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.language-selector .lang-item:hover {
  background: rgba(111, 121, 164, 0.1);
  color: #6f79a4;
  border-color: rgba(111, 121, 164, 0.2);
}

.language-selector .lang-item.active {
  background: rgba(111, 121, 164, 0.15);
  color: #6f79a4;
  font-weight: 600;
  border-color: rgba(111, 121, 164, 0.3);
}

.flag-icon {
  font-size: 16px;
  line-height: 1;
}

/* Mobile Language Selector */
.mobile-language-selector {
  padding: 20px 30px;
  margin-top: 0px;
}

.mobile-language-title {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.mobile-language-options {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.mobile-lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.mobile-lang-item:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.2);
}

.mobile-lang-item.active {
  background: rgba(111, 121, 164, 0.3);
  color: white;
  font-weight: 600;
  border-color: rgba(111, 121, 164, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .language-selector {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-language-selector {
    display: none;
  }
}