/* Lightweight reset */
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
img{max-width:100%;display:block;height:auto}
button,input,select,textarea{font:inherit}
:focus-visible{outline:2px solid var(--brand-accent);outline-offset:2px}

/* Theme */
:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #6c757d;
  --surface: #ffffff;
  --border: #e8ecef;
  --light-gray: #f8f9fa;
  --radius: 8px;
  --shadow: 0 5px 15px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
}

@media (prefers-color-scheme: dark){
  :root{--bg:#121212;--text:#ffffff;--muted:#adb5bd;--surface:#1e1e1e;--border:#333;--light-gray:#2d2d2d}
}

body{
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-size:16px;
  padding-top:80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
    font-size: 14px;
  }
}

.h1,.h2,.h3,h1,h2,h3{
  font-family:"Poppins",ui-sans-serif,system-ui,sans-serif;
  margin:0 0 1rem;
  font-weight:700;
  line-height:1.2;
}

.h1,h1{font-size:clamp(2.5rem,5vw,4rem);letter-spacing:-.02em}
.h2,h2{font-size:clamp(2rem,3vw,3rem)}
.h3,h3{font-size:clamp(1.25rem,2vw,1.75rem)}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(2rem,3vw,3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-title1 {
  font-size: clamp(2rem,3vw,3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--brand-primary)
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle1 {
  text-align: center;
  color: var(--brand-dark);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.container{width:min(1200px,92%);margin-inline:auto}

@media (max-width: 768px) {
  .container {
    width: min(1200px, 95%);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1200px, 98%);
  }
}

.section{padding:80px 0}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

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

/* How It Works Section */
.how-it-works {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.how-it-works::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
  color: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.step-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.068);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.637);
  position: relative;
  transition: all 0.3s ease;
  
  /* Glass effect with glow */
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
  /* Offset glow effect - positioned below the card */
  filter: drop-shadow(0 10px 20px rgba(22, 92, 159, 0.2));
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.02) 100%);
  border-radius: 16px;
  pointer-events: none;
}

.step-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  
  /* Enhanced glow on hover - still offset downward */
  filter: drop-shadow(0 15px 35px rgba(22, 92, 159, 0.35));
  
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 6px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--brand-accent);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(22, 92, 159, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
  color: white; 
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.step-item h3 {
  color: white;
  margin: 1rem 0;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.step-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Featured Solutions Section */
.featured-solutions {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.featured-solutions::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="solutions-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(22,92,159,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23solutions-grid)"/></svg>');
  z-index: 0;
}

.featured-solutions .container {
  position: relative;
  z-index: 1;
}

.featured-solutions .section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.featured-solutions .section-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 4rem;
  font-weight: 400;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 5rem 0;
}

.solution-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-accent) 100%);
  border-radius: 20px 20px 0 0;
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(22, 92, 159, 0.1);
  border-color: rgba(22, 92, 159, 0.2);
}

.solution-image {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.solution-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.solution-image i {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.solution-content {
  padding: 2.5rem;
}

.solution-content h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}

.solution-content p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1rem;
}

.solution-content1 {
  padding: 2.5rem;
}

.solution-content1 h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.3;
}

.solution-content1 p {
  color: black;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1rem;
}

.solution-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(22, 92, 159, 0.08) 0%, rgba(22, 92, 159, 0.04) 100%);
  border-radius: 12px;
  display: inline-block;
  border: 1px solid rgba(22, 92, 159, 0.15);
}

.solution-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.solution-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  font-weight: 500;
}

.solution-stats i {
  color: var(--brand-primary);
  font-size: 0.9rem;
}

.solution-stats1 {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--brand-primary);
  flex-wrap: wrap;
}

.solution-stats1 span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  font-weight: 500;
}

.solution-stats1 i {
  color: var(--brand-primary);
  font-size: 0.9rem;
}

.solution-link {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(22, 92, 159, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(22, 92, 159, 0.2);
}

.solution-link:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(22, 92, 159, 0.3);
}

.view-all-solutions {
  text-align: center;
  margin-top: 4rem;
}

.view-all-solutions .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
}

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

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-primary) 50%, transparent 100%);
}

.testimonials::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(22, 92, 159, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

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

.testimonials .section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
}

.testimonials .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.testimonials .section-subtitle {
  font-size: 1.25rem;
  color: var(--brand-dark);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
  padding: 0 1rem;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #fdfdfd 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(22, 92, 159, 0.08);
  box-shadow: 0 10px 40px rgba(22, 92, 159, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(22, 92, 159, 0.15);
  border-color: rgba(22, 92, 159, 0.2);
}

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

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

.quote-icon {
  color: var(--brand-primary);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.1);
  opacity: 1;
}

.testimonial-card blockquote {
  font-style: normal;
  margin: 0 0 2.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--brand-dark);
  font-weight: 400;
  position: relative;
  quotes: """ """ "'" "'";
  text-align: left;
}

