/**
 * Syftnex - Custom Stylesheet
 * This file contains all custom styles for Syftnex website
 */

 /* 
==============================
   General Styles
============================== 
*/
:root {
  --primary-color: #5d0dcd;
  --primary-dark: #4b0dc4;
  --primary-light: #9b59b6;
  --secondary-color: #333333;
  --text-color: #333333;
  --text-light: #777777;
  --bg-light: #f8f8f8;
  --bg-dark: #222222;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --primary-btn-color: linear-gradient(90deg, var(--primary-color), var(--primary-light));;
  --primary-btn-dark: linear-gradient(90deg, var(--primary-dark), var(--primary-color));

}

/* Medium screen font sizes */
@media (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .section-heading {
    font-size: 34px;
  }
  
  .card-title {
    font-size: 18px;
  }
  
  /* Medium screen grid adjustments */
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trends-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
  }
  
  .tech-icons {
    justify-content: space-around;
    gap: 15px;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Adjust paddings and margins for medium screens */
  .section {
    padding: 60px 0;
  }
  
  .card {
    padding: 20px;
  }
  
  .container {
    width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

section {
  padding: 80px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}


.btn-primary {
  background: var(--primary-btn-color);
  color: var(--white);
  border-color: var(--primary-btn-color);
}

.btn-primary:hover {
  background: var(--primary-btn-dark);
  border-color: var(--primary-btn-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-btn-color);
}

.btn-secondary:hover {
  background: var(--primary-btn-color);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-btn-color);
  color: var(--primary-btn-color);
}

.btn-outline:hover {
  background: var(--primary-btn-color);
  color: var(--white);
}

.subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-left: 45px;
}

.subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 2px;
  background-color: var(--primary-color);
}

