/* Hero Section Styles */
.hero-content {
  padding-right: 1rem;
}

/* Hero Title */
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

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

/* Hero Subtitle */
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #d8b4fe;
  margin-bottom: 1.5rem;
}

/* Hero Description */
.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #c4b5fd;
  margin-bottom: 2rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

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

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

/* Canvas Animation Container */
.hero-canvas-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 1rem;
}

#canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: 1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-canvas-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }

  .hero-canvas-container {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

/* Statistics Section Styles */
.stats-section {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  align-items: stretch;
  padding: 2rem 0;
}

.stats-card {
  position: relative;
  z-index: 555;
  max-width: 250px;
  min-height: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  box-shadow: 0 0.063em 0.75em 1.563em rgba(0, 0, 0, 0.78);
  border-radius: 2.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex: 1;
  min-width: 220px;
}

.stats-card::before {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 2.25rem;
    z-index: -1;
    border: 0.155rem solid transparent;
  
    /* WebKit (Safari, Chrome) */
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
  
    /* Standard for Firefox and modern browsers */
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    mask-mode: match-source; /* optional: improves compatibility */
  }

.stats-card-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 0.5rem 1rem;
}

.stats-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stats-icon .lucide {
  width: 30px;
  height: 30px;
  color: white;
}

.stats-card-body {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.stats-card-body h3 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-card-body p {
  color: #d8b4fe;
  font-size: 1.1rem;
  letter-spacing: 0.031rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.stats-progress {
  width: 100%;
  margin-top: 1rem;
}

.stats-progress span:first-of-type {
  color: #fff;
  text-align: left;
  font-weight: 600;
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.stats-progress span:last-of-type {
  margin-top: 0.5rem;
  text-align: right;
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.stats-progress-bar {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  height: 0.75rem;
  display: block;
  border-radius: 3.125rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-progress-bar::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  border-radius: 3.125rem;
  transition: width 0.8s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Card Color Variants */
.stats-card.green {
  background: radial-gradient(ellipse at right top, rgba(1, 198, 168, 0.3) 0%, rgba(21, 20, 25, 0.8) 47%, rgba(21, 20, 25, 0.9) 100%);
}

.stats-card.green::before {
  background: linear-gradient(45deg, #232228, #232228, #232228, #232228, #01c3a8) border-box;
}

.stats-card.green .stats-progress-bar::after {
  width: 98%;
  background: linear-gradient(90deg, #01c3a8, #00d4b4);
}

.stats-card.blue {
  background: radial-gradient(ellipse at right top, rgba(24, 144, 255, 0.3) 0%, rgba(21, 20, 25, 0.8) 45%, rgba(21, 20, 25, 0.9) 100%);
}

.stats-card.blue::before {
  background: linear-gradient(45deg, #232228, #232228, #232228, #232228, #1890ff) border-box;
}

.stats-card.blue .stats-progress-bar::after {
  width: 98%;
  background: linear-gradient(90deg, #1890ff, #40a9ff);
}

.stats-card.orange {
  background: radial-gradient(ellipse at right top, rgba(255, 183, 65, 0.3) 0%, rgba(21, 20, 25, 0.8) 47%, rgba(21, 20, 25, 0.9) 100%);
}

.stats-card.orange::before {
  background: linear-gradient(45deg, #232228, #232228, #232228, #232228, #ffb741) border-box;
}

.stats-card.orange .stats-progress-bar::after {
  width: 100%;
  background: linear-gradient(90deg, #ffb741, #ffc107);
}

.stats-card.red {
  background: radial-gradient(ellipse at right top, rgba(166, 61, 42, 0.3) 0%, rgba(21, 20, 25, 0.8) 47%, rgba(21, 20, 25, 0.9) 100%);
}

.stats-card.red::before {
  background: linear-gradient(45deg, #232228, #232228, #232228, #232228, #a63d2a) border-box;
}

.stats-card.red .stats-progress-bar::after {
  width: 100%;
  background: linear-gradient(90deg, #a63d2a, #d63384);
}

/* Hover Effects */
.stats-card {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0.5em 2em 2em rgba(0, 0, 0, 0.9);
}

.stats-card:hover .stats-progress-bar::after {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive for Stats */
@media (max-width: 1200px) {
  .stats-section {
    gap: 1.25rem;
  }
  
  .stats-card {
    max-width: 240px;
    min-height: 300px;
  }
}

@media (max-width: 991px) {
  .stats-section {
    gap: 1rem;
  }
  
  .stats-card {
    max-width: 220px;
    min-height: 280px;
  }
  
  .stats-card-body h3 {
    font-size: 2rem;
  }
  
  .stats-card-body p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .stats-section {
    gap: 1rem;
    justify-content: center;
  }
  
  .stats-card {
    max-width: calc(50% - 0.5rem);
    min-height: 260px;
    flex: 0 0 calc(50% - 0.5rem);
    min-width: auto;
  }
  
  .stats-card-body h3 {
    font-size: 1.8rem;
  }
  
  .stats-card-body p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .stats-icon {
    width: 50px;
    height: 50px;
  }
  
  .stats-icon .lucide {
    width: 25px;
    height: 25px;
  }
  
  .stats-progress-bar {
    height: 0.6rem;
  }
}

@media (max-width: 576px) {
  .stats-section {
    gap: 0.75rem;
  }
  
  .stats-card {
    max-width: calc(50% - 0.375rem);
    min-height: 240px;
    flex: 0 0 calc(50% - 0.375rem);
  }
  
  .stats-card-body h3 {
    font-size: 1.6rem;
  }
  
  .stats-card-body p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  
  .stats-card-header {
    padding: 1rem 0.5rem 0.25rem 0.5rem;
  }
  
  .stats-card-body {
    padding: 0.75rem 1rem 1rem 1rem;
  }
  
  .stats-icon {
    width: 45px;
    height: 45px;
  }
  
  .stats-icon .lucide {
    width: 22px;
    height: 22px;
  }
  
  .stats-progress span:first-of-type,
  .stats-progress span:last-of-type {
    font-size: 0.8rem;
  }
  
  .stats-progress-bar {
    height: 0.5rem;
  }
}

/* Services Section Styles */
.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #d8b4fe;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 1.5rem;
  z-index: -1;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon .lucide {
  width: 28px;
  height: 28px;
  color: white;
}

.service-price {
  background: var(--gradient);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.service-card-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  color: #d8b4fe;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

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

.service-meta {
  color: #c4b5fd;
  font-size: 0.85rem;
}

.service-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-action .lucide {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-action {
  color: #a78bfa;
}

.service-card:hover .service-action .lucide {
  transform: translateX(4px);
}

/* Services View All Button */
.services-view-all {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.view-all-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

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

.view-all-btn:hover .lucide {
  transform: translateX(3px);
}

/* Portfolio View All Button */
.portfolio-view-all {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Careers View All Button */
.careers-view-all {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Blogs View All Button */
.blogs-view-all {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
  }
  
  .service-card {
    padding: 1.5rem;
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.25rem;
    min-height: 240px;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon .lucide {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1rem;
    min-height: 220px;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
  
  .service-price {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Portfolio Section Styles */
.portfolio-grid {
  display: grid;
  grid-gap: 1.5rem;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  font-family: inherit;
  
  @media (min-width: 576px) {
    grid-template-columns: repeat(2, 1fr);
  }
  
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
  
  @media (min-width: 1200px) {
    grid-template-columns: repeat(4, 1fr);
  }
}

.portfolio-card {  
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1), 
    0 2px 2px rgba(0,0,0,0.1), 
    0 4px 4px rgba(0,0,0,0.1), 
    0 8px 8px rgba(0,0,0,0.1),
    0 16px 16px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  
  @media (min-width: 768px) {
    height: 350px;
  }
  
  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center;
    transition: transform 1.05s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    border-radius: 1.5rem;
  }
  
  &:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(
      to bottom,
      hsla(0, 0%, 0%, 0) 0%,
      hsla(0, 0%, 0%, 0.009) 11.7%,
      hsla(0, 0%, 0%, 0.034) 22.1%,
      hsla(0, 0%, 0%, 0.072) 31.2%,
      hsla(0, 0%, 0%, 0.123) 39.4%,
      hsla(0, 0%, 0%, 0.182) 46.6%,
      hsla(0, 0%, 0%, 0.249) 53.1%,
      hsla(0, 0%, 0%, 0.320) 58.9%,
      hsla(0, 0%, 0%, 0.394) 64.3%,
      hsla(0, 0%, 0%, 0.468) 69.3%,
      hsla(0, 0%, 0%, 0.540) 74.1%,
      hsla(0, 0%, 0%, 0.607) 78.8%,
      hsla(0, 0%, 0%, 0.668) 83.6%,
      hsla(0, 0%, 0%, 0.721) 88.7%,
      hsla(0, 0%, 0%, 0.762) 94.1%,
      hsla(0, 0%, 0%, 0.790) 100%
    );
    transform: translateY(-50%);
    transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 1.5rem;
  }
}

.portfolio-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
}

.portfolio-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.portfolio-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
  
  > * + * {
    margin-top: 1rem;
  }
}

.portfolio-title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  color: white;
  margin: 0;
}

.portfolio-type {
  font-size: 0.9rem;
  color: #d8b4fe;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-description {
  font-size: 1rem;
  line-height: 1.35;
  color: #c4b5fd;
  margin: 0;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background: var(--gradient);
  border: none;
  border-radius: 2rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  
  &:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
  }
  
  &:focus {
    outline: 1px dashed yellow;
    outline-offset: 3px;
  }
}

@media (hover: hover) and (min-width: 768px) {
  .portfolio-card:after {
    transform: translateY(0);
  }
  
  .portfolio-content {
    transform: translateY(calc(100% - 4.5rem));
    
    > *:not(.portfolio-title):not(.portfolio-type) {
      opacity: 0;
      transform: translateY(1rem);
      transition:
        transform 0.7s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    }
  }
  
  .portfolio-card:hover,
  .portfolio-card:focus-within {
    align-items: center;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    &:before { 
      transform: translateY(-4%); 
    }
    &:after { 
      transform: translateY(-50%); 
    }

    .portfolio-content {
      transform: translateY(0);

      > *:not(.portfolio-title):not(.portfolio-type) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.0875s;
      }
    }
  }
  
  .portfolio-card:focus-within {
    &:before,
    &:after,
    .portfolio-content,
    .portfolio-content > *:not(.portfolio-title):not(.portfolio-type) {
      transition-duration: 0s;
    }
  }
}

/* Mobile Responsive for Portfolio */
@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .portfolio-card {
    height: 260px;
  }
  
  .portfolio-content {
    transform: translateY(0);
    justify-content: center;
    padding: 0.75rem;
  }
  
  .portfolio-description,
  .portfolio-btn {
    opacity: 1;
    transform: translateY(0);
  }
  
  .portfolio-title {
    font-size: 1.1rem;
  }
  
  .portfolio-type {
    font-size: 0.75rem;
  }
  
  .portfolio-description {
    font-size: 0.8rem;
  }
  
  .portfolio-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .portfolio-card {
    height: 240px;
    padding: 0.5rem;
  }
  
  .portfolio-content {
    padding: 0.5rem;
  }
  
  .portfolio-title {
    font-size: 1rem;
  }
  
  .portfolio-type {
    font-size: 0.7rem;
  }
  
  .portfolio-description {
    font-size: 0.75rem;
  }
  
  .portfolio-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
  }
}

/* Jobs Section Styles */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.job-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 1.5rem;
  z-index: -1;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.job-card.inactive {
  cursor: not-allowed;
  opacity: 0.7;
  filter: grayscale(30%);
}

.job-card.inactive:hover {
  transform: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.job-status {
  display: flex;
  align-items: center;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.active {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.inactive {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge .lucide {
  width: 16px;
  height: 16px;
}

.job-salary {
  text-align: right;
}

.salary-amount {
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.job-card-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.job-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.job-description {
  color: #d8b4fe;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c4b5fd;
  font-size: 0.9rem;
}

.job-location .lucide {
  width: 16px;
  height: 16px;
}

.job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.job-meta {
  color: #a0a0a0;
  font-size: 0.85rem;
}

.job-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.apply-now {
  color: #22c55e;
  font-size: 0.9rem;
}

.position-closed {
  color: #ef4444;
  font-size: 0.9rem;
}

.job-action .lucide {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.job-card:not(.inactive):hover .job-action .lucide {
  transform: translateX(3px);
}

.job-card.inactive .job-action .lucide {
  color: #ef4444;
}

/* Responsive Jobs */
@media (max-width: 1200px) {
  .jobs-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 991px) {
  .jobs-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .job-card {
    padding: 1.5rem;
  }
  
  .job-card-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .job-salary {
    text-align: left;
  }
  
  .job-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .job-card {
    padding: 1rem;
  }
  
  .job-title {
    font-size: 1.1rem;
  }
  
  .job-description {
    font-size: 0.9rem;
  }
  
  .status-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .salary-amount {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Blogs Section Styles */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #ec4899, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

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

.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.blog-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.blog-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::after {
  opacity: 1;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1) rotate(1deg);
}

.blog-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  position: relative;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #d8b4fe;
  margin-bottom: 0.5rem;
}

.blog-date {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-date::before {
  content: '📅';
  font-size: 0.8rem;
}

.blog-category {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.3));
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
}

.blog-card:hover .blog-category {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(236, 72, 153, 0.4));
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-1px);
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
  position: relative;
}

.blog-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transition: width 0.3s ease;
}

.blog-card:hover .blog-title::after {
  width: 100%;
}

.blog-card:hover .blog-title {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-description {
  color: #c4b5fd;
  line-height: 1.6;
  overflow: hidden;
  position: relative;
}

.blog-description p {
  margin: 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.blog-description p::before {
  content: '"';
  font-size: 1.5rem;
  color: #7c3aed;
  position: absolute;
  left: -0.5rem;
  top: -0.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-description p::before {
  opacity: 1;
}

.blog-card:hover .blog-description p {
  color: #d8b4fe;
  transform: translateX(0.5rem);
}

/* Blog Responsive Design */
@media (max-width: 1200px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .blog-card {
    min-height: 320px;
  }
  
  .blog-image {
    height: 160px;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .blog-title {
    font-size: 1.1rem;
  }
  
  .blog-description p {
    font-size: 0.85rem;
  }
  
  .blog-category {
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .blog-card {
    min-height: 300px;
  }
  
  .blog-image {
    height: 140px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .blog-title {
    font-size: 1rem;
  }
  
  .blog-meta {
    font-size: 0.75rem;
  }
  
  .blog-category {
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
  }
  
  .blog-description p {
    font-size: 0.8rem;
  }
  
  .blog-date::before {
    font-size: 0.7rem;
  }
}

/* Responsive Blogs */
@media (max-width: 1200px) {
  .blogs-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 991px) {
  .blogs-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .blog-container {
    height: 350px;
  }
  
  .blog-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .blogs-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .blog-container {
    height: 300px;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .blog-title {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .blog-meta {
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  
  .blog-text p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .blogs-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .blog-container {
    height: 280px;
  }
  
  .blog-title {
    font-size: 1rem;
  }
  
  .blog-meta {
    font-size: 0.75rem;
  }
  
  .blog-text p {
    font-size: 0.8rem;
  }
  
  .blog-expand-icon .lucide {
    width: 20px;
    height: 20px;
  }
}

/* Trusted By Section Styles */
.trusted-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 100px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.company-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.logo-item:hover .company-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Trusted Logos */
@media (max-width: 1200px) {
  .trusted-logos-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
  
  .logo-item {
    max-width: 180px;
    height: 90px;
  }
}

@media (max-width: 991px) {
  .trusted-logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .logo-item {
    max-width: 160px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .trusted-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .logo-item {
    max-width: 140px;
    height: 70px;
    padding: 0.75rem;
  }
}

@media (max-width: 576px) {
  .trusted-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .logo-item {
    max-width: 120px;
    height: 60px;
    padding: 0.5rem;
  }
}