.testimonial-card blockquote::before {
  content: open-quote;
  font-size: 4rem;
  color: var(--brand-primary);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card blockquote::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), transparent);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(22, 92, 159, 0.1);
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(22, 92, 159, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(22, 92, 159, 0.3);
}

.author-info h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.01em;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.author-info .company {
  color: var(--brand-primary);
  font-weight: 600;
  margin-top: 0.125rem;
}

/* Testimonials responsive design */
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
  
  .testimonial-card {
    padding: 2.5rem 2rem;
    margin: 0 1rem;
  }
  
  .testimonials .section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  
  .testimonials .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .testimonial-card blockquote {
    font-size: 1.05rem;
  }
  
  .author-avatar {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

.author-info .company {
  font-weight: 500;
  color: var(--brand-primary);
}

/* Special Offer Section */
.special-offer {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #e74c3c 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.special-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-30px, -30px) rotate(360deg); }
}

.offer-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.special-offer h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.special-offer p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.offer-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.benefit-item i {
  color: var(--brand-accent);
  background: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.offer-cta {
  margin-top: 2rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.offer-expires {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Latest News Section */
.latest-news {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.latest-news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.latest-news .container {
  position: relative;
  z-index: 1;
}

.latest-news .section-title {
  color: white;
  text-align: right;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.latest-news .section-subtitle {
  color: rgba(255,255,255,0.9);
  text-align: right;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.news-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: rgba(255,255,255,1);
}

.news-image {
  height: 200px;
  background: var(--light-gray);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-placeholder {
  font-size: 3rem;
  color: var(--muted);
}

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(45deg, var(--brand-accent), var(--brand-secondary));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.news-content {
  padding: 2rem;
}

.news-content h3 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
  color: var(--brand-dark);
  line-height: 1.4;
}

.news-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.news-link {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--brand-secondary);
}

.view-all-news {
  text-align: right;
  margin-top: 3rem;
}

.latest-news .btn {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.latest-news .btn:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced hover effects */
.solution-card,
.testimonial-card,
.news-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover,
.news-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .steps-grid,
  .solutions-grid,
  .testimonials-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-item {
    justify-content: flex-start;
  }
  
  .news-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .solution-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Button Styles for New Sections */
.btn-outline-primary {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.btn-light {
  background: white;
  color: var(--text);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-light:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-dark);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22, 92, 159, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled {
  background: var(--header-darker);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  border-bottom-color: var(--header-primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--header-primary) 0%, #1a6bb3 100%);
  box-shadow: 0 2px 8px rgba(22, 92, 159, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(22, 92, 159, 0.4);
  background: linear-gradient(135deg, #1a6bb3 0%, var(--header-primary) 100%);
}

.brand img {
  position: relative;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px;
}

.brand:hover img {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.brand-name {
  color: white;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.nav-toggle{
  display:none;
  background:transparent;
  border:none;
  color:white;
  font-size:1.25rem;
  cursor:pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav .nav-menu{
  display:flex;
  gap:0.5rem;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center;
}

.nav-link{
  padding:.75rem 1rem;
  border-radius:6px;
  text-decoration:none;
  color:rgba(255, 255, 255, 0.9);
  font-weight:500;
  transition:all .3s ease;
  position:relative;
}

.nav-link:hover,
.nav-link[aria-current="page"]{
  color:white;
  background: rgba(255, 255, 255, 0.1);
}

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

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
  left: 0;
}

@media (max-width:880px){
  .brand {
    padding: 0.4rem 0.8rem;
    gap: 0.5rem;
  }
  .brand span{display:none}
  .nav-toggle{display:inline-grid;place-items:center}
  .nav{
    position:fixed;
    inset:70px 0 auto 0;
    background: var(--header-dark);
    border-bottom:1px solid var(--header-primary);
    transform:translateY(-120%);
    transition:transform .25s ease;
    box-shadow:0 4px 20px rgba(0, 0, 0, 0.3);
  }
  .nav.open{transform:translateY(0)}
  .nav .nav-menu{flex-direction:column;padding:20px;gap:1rem}
  .nav-link {
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 6px;
  }
  .nav-link:hover,
  .nav-link[aria-current="page"] {
    color: white;
    background: var(--header-primary);
  }
  .header-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width:640px){
  .brand {
    padding: 0.3rem 0.6rem;
    gap: 0.4rem;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .brand-name {
    font-size: 1rem;
  }
}

@media (max-width:480px){
  .header-inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .brand {
    padding: 0.25rem 0.5rem;
  }
}

/* Hero Section */
.hero{
  position:relative;
  min-height: 100vh;
  height: auto;
  display:flex;
  align-items:center;
  padding: 2rem 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  overflow:hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../../asset/Home-Pref-1200x700.jpg.webp') center/cover no-repeat;
  opacity: 0.1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(22,92,159,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
}

.hero .container {
  position: relative;
  z-index: 3;
  width: min(1200px, 95%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
  padding: 1rem;
}

.hero-badge {
  margin-bottom: 1rem;
}

.badge-text {
  display: inline-block;
  background: var(--brand-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: clamp(11px, 2.5vw, 13px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
  word-wrap: break-word;
  hyphens: auto;
}

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

.hero-subtitle h2 {
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--brand-primary);
  margin: 0;
  line-height: 1.3;
}

.hero-description {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:12px 24px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  border:2px solid transparent;
  transition:all .3s ease;
  cursor:pointer;
  font-size:16px;
}

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

.btn-primary:hover{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}

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

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

.btn-outline1{
  background:transparent;
  color:white;
  border-color:white;
}

.btn-outline1:hover{
  background:var(--brand-primary);
  color:white;
  transform:translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: var(--light-gray);
  padding: 60px 0;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.cta-content p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* color: var(--muted); */
  font-weight: 500;
}

.feature-item i {
  /* color: var(--brand-primary); */
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Portfolio Section */
.portfolio-section {
  padding: 80px 0;
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.portfolio-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-image {
  height: 200px;
  overflow: hidden;
}

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

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

.portfolio-content {
  padding: 24px;
}

.portfolio-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.portfolio-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.portfolio-link {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.portfolio-link:hover {
  color: var(--brand-dark);
}

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

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
}

.services-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, var(--brand-primary) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--brand-secondary) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 25px 25px;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-categories {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.category-item {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

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

.category-item:hover::before {
  left: 100%;
}

.category-item:hover,
.category-item.active {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 92, 159, 0.3);
}

.services-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-intro .section-title {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  justify-items: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  width: 420px;
  max-width: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(22, 92, 159, 0.2);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 0;
  position: relative;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  border-radius: 16px;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(22, 92, 159, 0.25);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}

.service-card:hover .service-icon::before {
  animation: shine 0.8s ease-in-out;
  opacity: 1;
}

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

.service-badge {
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-badge {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: white;
}

.service-badge.enterprise {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.service-badge.quality {
  background: linear-gradient(135deg, #56ab2f, #a8e6cf);
  color: white;
}

.service-badge.expert {
  background: linear-gradient(135deg, #ff9a56, #fad0c4);
  color: white;
}

.service-content {
  padding: 0.75rem 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-content > p {
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-group h4 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 0.6rem;
}

.feature-group h4 i {
  font-size: 0.8rem;
  opacity: 0.8;
}

.feature-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-group ul li {
  padding: 0.3rem 0;
  color: var(--brand-dark);
  font-size: 0.85rem;
  position: relative;
  padding-left: 1rem;
}

.feature-group ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-size: 0.7rem;
  top: 0.5rem;
}

.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(22, 92, 159, 0.05), rgba(255, 255, 255, 0.8));
  border-radius: 12px;
  border: 1px solid rgba(22, 92, 159, 0.1);
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--brand-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.service-technologies {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.tech-tag {
  padding: 5px 10px;
  background: linear-gradient(135deg, rgba(22, 92, 159, 0.1), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(22, 92, 159, 0.2);
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 92, 159, 0.3);
}

.service-action {
  padding: 0 1.5rem 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 92, 159, 0.25);
  position: relative;
  overflow: hidden;
}

.service-link::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;
}

.service-link:hover::before {
  left: 100%;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 92, 159, 0.4);
}

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

.service-link:hover i {
  transform: translateX(4px);
}

.services-cta {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(22, 92, 159, 0.25);
}

.services-cta::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--brand-primary);
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }
  
  .service-card {
    width: 100%;
    max-width: 380px;
  }
  
  .service-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .services-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .category-item {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .service-card {
    width: 100%;
    max-width: 100%;
  }
}

/* Category filtering animations */
.service-card[data-category] {
  transition: all 0.4s ease;
}

.service-card.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.service-card.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Cards */
.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:3rem;
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  transition:all 0.3s ease;
  text-align:center;
}

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

.card-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  background:var(--brand-primary);
  color:white;
  border-radius:50%;
  margin-bottom:1.5rem;
  font-size:24px;
}

.card h3{
  font-size:1.25rem;
  margin-bottom:1rem;
  color:var(--text);
}

.card p{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:1.5rem;
}

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

.card-tags span{
  padding:4px 12px;
  background:var(--light-gray);
  border:1px solid var(--border);
  border-radius:20px;
  font-size:12px;
  font-weight:500;
  color:var(--muted);
}

/* Clients Section */
.clients{
  padding: 120px 0;
  background: linear-gradient(135deg, #0a1628 0%, #165C9F 50%, #1e73c7 100%);
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  pointer-events: none;
}

.clients .container {
  position: relative;
  z-index: 1;
}

.clients .section-title {
  color: white;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.clients .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  margin: 2rem auto;
  border-radius: 2px;
}

.clients-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.logo-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.logo-grid li {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.logo-grid li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.logo-grid li:hover::before {
  left: 100%;
}

.logo-grid li:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 8px 30px rgba(22, 92, 159, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo-grid img{
  filter: none;
  opacity: 1;
  transition: all 0.4s ease;
  max-height: 50px;
  object-fit: contain;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.logo-grid li:hover img{
  opacity: 1;
  transform: scale(1.05);
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Statistics Section */
.stats-section{
  padding:80px 0;
  background:var(--bg);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:3rem;
}

.stat-item{
  text-align:center;
  padding:30px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:all 0.3s ease;
}

.stat-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
}

.stat-number{
  font-size:3rem;
  font-weight:800;
  color:var(--brand-primary);
  margin-bottom:0.5rem;
  line-height:1;
}

.stat-label{
  font-size:1.1rem;
  font-weight:600;
  color:var(--text);
  margin-bottom:1rem;
}

.stat-item p{
  color:var(--muted);
  line-height:1.6;
  margin:0;
}

/* Contact Section */
.contact{
  padding:80px 0;
  background:var(--light-gray);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
  margin-top:3rem;
}

.contact-card{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  text-decoration:none;
  color:inherit;
  background:var(--surface);
  border:1px solid var(--border);
  padding:24px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:all 0.3s ease;
}

.contact-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
  text-decoration:none;
  color:inherit;
}

.contact-card i{
  color:var(--brand-primary);
  font-size:1.5rem;
  margin-top:4px;
}

.contact-card h3{
  font-size:1.1rem;
  margin-bottom:0.5rem;
  color:var(--text);
}

.contact-card p{
  color:var(--muted);
  margin:0;
  font-size:0.9rem;
}

/* Footer */
.site-footer{
  background:var(--brand-dark);
  color:white;
  padding:60px 0 30px;
}

.footer-content{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:60px;
  margin-bottom:40px;
}

.footer-brand .brand{
  color:white;
  margin-bottom:1rem;
}

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

.footer-contact p{
  margin:0.5rem 0;
}

.footer-contact a{
  color:rgba(255,255,255,0.9);
  text-decoration:none;
}

.footer-contact a:hover{
  color:white;
}

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

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

.footer-social a:hover{
  background:var(--brand-primary);
  transform:translateY(-2px);
}

.footer-links{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.footer-column h4{
  color:white;
  font-size:1.1rem;
  margin-bottom:1rem;
  font-weight:600;
}

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

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

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

.footer-column a:hover{
  color:white;
}

.blog-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.blog-tags span{
  padding:4px 8px;
  background:rgba(255,255,255,0.1);
  border-radius:4px;
  font-size:12px;
  color:rgba(255,255,255,0.8);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.8);
}

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

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

.footer-bottom-links a:hover{
  color:white;
}

/* Scroll to top button */
.to-top{
  position:fixed;
  bottom:2rem;
  right:2rem;
  width:50px;
  height:50px;
  background:var(--brand-primary);
  color:white;
  border:none;
  border-radius:50%;
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-lg);
  transition:all 0.3s ease;
  z-index:1000;
}

.to-top:hover{
  background:var(--brand-dark);
  transform:translateY(-2px);
}

.to-top.visible{
  display:flex;
}

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

.reveal {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-content {
    padding: 0.5rem;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle h2 {
    font-size: clamp(0.9rem, 5vw, 1.5rem);
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 0.9rem;
    padding: 14px 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    padding: 0.5rem 0;
  }
  
  .hero .container {
    width: min(1200px, 100%);
  }
  
  .hero-content {
    padding: 0.25rem;
  }
  
  .hero-title {
    font-size: clamp(1.25rem, 10vw, 2rem);
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle h2 {
    font-size: clamp(0.8rem, 6vw, 1.25rem);
    line-height: 1.4;
  }
  
  .hero-description {
    font-size: clamp(0.8rem, 4vw, 0.9rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .badge-text {
    font-size: clamp(9px, 3vw, 11px);
    padding: 4px 12px;
  }
  
  .btn {
    font-size: 0.85rem;
    padding: 12px 16px;
    max-width: 250px;
  }
}

/* Utility classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1.5rem; }

/* Legacy support for old classes */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.card-row .card {
  text-align: left;
  padding: 24px;
}

.card-row .card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.portfolio.with-grid .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.p-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.p-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.p-card h3 {
  padding: 16px 16px 8px;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.text-link {
  display: block;
  padding: 0 16px 16px;
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: var(--brand-dark);
}

.partners {
  padding: 60px 0;
  background: var(--light-gray);
}

.partners .h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.solutions {
  padding: 80px 0;
  background: var(--bg);
}

.solutions .h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.solutions .subtle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Shiny Stats Cards */
.stats-band {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.stats-title {
  text-align: center;
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.shiny-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.shiny-stat-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.shiny-stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.5);
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: left 0.8s ease;
}

.shiny-stat-card:hover .card-shine {
  left: 100%;
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--brand-accent), #e74c3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}

.shiny-stat-card:hover .stat-icon {
  animation: pulse 1s ease-in-out;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

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

.shiny-stat-card .counter {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: inline-block;
}

.shiny-stat-card .suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.shiny-stat-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.5rem 0 0;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Responsive adjustments for shiny cards */
@media (max-width: 768px) {
  .shiny-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .shiny-stat-card {
    padding: 2rem 1.5rem;
  }
  
  .shiny-stat-card .counter {
    font-size: 2.5rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .shiny-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Old band-stat styles - keeping for backward compatibility */
.band-stat{display:grid;place-items:center;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:14px;padding:16px}
.band-stat .counter{font-size:2rem;font-weight:800}

/* Solutions */
.card-row{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:900px){.card-row{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.card-row{grid-template-columns:1fr}}

/* Portfolio */
.portfolio-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:900px){.portfolio-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.portfolio-grid{grid-template-columns:1fr}}
.p-card{background:var(--surface);border:1px solid var(--border);border-radius:14px;overflow:hidden;box-shadow:var(--shadow)}

/* Enhanced Line Background Effects */
/* Grid Background Pattern for Sections */
.section.with-grid {
  position: relative;
  overflow: hidden;
}

.section.with-grid::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="section-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(22,92,159,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23section-grid)"/></svg>');
  z-index: 0;
}

.section.with-grid > .container {
  position: relative;
  z-index: 1;
}

/* Left Border Accent for Contact Cards */
.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Diagonal Line Pattern for Special Sections */
.diagonal-lines {
  position: relative;
  background: white url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><defs><pattern id="diagonal" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,20 L20,0" stroke="rgba(22,92,159,0.08)" stroke-width="1" fill="none"/></pattern></defs><rect width="100%" height="100%" fill="url(%23diagonal)"/></svg>');
}

/* Enhanced Stats Cards with Line Effects */
.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-accent) 100%);
}

/* Animated Border for CTA Buttons */
.btn-animated {
  position: relative;
  overflow: hidden;
}

.btn-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transition: left 0.6s ease;
}

.btn-animated:hover::before {
  left: 100%;
}
.p-card h3{padding:10px 12px}
.text-link{padding:0 12px 12px;display:inline-block}

/* CTA band */
.cta-band{padding:56px 0;background:linear-gradient(135deg, #165C9F 0%, #1e73c7 100%);color:white}
.cta-inner{position:relative;border:1px solid rgba(255,255,255,.25);border-radius:16px;padding:22px;background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));backdrop-filter:blur(8px)}
.spark{position:absolute;inset:auto 10% -12px auto;width:80px;height:80px;background:radial-gradient(circle,#fff,transparent 65%);filter:blur(8px);opacity:.5;border-radius:50%}
.cta-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:.6rem}

/* Footer */
.site-footer{border-top:1px solid var(--border);padding:28px 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:16px}
@media(max-width:720px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.footer-grid{grid-template-columns:1fr}}
.brand-footer{display:flex;align-items:center;gap:.5rem}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;border-top:1px dashed var(--border);margin-top:14px;padding-top:12px}
@media(max-width:560px){.footer-bottom{flex-direction:column;gap:.4rem}}

/* To top */
.to-top{position:fixed;right:16px;bottom:16px;z-index:40;border:none;border-radius:999px;width:44px;height:44px;display:grid;place-items:center;background:var(--brand-primary);color:white;box-shadow:var(--shadow);opacity:0;pointer-events:none;transition:transform .2s ease,opacity .2s ease}
.to-top.show{opacity:1;pointer-events:auto}
.to-top:hover{transform:translateY(-2px)}

/* Reveal */
.reveal{opacity:0;transform:translateY(8px);transition:opacity .5s ease,transform .5s ease}
.reveal.in{opacity:1;transform:none}

/* Utilities */
.sr-only{position:absolute;clip:rect(1px,1px,1px,1px);padding:0;border:0;height:1px;width:1px;overflow:hidden;white-space:nowrap}
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:8px;top:8px;width:auto;height:auto;padding:.5rem .75rem;background:#fff;color:#000;border-radius:8px;z-index:100}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important}
}

/* Enhanced AI Services Section */
.enhanced-ai-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
  padding: 120px 0;
}

.ai-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.ai-pattern {
  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="ai-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(22,92,159,0.1)"/><path d="M10,0 L10,20 M0,10 L20,10" stroke="rgba(22,92,159,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ai-grid)"/></svg>');
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  color: var(--brand-primary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-icon.brain { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon.robot { top: 20%; right: 15%; animation-delay: 1s; }
.floating-icon.network { bottom: 30%; left: 20%; animation-delay: 2s; }
.floating-icon.chip { bottom: 20%; right: 10%; animation-delay: 3s; }
.floating-icon.cog { top: 50%; right: 30%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

.enhanced-ai-section .container {
  position: relative;
  z-index: 1;
}

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

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22,92,159,0.1);
  color: var(--brand-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(22,92,159,0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

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

.enhanced-lead {
  font-size: 1.2rem;
  color: var(--brand-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.enhanced-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.enhanced-stat {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.enhanced-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}

.enhanced-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.enhanced-counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: inline-block;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(22,92,159,0.1);
  border-radius: 3px;
  margin-top: 1rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 3px;
  transition: width 2s ease;
  animation: fillProgress 3s ease forwards;
}

@keyframes fillProgress {
  from { width: 0%; }
  to { width: var(--progress, 100%); }
}

.ai-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.ai-service-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ai-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.service-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}

.service-icon-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

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

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-content p {
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(22,92,159,0.1);
  color: var(--brand-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(22,92,159,0.2);
}

.service-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* .metric {
  text-align: center;
  padding: 1rem;
  background: rgba(22,92,159,0.05);
  border-radius: 12px;
  border: 1px solid rgba(22,92,159,0.1);
} */

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(22,92,159,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-service-card:hover .service-glow {
  opacity: 1;
}

.ai-technologies {
  margin: 5rem 0;
  text-align: center;
}

.tech-title {
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: 2rem;
}

.tech-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.tech-item {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tech-logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.tech-item p {
  font-size: 0.9rem;
  color: var(--brand-dark);
  margin: 0;
}

.ai-cta {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.ai-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.ai-cta .cta-content {
  position: relative;
  z-index: 1;
}

.ai-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.ai-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::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-glow:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .enhanced-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ai-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tech-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ai-cta {
    padding: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .enhanced-ai-section {
    padding: 80px 0;
  }
  
  .floating-icon {
    font-size: 1.5rem;
  }
}

/* Enhanced Industries Section */
.industries-enhanced {
  position: relative;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
  padding: 120px 0;
  overflow: hidden;
}

.industries-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.industries-pattern {
  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="industries-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(22,92,159,0.08)"/><path d="M0,25 L25,0 M25,25 L0,0" stroke="rgba(22,92,159,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23industries-pattern)"/></svg>');
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(22,92,159,0.1), rgba(1,105,254,0.05));
  border-radius: 50%;
  animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  animation-delay: 5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 25%;
  animation-delay: 7s;
}

@keyframes floatShape {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
    opacity: 0.3;
  }
  25% { 
    transform: translateY(-20px) rotate(90deg) scale(1.1); 
    opacity: 0.5;
  }
  50% { 
    transform: translateY(-10px) rotate(180deg) scale(0.9); 
    opacity: 0.2;
  }
  75% { 
    transform: translateY(-30px) rotate(270deg) scale(1.05); 
    opacity: 0.4;
  }
}

.industries-enhanced .container {
  position: relative;
  z-index: 1;
}

.industries-header {
  text-align: center;
  margin-bottom: 5rem;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  color: var(--brand-primary);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  border: 2px solid rgba(22,92,159,0.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.pulse-indicator {
  width: 10px;
  height: 10px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulseIndicator 2s infinite;
  box-shadow: 0 0 0 0 rgba(22,92,159,0.7);
}

@keyframes pulseIndicator {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22,92,159,0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(22,92,159,0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22,92,159,0);
  }
}

.industries-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.industries-subtitle {
  font-size: 1.3rem;
  color: var(--brand-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.industries-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.stat-bubble {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}

.stat-bubble:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-bubble .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-bubble .stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin: 5rem 0;
}

.industry-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.industry-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.industry-card:hover .industry-overlay {
  opacity: 1;
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(22,92,159,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.industry-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}

.industry-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(22,92,159,0.3);
}

.icon-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  right: -20%;
  bottom: -20%;
  background: radial-gradient(circle, rgba(22,92,159,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.industry-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.industry-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.industry-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-pill {
  background: linear-gradient(135deg, rgba(22,92,159,0.1), rgba(1,105,254,0.05));
  color: var(--brand-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(22,92,159,0.2);
  transition: all 0.3s ease;
}

.feature-pill:hover {
  background: linear-gradient(135deg, rgba(22,92,159,0.2), rgba(1,105,254,0.1));
  transform: translateY(-2px);
}

.industry-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mini-stat {
  text-align: center;
  padding: 1.25rem;
  background: rgba(22,92,159,0.05);
  border-radius: 16px;
  border: 1px solid rgba(22,92,159,0.1);
  transition: all 0.3s ease;
}

.mini-stat:hover {
  background: rgba(22,92,159,0.1);
  transform: translateY(-3px);
}

.mini-stat span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.mini-stat small {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.industries-cta {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  padding: 4rem;
  border-radius: 32px;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.industries-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.industries-cta .cta-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.industries-cta h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.industries-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-visual {
  position: relative;
  z-index: 1;
}

.success-indicator {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.success-indicator i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  display: block;
}

.success-indicator span {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .industry-card {
    padding: 2rem;
  }
  
  .industries-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .industries-cta {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .cta-actions {
    justify-content: center;
  }
  
  .industries-enhanced {
    padding: 80px 0;
  }
  
  .floating-shapes .shape {
    opacity: 0.5;
  }
  
  .industry-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .industry-card {
    padding: 1.5rem;
  }
  
  .industries-title {
    font-size: 2rem;
  }
  
  .industries-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Schedule Consultation Button - Premium Design */
.btn-schedule-consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-accent) 100%);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.btn-schedule-consultation:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 50%, var(--brand-primary) 100%);
}

.btn-schedule-consultation:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.35);
}

.btn-schedule-consultation .btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-schedule-consultation:hover .btn-icon {
  transform: rotate(15deg) scale(1.1);
}

/* Pulsing effect for extra attention */
.btn-schedule-consultation::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-schedule-consultation:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .btn-schedule-consultation {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 10px;
  }
}

/* Distinctive Section Headings */

/* 1. Featured Solutions - Modern Tech Style */
.heading-featured-solutions {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.heading-featured-solutions::before {
  content: '⚡';
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.heading-featured-solutions::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 2px;
}

/* 2. Portfolio - Creative Artist Style */
.heading-portfolio {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: 'Georgia', serif;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.heading-portfolio::before {
  content: '🎨';
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.heading-portfolio::after {
  content: '✨';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: sparkle 3s infinite;
}

/* 3. Excellence Statement - Professional Bold Style */
.heading-excellence {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--brand-dark);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px;
  background: rgba(0, 136, 204, 0.05);
  border-radius: 15px;
  border-left: 6px solid var(--brand-primary);
}

.heading-excellence::before {
  content: '🏆';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  background: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.heading-excellence .highlight {
  color: var(--brand-primary);
  position: relative;
}

.heading-excellence .highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 2px;
}

/* 4. Let's Talk - Elegant Cool Style */
.heading-lets-talk {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  transform: none;
}

.heading-lets-talk::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  border-radius: 1px;
}

.heading-lets-talk::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
  border-radius: 1px;
  animation: elegant-glow 3s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateY(-50%) scale(1.1); }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: translateY(-50%) rotate(0deg); }
  25% { opacity: 0.7; transform: translateY(-50%) rotate(90deg); }
  50% { opacity: 1; transform: translateY(-50%) rotate(180deg); }
  75% { opacity: 0.7; transform: translateY(-50%) rotate(270deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(20deg); }
  75% { transform: rotate(-20deg); }
}

@keyframes elegant-glow {
  0%, 100% { 
    opacity: 0.7; 
    width: 100px; 
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
  }
  50% { 
    opacity: 1; 
    width: 150px; 
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
  }
}

/* Mobile Responsiveness for Headings */
@media (max-width: 768px) {
  .heading-featured-solutions::before,
  .heading-portfolio::before,
  .heading-portfolio::after,
  .heading-lets-talk::before,
  .heading-lets-talk::after {
    display: none;
  }
  
  .heading-featured-solutions,
  .heading-portfolio,
  .heading-lets-talk {
    transform: none;
    letter-spacing: 1px;
  }
  
  .heading-excellence {
    padding: 20px 15px;
    margin: 1rem;
  }
}

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

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 136, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(1, 105, 254, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(0, 170, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .section-subtitle {
  color: #64748b;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-weight: 400;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0, 136, 204, 0.2),
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 136, 204, 0.3);
}

.contact-card i {
  color: var(--brand-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  display: block;
}

.contact-card:hover i {
  color: var(--brand-accent);
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.contact-card p {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.contact-card:hover h3 {
  color: var(--brand-primary);
}

.contact-card:hover p {
  color: #475569;
}

/* Soothing Sections Redesign */

/* 1. Featured Solutions - Zen Garden Style */
.solutions-soothing {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.solutions-soothing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(147, 197, 253, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(196, 181, 253, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(167, 243, 208, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.solutions-soothing .container {
  position: relative;
  z-index: 1;
}

.heading-featured-solutions-soothing {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #475569;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Georgia', serif;
  letter-spacing: -0.02em;
  position: relative;
}

.heading-featured-solutions-soothing::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #94a3b8, transparent);
  animation: gentle-pulse 4s ease-in-out infinite;
}

.solutions-subtitle-soothing {
  text-align: center;
  color: #64748b;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.card-row-soothing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.card-soothing {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 1px 8px rgba(0, 0, 0, 0.03);
}

.card-soothing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(147, 197, 253, 0.5), 
    rgba(196, 181, 253, 0.5), 
    rgba(167, 243, 208, 0.5)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease;
}

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

.card-soothing:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.04);
  border-color: rgba(147, 197, 253, 0.3);
}

.card-soothing h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #334155;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.card-soothing p {
  color: #64748b;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

/* 2. Portfolio - Minimalist Gallery Style */
.portfolio-soothing {
  background: #fefefe;
  padding: 120px 0;
  position: relative;
}

.portfolio-soothing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(120deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
  pointer-events: none;
}

.heading-portfolio-soothing {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 200;
  color: #475569;
  text-align: center;
  margin-bottom: 4rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  position: relative;
}

.heading-portfolio-soothing::before {
  content: '◦';
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #cbd5e1;
  opacity: 0.7;
}

.portfolio-grid-soothing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.p-card-soothing {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 1px 4px rgba(0, 0, 0, 0.02);
}

.p-card-soothing:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.04);
  border-color: rgba(147, 197, 253, 0.3);
}

.p-card-soothing img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: grayscale(0.3) brightness(1.1);
}

.p-card-soothing:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}

.p-card-soothing h3 {
  padding: 1.5rem 2rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #334155;
  margin: 0;
  letter-spacing: 0.01em;
}

.p-card-soothing .text-link {
  display: block;
  padding: 0 2rem 2rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.p-card-soothing:hover .text-link {
  color: var(--brand-primary);
}

/* 3. Excellence Stats - Peaceful Achievement Style */
.stats-section-soothing {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.stats-section-soothing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(226, 232, 240, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.heading-excellence-soothing {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: #475569;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.highlight-soothing {
  color: var(--brand-primary);
  font-weight: 400;
  position: relative;
}

.highlight-soothing::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0.6;
}

.stats-grid-soothing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.stat-item-soothing {
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 3rem 2rem;
  transition: all 0.6s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.stat-item-soothing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.stat-item-soothing:hover::before {
  opacity: 1;
}

.stat-item-soothing:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.04);
  border-color: rgba(147, 197, 253, 0.2);
}

.stat-number-soothing {
  font-size: 3rem;
  font-weight: 200;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.stat-label-soothing {
  font-size: 1.1rem;
  font-weight: 400;
  color: #334155;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.stat-item-soothing p {
  color: #64748b;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
  font-size: 0.95rem;
}

/* Gentle animations */
@keyframes gentle-pulse {
  0%, 100% { 
    opacity: 0.6; 
    width: 60px; 
  }
  50% { 
    opacity: 1; 
    width: 80px; 
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .card-row-soothing,
  .portfolio-grid-soothing,
  .stats-grid-soothing {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .card-soothing,
  .stat-item-soothing {
    padding: 2rem 1.5rem;
  }
  
  .solutions-soothing,
  .portfolio-soothing,
  .stats-section-soothing {
    padding: 80px 0;
  }
}

/* Careers Banner Section */
.careers-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.careers-banner::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"><circle cx="25" cy="25" r="1" fill="rgba(22,92,159,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(0,123,191,0.1)"/></svg>') repeat;
  opacity: 0.6;
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.careers-left {
  padding: 2rem 0;
}

.careers-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(22, 92, 159, 0.3);
}

.careers-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.careers-description {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.careers-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.career-stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.career-stat .stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.careers-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.careers-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.careers-buttons .btn i {
  font-size: 1.1rem;
}

/* LinkedIn Jobs Widget */
.linkedin-jobs-widget {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 450px;
  margin: 0 auto;
}

.widget-header {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.view-all-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: white;
}

.job-listings {
  max-height: 400px;
  overflow-y: auto;
}

.job-loading {
  padding: 3rem;
  text-align: center;
  color: var(--muted);
}

.job-loading i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.job-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease;
}

.job-item:hover {
  background-color: #f8f9fa;
}

.job-item:last-child {
  border-bottom: none;
}

.job-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
  text-decoration: none;
  display: block;
}

.job-title:hover {
  color: var(--brand-secondary);
}

.job-meta {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

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

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--brand-primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.job-apply-btn:hover {
  background: var(--brand-secondary);
  transform: translateY(-1px);
}

.widget-footer {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  text-align: center;
}

.rss-link {
  color: var(--brand-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.rss-link:hover {
  color: var(--brand-secondary);
}

/* Floating Careers Widget */
.floating-careers-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
}

.widget-trigger {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(22, 92, 159, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.widget-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(22, 92, 159, 0.6);
}

.widget-trigger i {
  color: white;
  font-size: 1.5rem;
}

.widget-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.widget-content {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-careers-widget.active .widget-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.widget-content .widget-header {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-content .widget-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.widget-content p {
  padding: 1rem 1.5rem 0;
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.widget-actions {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

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

.btn-small.btn-primary:hover {
  background: var(--brand-secondary);
  transform: translateY(-1px);
}

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

.btn-small.btn-outline:hover {
  background: var(--brand-primary);
  color: white;
}

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

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Responsive Design for Careers Section */
@media (max-width: 768px) {
  .careers-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .careers-stats {
    justify-content: center;
  }
  
  .careers-buttons {
    justify-content: center;
  }
  
  .linkedin-jobs-widget {
    max-width: 100%;
  }
  
  .floating-careers-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .widget-trigger {
    width: 50px;
    height: 50px;
  }
  
  .widget-trigger i {
    font-size: 1.25rem;
  }
  
  .widget-content {
    width: 260px;
    bottom: 70px;
  }
}

@media (max-width: 480px) {
  .careers-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .careers-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .careers-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .widget-content {
    width: calc(100vw - 60px);
    right: -10px;
  }
}