.section-header h2 span {
  color: var(--primary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Layout */
main {
  flex: 1;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

/* Button group styles */
.button-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.me-3 {
margin-right: 15px;
}

.mb-2 {
margin-bottom: 10px;
}

/* Connected buttons group */
.connected-buttons {
display: inline-flex;
margin: 20px 0;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-left {
background: var(--primary-btn-color);
color: #ffffff;
padding: 14px 20px;
font-weight: 500;
text-decoration: none;
transition: background-color 0.3s ease;
display: inline-block;
border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-right {
background: transparent;
color: var(--primary-btn-color);
padding: 14px 20px;
font-weight: 500;
text-decoration: none;
transition: background-color 0.3s ease;
display: inline-block;
}

.btn-left:hover {
background-color: #ff7a00;
color: #ffffff;
}

.btn-right:hover {
background-color: var(--primary-btn-dark);
color: #ffffff;
}

@media (max-width: 576px) {
.connected-buttons {
  flex-direction: column;
  width: 100%;
}

.btn-left, .btn-right {
  text-align: center;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
}

/* Intro content styles */
.intro-content {
max-width: 1000px;
margin: 0 auto;
}

.intro-text {
margin-bottom: 2rem;
color: var(--text-color);
font-size: 1.1rem;
line-height: 1.8;
}

.intro-text p {
margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
.button-group {
  flex-direction: column;
  align-items: flex-start;
}

.button-group .btn {
  margin-right: 0;
  width: 100%;
  text-align: center;
}
}

/* Section styles */
.section {
  padding: 80px 0;
}

/* Section styles */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  color: #ff94dd;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-heading {
  font-size: 32px;
  margin-bottom: 16px;
}

.section-description {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  color: #666666;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #5d0dcd, #9b59b6);
  color: var(--white) !important;
  padding: 80px 0 96px;
  position: relative;
  height: 100vh;
  height: 100dvh;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-size: 36px;
  color : white;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}



/* Cards and grids */
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background-color: #f0e6ff;
  color: #5d0dcd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.card-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.card-description {
  color: #666666;
}

/* Testimonials */
.testimonial {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 24px;
}

.stars {
  color: #ffb400;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  color: #666666;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background-color: #dddddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-weight: bold;
  color: #666666;
}

.author-name {
  font-weight: 700;
}

.author-title {
  color: #888888;
  font-size: 14px;
}

/* Form elements */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #5d0dcd;
  box-shadow: 0 0 0 2px rgba(93, 13, 205, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #5d0dcd, #9b59b6);
  color: white;
  padding: 64px 0;
  text-align: center;
}

.cta-title {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-description {
  max-width: 768px;
  margin: 0 auto 32px;
}

/* Footer Styles - Updated */
.footer {
  background-color: #1a1a1a;
  color: #bbbbbb;
  padding: 70px 0 30px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  padding-right: 15px;
}

.company-info {
  padding-right: 20px;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.footer-text {
  color: #bbbbbb;
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #2c2c2c;
  color: #bbbbbb;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: #bbbbbb;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-link::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  opacity: 0.7;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 20px;
}

.footer-link:hover::before {
  opacity: 1;
  left: 5px;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form .form-control {
  background-color: #2c2c2c;
  border: none;
  color: #ffffff;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.newsletter-form .form-control:focus {
  box-shadow: 0 0 0 2px rgba(93, 13, 205, 0.3);
}

.newsletter-form .form-control::placeholder {
  color: #999999;
}

.btn-subscribe {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(93, 13, 205, 0.3);
}

.footer-divider {
  border-top: 1px solid #333333;
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #999999;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.copyright {
  font-size: 14px;
  margin: 0;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
  font-size: 14px;
}

.footer-address span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-address i {
  color: var(--primary-light);
  width: 16px;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.footer-legal .footer-link {
  padding-left: 0;
}

.footer-legal .footer-link::before {
  display: none;
}

.footer-legal .footer-link:hover {
  padding-left: 0;
  color: var(--primary-light);
}

/* Responsive footer styles */
@media (min-width: 576px) {
  .footer-address {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 20px;
  }
}

@media (min-width: 768px) {
  .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 40px;
  }
  
  .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
  }
}

@media (min-width: 992px) {
  .footer-grid {
      grid-template-columns: repeat(4, 1fr);
  }
  
  .company-info {
      grid-column: span 1;
  }
}

/* Responsive styles */
@media (min-width: 768px) {
  .hero-content {
      grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
      font-size: 48px;
  }
  
  .grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .section-heading {
      font-size: 40px;
  }
  
  .grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }

.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

/* 2025 Digital Transformation Trends */
.trends-carousel {
  margin: 40px 0;
  overflow-x: hidden;
}

.trends-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.trend-card {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.trend-icon {
  width: 64px;
  height: 64px;
  background-color: #f0e6ff;
  color: #5d0dcd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.trend-title {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.trend-text {
  color: #666666;
  line-height: 1.6;
}
/* 
==============================
 Process Section
============================== 
*/
.process {
  background-color: var(--bg-light);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 100px);
  background-color: var(--primary-color);
  top: 50px;
}

.process-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 50px;
}

.process-item:nth-child(even) {
  direction: rtl;
}

.process-icon {
  width: 100px;
  height: 100px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--box-shadow);
  margin: 0 auto;
}

.process-icon i {
  font-size: 35px;
  color: var(--primary-color);
}

.step-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-content {
  padding: 0 40px;
}

.process-item:nth-child(even) .process-content {
  direction: ltr;
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 30px;
  }
  
  .process-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }
  
  .process-item:nth-child(even) {
    direction: ltr;
  }
  
  .process-icon {
    width: 80px;
    height: 80px;
  }
  
  .process-content {
    padding: 0 0 0 10px;
  }
  
  .process-item:nth-child(even) .process-content {
    padding: 0 0 0 10px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .process-timeline::before {
    left: 50% !important;
    transform: translateX(-50%);
  }
  
  .process-icon {
    width: 90px;
    height: 90px;
  }
  
  .process-content {
    padding: 0 20px;
  }
}

@media (min-width: 992px) {
  .trends-wrapper {
      grid-template-columns: repeat(4, 1fr);
  }
  
  .process-timeline::before {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .process-step {
      padding-left: 0;
  }
  
  .process-step-number {
      left: auto;
  }
  
  .insights-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .case-studies-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Technology Stack */
.tech-categories {
  margin: 40px 0;
  padding: 0 15px;
}

.tech-category {
  margin-bottom: 60px;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  overflow: hidden;
}

.tech-category:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.tech-category-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 12px;
  position: relative;
  color: var(--secondary-color);
}

.tech-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.tech-category:hover .tech-category-title::after {
  width: 100px;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  padding: 10px 0;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.tech-icon:hover {
  transform: translateY(-8px);
  background-color: rgba(248, 248, 248, 0.8);
}

.tech-icon::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.tech-icon:hover::before {
  width: 70%;
}

.tech-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #f0e6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(93, 13, 205, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.tech-icon-circle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.tech-icon:hover .tech-icon-circle {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(93, 13, 205, 0.25);
}

.tech-icon:hover .tech-icon-circle::after {
  opacity: 1;
  transform: scale(1);
}

.tech-icon-circle i {
  font-size: 36px;
  color: var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.tech-icon:hover .tech-icon-circle i {
  color: #ffffff;
  transform: scale(1.1);
}

.tech-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.tech-icon:hover .tech-name {
  color: var(--primary-color);
}

/* Responsive adjustments for tech stack */
@media (max-width: 576px) {
  .tech-icons {
      justify-content: center;
      gap: 20px;
  }
  
  .tech-icon {
      width: 100px;
  }
  
  .tech-icon-circle {
      width: 70px;
      height: 70px;
  }
  
  .tech-icon-circle i {
      font-size: 32px;
  }
  
  .tech-name {
      font-size: 13px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .tech-icons {
      justify-content: center;
  }
}

@media (min-width: 768px) {
  .tech-category {
      padding: 30px;
  }
  
  .tech-category-title {
      font-size: 26px;
  }
}

@media (min-width: 992px) {
  .tech-categories {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin: 60px 0;
  }
  
  .tech-category {
      margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .tech-category {
      padding: 40px;
  }
}
/* Industry Research & Insights Section Styles */
.statistics-container {
  margin: 3rem 0;
}

.statistics-heading {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--secondary-color);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.statistic-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.statistic-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  z-index: 2;
}

.statistic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.statistic-icon {
  margin: 0 auto 1.5rem;
}

.statistic-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statistic-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.statistic-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .statistics-grid {
      grid-template-columns: 1fr;
  }
  
  
  .statistic-value {
      font-size: 2.5rem;
  }
}

/* Why Choose Us Section */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.why-choose-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-item:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.why-choose-item:hover:before {
  transform: scaleX(1);
}

.reason-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0e6ff, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 5px 15px rgba(93, 13, 205, 0.15);
  transition: all 0.3s ease;
}

.reason-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.why-choose-item:hover .reason-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.why-choose-item:hover .reason-icon i {
  color: white;
  transform: rotateY(360deg);
  transition: all 0.7s ease;
}

.reason-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.why-choose-item:hover .reason-title {
  color: var(--primary-color);
}

.reason-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .why-choose-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-choose-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Success Stories/Case Studies styles with icons */
.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 40px 0;
}

.case-study-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.case-study-content {
  padding: 24px;
}

.case-study-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(93, 13, 205, 0.2);
}

.case-study-icon i {
  font-size: 24px;
  color: white;
}

.case-study-tag {
  display: inline-block;
  background-color: #f0e6ff;
  color: #5d0dcd;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.case-study-title {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.case-study-description {
  color: #666666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.case-study-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.case-study-result {
  text-align: center;
  padding: 12px 8px;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.result-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #5d0dcd;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-label {
  display: block;
  font-size: 12px;
  color: #666666;
  margin-top: 4px;
}

.case-study-conclusion {
  position: relative;
  padding-left: 30px;
  font-style: italic;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  border-left: 3px solid var(--primary-light);
  padding: 10px 20px;
  background-color: #fafafa;
  border-radius: 0 8px 8px 0;
}

.quote-icon {
  color: var(--primary-light);
  opacity: 0.6;
  font-size: 18px;
  margin-right: 8px;
}

@media (min-width: 768px) {
  .case-studies-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .case-studies-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Link styles */
.btn-link {
  color: #5d0dcd;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btn-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: var(--primary-btn-dark);
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .trends-wrapper {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline::before {
      left: 49px;
  }
  
  .insights-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .trends-wrapper {
      grid-template-columns: repeat(4, 1fr);
  }
  
  .process-timeline::before {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .process-step {
      padding-left: 0;
  }
  
  .process-step-number {
      left: auto;
  }
  
  .insights-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .case-studies-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Rating platforms */
.rating-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.rating-item:hover {
  transform: translateY(-5px);
}

.rating-name {
  font-weight: 600;
  margin-bottom: 8px;
}

.rating-score {
  margin-left: 4px;
  font-weight: 700;
}

/* 
==============================
 FAQs Section Styles
============================== 
*/
.faq-container {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
background-color: white;
border-radius: 8px;
margin-bottom: 16px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
overflow: hidden;
transition: box-shadow 0.3s ease;
}

.faq-item:hover {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
padding: 20px 30px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
position: relative;
border-bottom: 1px solid transparent;
transition: all 0.3s ease;
}

.faq-question h3 {
margin: 0;
font-size: 18px;
font-weight: 600;
color: var(--secondary-color);
transition: color 0.3s ease;
padding-right: 40px;
}

.faq-icon {
position: absolute;
right: 30px;
top: 50%;
transform: translateY(-50%);
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
transition: all 0.3s ease;
}

.faq-question:hover h3 {
color: var(--primary-color);
}

.faq-answer {
padding: 0;
max-height: 0;
overflow: hidden;
transition: all 0.4s ease-in-out;
opacity: 0;
}

.faq-answer p, .faq-answer ol, .faq-answer ul {
padding: 0 30px 20px;
color: var(--text-light);
line-height: 1.7;
}

.faq-answer ol, .faq-answer ul {
margin-left: 20px;
list-style-position: outside;
}

.faq-answer ol {
list-style-type: decimal;
}

.faq-answer ul {
list-style-type: disc;
}

.faq-answer li {
margin-bottom: 8px;
}

.faq-item.active .faq-question {
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-icon {
transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-answer {
height: auto;
padding: 20px 30px;
opacity: 1;
}

@media (max-width: 768px) {
.faq-question {
  padding: 15px 20px;
}

.faq-icon {
  right: 20px;
}

.faq-question h3 {
  font-size: 16px;
  padding-right: 30px;
}

.faq-answer p, .faq-answer ol, .faq-answer ul {
  padding: 0 20px 15px;
  font-size: 15px;
}
}

/* 
==============================
 Exit Modal Styles
============================== 
*/
.exit-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
align-items: center;
justify-content: center;
}

.exit-modal.active {
display: flex;
}

.exit-modal-content {
width: 95%;
max-width: 500px;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
animation: modalAppear 0.3s ease forwards;
transform: scale(0.8);
}

@keyframes modalAppear {
from {
  opacity: 0;
  transform: scale(0.8);
}
to {
  opacity: 1;
  transform: scale(1);
}
}

.exit-modal-header {
padding: 16px 20px;
display: flex;
align-items: center;
justify-content: space-between;
background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
color: white !important;
}

.exit-modal-title {
font-size: 18px;
font-weight: 600;
margin: 0;
display: flex;
align-items: center;
gap: 10px;
color: white !important;
}

.exit-modal-title i {
font-size: 20px;
}

.exit-modal-close {
background: none;
border: none;
color: white;
font-size: 20px;
cursor: pointer;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
}

.exit-modal-close:hover {
background: rgba(255, 255, 255, 0.2);
}

.exit-modal-body {
padding: 25px 20px;
text-align: center;
}

.exit-modal-heading {
font-weight: 700; 
color: #000; 
margin-bottom: 15px;
}

.exit-modal-text {
margin: 10px 0;
color: var(--text-color);
}

.exit-modal-subtext {
margin: 10px 0;
font-size: 14px;
color: var(--primary-color);
}

.exit-modal-actions {
display: flex;
margin-top: 20px;
gap: 10px;
}

.btn-primary-exit {
flex: 1;
display: inline-block;
padding: 12px 15px;
background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
color: white;
border-radius: 8px;
font-weight: 500;
text-align: center;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.btn-secondary-exit {
flex: 1;
display: inline-block;
padding: 12px 15px;
background: transparent;
color: var(--primary-color);
border: 1px solid var(--primary-color);
border-radius: 8px;
font-weight: 500;
text-align: center;
transition: all 0.3s ease;
cursor: pointer;
}

.btn-primary-exit:hover {
background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(93, 13, 205, 0.3);
}

.btn-secondary-exit:hover {
background-color: rgba(93, 13, 205, 0.05);
transform: translateY(-3px);
}

.modal-open {
overflow: hidden;
}

@media (max-width: 576px) {
.exit-modal-actions {
  flex-direction: column;
}

.exit-modal-header {
  padding: 12px 16px;
}

.exit-modal-body {
  padding: 20px 15px;
}
}

/* 
==============================
 WhatsApp Container Styles
============================== 
*/
.whatsapp-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9998;
font-family: 'Roboto', sans-serif;
}

.whatsapp-icon-wrapper {
position: relative;
cursor: pointer;
transition: all 0.3s ease;
z-index: 9999;
}

.whatsapp-icon {
width: 60px;
height: 60px;
background-color: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
transition: all 0.3s ease;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
70% {
  box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
}
100% {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}
}

.whatsapp-icon i {
font-size: 32px;
color: white;
}

.whatsapp-icon-wrapper:hover .whatsapp-icon {
transform: scale(1.1);
}

.whatsapp-popup {
position: absolute;
bottom: 80px;
right: 0;
width: 320px;
background-color: #ffffff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
transform-origin: bottom right;
transform: scale(0);
opacity: 0;
transition: transform 0.3s ease, opacity 0.3s ease;
pointer-events: none;
}

.whatsapp-container.active .whatsapp-popup {
transform: scale(1);
opacity: 1;
pointer-events: all;
}

.whatsapp-popup-header {
background: var(--primary-btn-dark);
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
color: white;
}

.whatsapp-popup-profile {
display: flex;
align-items: center;
gap: 10px;
}

.whatsapp-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
background-color: white;
display: flex;
align-items: center;
justify-content: center;
}

.whatsapp-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.whatsapp-profile-info {
flex-grow: 1;
}

.whatsapp-profile-info h4 {
margin: 0;
font-size: 16px;
font-weight: 600;
color: white;
}

.whatsapp-profile-info p {
margin: 3px 0 0;
font-size: 12px;
opacity: 0.9;
display: flex;
align-items: center;
gap: 5px;
}

.online-dot {
display: inline-block;
width: 8px;
height: 8px;
background-color: #4ced69;
border-radius: 50%;
}

.whatsapp-close-btn {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
}

.whatsapp-close-btn:hover {
background-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-close-btn i {
font-size: 16px;
color: white;
}

.whatsapp-popup-body {
padding: 15px;
max-height: 250px;
overflow-y: auto;
background-color: #e5ddd5;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 100 100'%3E%3Cpath fill-rule='evenodd' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bbbbbb' fill-opacity='0.1'/%3E%3C/svg%3E");
}

.whatsapp-message {
max-width: 80%;
margin-bottom: 10px;
position: relative;
animation: fadeIn 0.3s forwards;
opacity: 0;
transform: translateY(10px);
}

@keyframes fadeIn {
to {
  opacity: 1;
  transform: translateY(0);
}
}

.whatsapp-message p {
background: white;
padding: 10px 12px;
border-radius: 8px;
margin: 0;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
word-wrap: break-word;
position: relative;
font-size: 14px;
line-height: 1.5;
}

.whatsapp-message p::before {
content: "";
position: absolute;
top: 0;
left: -8px;
width: 0;
height: 0;
border-top: 6px solid white;
border-left: 10px solid transparent;
}

.message-time {
display: block;
font-size: 11px;
color: #8c8c8c;
margin-top: 5px;
text-align: right;
}

.whatsapp-popup-footer {
padding: 12px 15px;
background-color: #f0f0f0;
border-top: 1px solid #e0e0e0;
}

.whatsapp-offer-btn {
display: block;
background: var(--primary-btn-color);
color: white;
text-align: center;
padding: 12px;
border-radius: 5px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.whatsapp-offer-btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
color: white;
}

@media (max-width: 480px) {
.whatsapp-popup {
  width: 280px;
  bottom: 70px;
  right: 0;
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
}

.whatsapp-icon i {
  font-size: 28px;
}

.whatsapp-profile-info h4 {
  font-size: 15px;
}

.whatsapp-profile-info p {
  font-size: 11px;
}
}

/* Show animation when activated */
.whatsapp-message:nth-child(1) {
animation-delay: 0.2s;
}

.whatsapp-message:nth-child(2) {
animation-delay: 1.5s;
}


/* 
==============================
 AI Features Component Styles
============================== 
*/
.ai-features-section {
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
position: relative;
overflow: hidden;
}

.ai-features-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.03'%3E%3Cpolygon fill='%235d0dcd' points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
pointer-events: none;
z-index: 0;
}

.ai-features-section .container {
position: relative;
z-index: 1;
}

.ai-features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin: 50px 0;
}

.ai-feature-card {
background: linear-gradient(145deg, #ffffff, #f8f9fa);
border-radius: 20px;
padding: 30px;
position: relative;
overflow: hidden;
box-shadow: 0 10px 30px rgba(93, 13, 205, 0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: 1px solid rgba(93, 13, 205, 0.1);
}

.ai-feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(93, 13, 205, 0.02), rgba(155, 89, 182, 0.02));
opacity: 0;
transition: opacity 0.4s ease;
z-index: 0;
}

.ai-feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(93, 13, 205, 0.15);
}

.ai-feature-card:hover::before {
opacity: 1;
}

.ai-feature-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 25px;
position: relative;
z-index: 1;
}

.ai-feature-icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

.ai-icon-circle {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 2;
box-shadow: 0 8px 25px rgba(93, 13, 205, 0.3);
transition: all 0.4s ease;
}

.ai-feature-card:hover .ai-icon-circle {
transform: scale(1.1) rotateY(180deg);
box-shadow: 0 12px 35px rgba(93, 13, 205, 0.4);
}

.ai-icon-circle i {
font-size: 32px;
color: white;
transition: all 0.4s ease;
}

.ai-pulse-animation {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
}

.pulse-ring {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
border: 2px solid rgba(93, 13, 205, 0.3);
border-radius: 50%;
animation: aiPulse 2s infinite;
}

.pulse-ring-delay-1 {
animation-delay: 0.5s;
}

.pulse-ring-delay-2 {
animation-delay: 1s;
}

@keyframes aiPulse {
0% {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
100% {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
}
}

.ai-feature-badge {
position: relative;
z-index: 1;
}

.ai-badge {
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
color: white;
padding: 8px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
}

.ai-badge::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.5s ease;
}

.ai-feature-card:hover .ai-badge::before {
left: 100%;
}

.ai-feature-content {
position: relative;
z-index: 1;
}

.ai-feature-title {
font-size: 24px;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 15px;
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
transition: all 0.3s ease;
}

.ai-feature-card:hover .ai-feature-title {
transform: translateX(5px);
}

.ai-feature-description {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 20px;
font-size: 16px;
}

.ai-capabilities {
margin: 20px 0;
padding: 20px;
background: rgba(93, 13, 205, 0.05);
border-radius: 12px;
border-left: 4px solid var(--primary-color);
}

.capabilities-title {
font-size: 16px;
font-weight: 600;
color: var(--primary-color);
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 8px;
}

.capabilities-title::before {
content: '\f085';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 14px;
}

.capabilities-list {
list-style: none;
padding: 0;
margin: 0;
}

.capabilities-list li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 8px;
padding: 5px 0;
transition: all 0.3s ease;
}

.capabilities-list li:hover {
transform: translateX(5px);
color: var(--primary-color);
}

.capabilities-list li i {
color: #2ecc71;
font-size: 14px;
min-width: 16px;
}

.capabilities-list li span {
color: var(--text-color);
font-size: 14px;
line-height: 1.5;
}

.ai-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
gap: 15px;
margin: 20px 0;
padding: 20px;
background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
border-radius: 12px;
border: 1px solid rgba(46, 204, 113, 0.2);
}

.ai-stat-item {
text-align: center;
padding: 10px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.7);
transition: all 0.3s ease;
}

.ai-stat-item:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-value {
font-size: 28px;
font-weight: 700;
background: linear-gradient(135deg, #2ecc71, #3498db);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: 12px;
color: var(--text-light);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.ai-highlight {
display: flex;
align-items: center;
gap: 12px;
padding: 15px 20px;
background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
color: white;
border-radius: 25px;
margin-top: 20px;
box-shadow: 0 5px 15px #5d0dcd;
transition: all 0.3s ease;
}

.ai-highlight:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

.ai-highlight i {
font-size: 18px;
animation: highlightPulse 2s infinite;
}

@keyframes highlightPulse {
0%, 100% {
  transform: scale(1);
}
50% {
  transform: scale(1.1);
}
}

.ai-highlight span {
font-size: 14px;
font-weight: 500;
line-height: 1.4;
}

.ai-features-cta {
margin-top: 50px;
}

.ai-cta-btn {
padding: 16px 32px;
font-size: 18px;
font-weight: 600;
border-radius: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
border: none;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 8px 25px rgba(93, 13, 205, 0.3);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
overflow: hidden;
}

.ai-cta-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.6s ease;
}

.ai-cta-btn:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(93, 13, 205, 0.4);
color: white;
}

.ai-cta-btn:hover::before {
left: 100%;
}

.ai-cta-btn i {
margin-right: 10px;
transition: all 0.3s ease;
}

.ai-cta-btn:hover i {
transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
.ai-features-grid {
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
}

.ai-feature-card {
  padding: 20px;
  border-radius: 15px;
}

.ai-icon-circle {
  width: 60px;
  height: 60px;
}

.ai-icon-circle i {
  font-size: 24px;
}

.pulse-ring {
  width: 60px;
  height: 60px;
}

.ai-feature-title {
  font-size: 20px;
}

.ai-feature-description {
  font-size: 15px;
}

.ai-stats {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stat-value {
  font-size: 22px;
}

.ai-cta-btn {
  padding: 14px 24px;
  font-size: 16px;
}
}

@media (max-width: 480px) {
.ai-feature-header {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ai-stats {
  grid-template-columns: 1fr;
}

.ai-highlight {
  flex-direction: column;
  text-align: center;
  gap: 8px;
}
}


/* 
==============================
 Blog System Styles - Enhanced
============================== 
*/

/* Blog Index Styles */
.search-form {
  max-width: 500px;
  margin: 0 auto;
}

.search-container {
  position: relative;
  display: flex;
  background: rgba(255,255,255,0.95);
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(93, 13, 205, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(93, 13, 205, 0.1);
  transition: all 0.3s ease;
}

.search-container:hover {
  box-shadow: 0 12px 35px rgba(93, 13, 205, 0.2);
  transform: translateY(-2px);
}

.search-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: var(--text-color);
  font-weight: 500;
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-input:focus {
  color: var(--text-color);
}

.search-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(93, 13, 205, 0.3);
}

.search-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(93, 13, 205, 0.4);
}

.featured-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.featured-post-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(93, 13, 205, 0.05);
  position: relative;
  overflow: hidden;
}

.featured-post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transition: height 0.3s ease;
}

.featured-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.featured-post-card:hover::before {
  height: 6px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  margin-top: 50px;
}

.blog-posts-grid {
  display: grid;
  gap: 40px;
}

.blog-post-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(93, 13, 205, 0.05);
  position: relative;
  overflow: hidden;
}

.blog-post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: rgba(93, 13, 205, 0.1);
}

.blog-post-card:hover::before {
  transform: scaleX(1);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  flex-wrap: wrap;
}

.post-type.badge {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(93, 13, 205, 0.25);
  position: relative;
  overflow: hidden;
}

.post-type.badge::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 ease;
}

.post-type.badge:hover::before {
  left: 100%;
}

.post-category {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  background: rgba(93, 13, 205, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(93, 13, 205, 0.1);
}

.post-category:hover {
  background: rgba(93, 13, 205, 0.15);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(93, 13, 205, 0.2);
}

.post-title {
  margin: 20px 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-color);
}

.post-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--text-color), var(--text-color));
  background-clip: text;
  -webkit-background-clip: text;
}

.post-title a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(3px);
}

.post-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(93, 13, 205, 0.1);
  gap: 15px;
  flex-wrap: wrap;
}

.read-more-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(93, 13, 205, 0.3);
  position: relative;
  overflow: hidden;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(93, 13, 205, 0.4);
  color: white;
}

.read-more-btn:hover::before {
  left: 100%;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

.post-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: white;
}

.tag:hover::before {
  opacity: 1;
}

.post-date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.post-date i {
  color: var(--primary-color);
}

/* Blog Sidebar Styles - Enhanced */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.sidebar-widget {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(93, 13, 205, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sidebar-widget:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: rgba(93, 13, 205, 0.1);
}

.sidebar-widget:hover::before {
  transform: scaleX(1);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(93, 13, 205, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

.widget-title i {
  color: var(--primary-color);
  font-size: 18px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  border-bottom: 1px solid rgba(93, 13, 205, 0.05);
  transition: background-color 0.3s ease;
}

.category-item:last-child {
  border-bottom: none;
}

.category-item:hover {
  background-color: rgba(93, 13, 205, 0.02);
  border-radius: 8px;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-link:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.post-count {
  background: linear-gradient(45deg, rgba(93, 13, 205, 0.1), rgba(155, 89, 182, 0.1));
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  min-width: 25px;
  text-align: center;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud-item {
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.tag-cloud-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tag-cloud-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  color: white;
}

.tag-cloud-item:hover::before {
  opacity: 1;
}

.newsletter-widget {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-widget::before {
  background: rgba(255,255,255,0.2);
}

.newsletter-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255,255,255,0.2);
}

.newsletter-widget .widget-title::after {
  background: rgba(255,255,255,0.4);
}

.newsletter-widget .widget-title i {
  color: rgba(255,255,255,0.9);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-form .form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
  outline: none;
}

.newsletter-form .btn {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-form .btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: white;
}

.btn-block {
  width: 100%;
}

.no-posts {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(93, 13, 205, 0.05);
}

.no-posts-icon {
  font-size: 64px;
  color: rgba(93, 13, 205, 0.3);
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.no-posts h3 {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.no-posts p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.pagination-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  border: 1px solid rgba(93, 13, 205, 0.1);
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pagination .page-link:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 13, 205, 0.3);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(93, 13, 205, 0.3);
}

.pagination .page-item.disabled .page-link {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.5;
  background: #f8f9fa;
}

.pagination .page-item.disabled .page-link:hover {
  background: #f8f9fa;
  color: var(--text-muted);
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Enhanced Hero Search Forms for Category/Tag Pages */
.hero .search-form .search-container {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(20px);
}

.hero .search-form .search-input {
  color: white;
  background: transparent;
}

.hero .search-form .search-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.hero .search-form .search-input:focus {
  color: white;
}

.hero .search-form .search-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
}

.hero .search-form .search-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.05);
}

/* Responsive Design for Enhanced Blog System */
@media (max-width: 768px) {
  .blog-layout,
  .article-layout,
  .category-layout,
  .tag-layout {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .featured-posts-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }
  
  .featured-post-card,
  .blog-post-card {
      padding: 25px;
  }
  
  .post-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  
  .post-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  
  .post-title {
      font-size: 22px;
  }
  
  .search-container {
      padding: 6px;
  }
  
  .search-input {
      padding: 12px 16px;
  }
  
  .search-btn {
      width: 45px;
      height: 45px;
  }
  
  .sidebar-widget {
      padding: 25px;
  }
  
  .tag-cloud {
      gap: 8px;
  }
  
  .tag-cloud-item {
      font-size: 12px;
      padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .featured-post-card,
  .blog-post-card {
      padding: 20px;
  }
  
  .post-title {
      font-size: 20px;
  }
  
  .search-container {
      flex-direction: column;
      gap: 10px;
      padding: 10px;
      border-radius: 20px;
  }
  
  .search-input {
      text-align: center;
  }
  
  .search-btn {
      align-self: center;
      width: 45px;
      height: 40px;
      border-radius: 20px;
  }
}