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

/* CSS Variables - Design System */
:root {
  /* Colors */
  --background: hsl(0, 0%, 4%);
  --foreground: white;
  --card: hsl(0, 0%, 8%);
  --card-foreground: hsl(0, 0%, 96%);
  --popover: hsl(0, 0%, 6%);
  --popover-foreground: hsl(0, 0%, 96%);
  --primary: hsl(145, 100%, 53%);
  --primary-foreground: hsl(0, 0%, 4%);
  --secondary: hsl(0, 0%, 15%);
  --secondary-foreground: hsl(0, 0%, 96%);
  --muted: hsl(0, 0%, 12%);
  --muted-foreground: white;
  --accent: hsl(145, 100%, 53%);
  --accent-foreground: hsl(0, 0%, 4%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(0, 0%, 96%);
  --border: hsl(0, 0%, 15%);
  --input: hsl(0, 0%, 15%);
  --ring: hsl(145, 100%, 53%);
  --radius: 0.75rem;
  --growth-glow: hsl(145, 100%, 53%);
  --growth-glow-soft: hsl(145, 80%, 45%);
  --dark-surface: hsl(0, 0%, 6%);
  --darker-surface: hsl(0, 0%, 4%);
  
  /* Gradients and Effects */
  --gradient-growth: linear-gradient(135deg, hsl(145 100% 53% / 0.2), hsl(145 80% 45% / 0.1));
  --shadow-glow: 0 0 40px hsl(145 100% 53% / 0.3);
  --shadow-glow-sm: 0 0 20px hsl(145 100% 53% / 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background-color: hsl(145, 100%, 53%);
  color: var(--background);
}

::-moz-selection {
  background-color: hsl(145, 100%, 53%);
  color: var(--background);
}

.font-heading {
  font-family: 'Poppins', sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
}

.logo .highlight {
  color: var(--primary);
}

.nav-links {
  display: none;
  flex-wrap: nowrap; /* prevent items from wrapping */
  gap: 1.5rem; /* slightly smaller gap to fit additional link */
  align-items: center;
  list-style: none;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.98);
  padding: 2rem;
  gap: 1rem;
}

.nav-link {
  color: var(--foreground);
  white-space: nowrap; /* keep text in single line */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary);
  background-color: rgba(57, 255, 20, 0.1);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 80%;
}

.services-dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  width: 600px;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  z-index: 100;
}

.services-dropdown:hover .dropdown-content {
  display: grid;
}

.service-category {
  margin-bottom: 1rem;
}

.service-category h4 {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-category ul {
  list-style: none;
}

.service-category li {
  margin-bottom: 0.25rem;
}

.service-category a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  padding-left: 0.5rem;
}

.service-category a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
 
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--growth-glow));
  color: var(--background);
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(57, 255, 20, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.75rem;
  cursor: pointer;
}

.about-banner{
  position:relative;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  max-width:100vw;
}
.about-banner img{
  width:100%;
  height:auto;
  border-radius:0;
  display:block;
  object-fit:cover;
}

/* Responsive banner buttons */
@media (max-width: 640px){
  .banner-buttons{
    top: 218px;
    left:0.5rem !important;
    transform:none;
    bottom:1rem !important;
    flex-direction:column;
    gap:0.5rem;
    height: 28px;
    overflow: hidden;
    
  }
  .banner-buttons .btn{
    justify-content:center;
    width:auto;
    padding:0.4rem 0.9rem;
    font-size:0.7rem;
  }
  .banner-buttons .btn svg{
    width:16px;
    height:16px;
  }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.95));
  border-right: 1px solid rgba(57, 255, 20, 0.2);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.mobile-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  color: var(--primary);
  background: rgba(57, 255, 20, 0.1);
}

.mobile-nav-close svg {
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-nav-menu {
  flex: 1;
  padding: 2rem 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100vh - 200px);
}

.mobile-nav-item {
  display: block;
  padding: 1rem 2rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-item:hover {
  background: rgba(57, 255, 20, 0.1);
  color: var(--primary);
  padding-left: 2.5rem;
}

.mobile-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  /* background: var(--primary); */
  transition: width 0.3s ease;
}

.mobile-nav-item:hover::before {
  width: 4px;
}

.mobile-nav-text {
  display: block;
}

/* Mobile Services Dropdown */
.mobile-services-dropdown {
  cursor: default;
}

.mobile-nav-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-icon {
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.mobile-services-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-services-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: max-height 0.3s ease;
}

.mobile-services-dropdown.active .mobile-services-content {
  max-height: 400px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.mobile-services-dropdown.active .mobile-services-content::after {
  content: '';
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.mobile-service-category {
  padding: 1rem 2rem 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-service-category:last-child {
  border-bottom: none;
  padding-bottom: 2rem;
}

.mobile-service-category h4 {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-service-category a {
  display: block;
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1rem;
}

.mobile-service-category a:hover {
  color: var(--primary);
  padding-left: 1.5rem;
}

.mobile-service-category a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-service-category a:hover::before {
  opacity: 1;
}

/* Mobile CTA */
.mobile-nav-cta {
  padding: 2rem;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.mobile-cta-btn {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-growth);
  color: var(--primary-foreground);
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 255, 20, 0.4);
}

/* Custom Scrollbar for Mobile Navigation */
.mobile-nav-menu::-webkit-scrollbar,
.mobile-services-content::-webkit-scrollbar {
  width: 4px;
}

.mobile-nav-menu::-webkit-scrollbar-track,
.mobile-services-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mobile-nav-menu::-webkit-scrollbar-thumb,
.mobile-services-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.mobile-nav-menu::-webkit-scrollbar-thumb:hover,
.mobile-services-content::-webkit-scrollbar-thumb:hover {
  background: rgba(57, 255, 20, 0.8);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Service Page Hero Sections */
section[style*="background-color: rgba(26, 26, 26, 0.8)"] {
  position: relative;
  z-index: 1;
}

/* Ensure content is never hidden behind navbar */
body {
  padding-top: 0;
}

/* Service pages specific spacing */
.service-page-content {
  margin-top: 80px;
}

/* Additional safety margin for service hero sections */
section[style*="margin-top: 80px"] {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6), var(--background));
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  animation: float 6s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.hero-orb-1 {
  top: 20%;
  left: 10%;
  width: 256px;
  height: 256px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.15), rgba(57, 255, 20, 0.05));
  animation-delay: 0s;
  animation-duration: 8s, 4s;
}

.hero-orb-2 {
  bottom: 20%;
  right: 10%;
  width: 192px;
  height: 192px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.12), rgba(57, 255, 20, 0.03));
  animation-delay: 2s;
  animation-duration: 10s, 6s;
}

/* Additional floating orbs */
.hero-orb-3 {
  top: 60%;
  left: 70%;
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.08), transparent);
  animation-delay: 4s;
  animation-duration: 12s, 8s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: fadeIn 0.6s ease-out;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero-title .highlight {
  color: var(--primary);
  filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.5));
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 200;
}

.hero-btn {
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-inner {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(57, 255, 20, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
}

.scroll-indicator-dot {
  width: 4px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 2px;
  animation: pulse 2s infinite;
}

/* About Section */
.about {
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, var(--background), rgba(38, 38, 38, 0.2));
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--foreground);
}

.about-title .highlight {
  color: var(--primary);
}

.about-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 4rem;
}

@media (max-width: 640px) {
  .about-title {
    font-size: 1.6rem;
    line-height: 1.1;
    text-align: left;
  }

  .about-heading-line {
    display: block;
    white-space: nowrap;
    line-height: 0.8;
  }
}

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

.service-card {
  background-color: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(8px);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.5s ease;
  animation: fadeIn 0.6s ease-out;
}

.service-card:hover {
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-8px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-growth);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

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

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 6rem 1.5rem;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--foreground);
}

.services-title .highlight {
  color: var(--primary);
}

.services-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 4rem;
}

.services-grid-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card-main {
  position: relative;
  padding: 2rem;
  border-radius: 16px;
  background-color: rgba(20, 20, 20, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: all 0.5s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  animation: fadeIn 0.6s ease-out;
}

.service-card-main:hover {
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: var(--shadow-glow-sm);
}

.service-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--gradient-growth);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card-main:hover::before {
  opacity: 1;
}

.service-card-main .service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--secondary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card-main:hover .service-icon {
  background-color: rgba(57, 255, 20, 0.2);
  transform: scale(1.1);
}

.service-card-main h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.service-card-main:hover h3 {
  color: var(--primary);
}

.service-card-main p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.service-card-main .progress-bar {
  margin-top: 1.5rem;
  height: 4px;
  width: 0;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.service-card-main:hover .progress-bar {
  width: 100%;
}

/* Footer */
.footer {
  position: relative;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 4rem 0 2rem;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(57, 255, 20, 0.5), transparent);
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.footer-orb-1 {
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background-color: rgba(57, 255, 20, 0.05);
}

.footer-orb-2 {
  bottom: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background-color: rgba(57, 255, 20, 0.05);
}

.footer-content {
  position: relative;
  z-index: 10;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgba(57, 255, 20, 0.2);
  box-shadow: var(--shadow-glow-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--primary);
  margin-right: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  width: 16px;
  margin-right: 8px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.contact-info .icon {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-end;
  }
}

.footer-bottom-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

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


@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}


.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-rotate-in {
  animation: rotateIn 0.8s ease-out forwards;
}

.animate-bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 4s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* .animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.2), transparent);
  background-size: 200px 100%;
  animation: shimmer 2s infinite;
} */

.animate-wiggle {
  animation: wiggle 2s ease-in-out;
}

.animate-heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

/* Hover Animations */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hover-rotate {
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
  transform: translateY(-2px);
}

.hover-slide {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.hover-slide:hover::before {
  left: 100%;
}


/* Smooth Transitions for All Elements */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Disable transitions for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Service Features Grid - Mobile First Responsive */
.service-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Enhanced Card Animations */
.service-card,
.feature-card,
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.feature-card::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(57, 255, 20, 0.1);
}

/* FAQ Section - Futuristic Accordions */
#faqs {
  padding: 5rem 1rem;
}

#faqs .faq-category {
  background: radial-gradient(circle at top left, rgba(57, 255, 20, 0.16), transparent 55%),
              linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(5, 5, 5, 0.98));
  border-radius: 18px;
  border: 1px solid rgba(57, 255, 20, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(57, 255, 20, 0.14);
  padding: 1.75rem 2rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

#faqs .faq-category h3 {
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

#faqs details {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 10, 0.9);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

#faqs details[open] {
  border-color: rgba(57, 255, 20, 0.7);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
  background: radial-gradient(circle at top left, rgba(57, 255, 20, 0.18), transparent 55%),
              rgba(10, 10, 10, 0.95);
}

#faqs summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
  position: relative;
}

#faqs summary::-webkit-details-marker {
  display: none;
}

#faqs summary::before {
  content: '\25BC';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(57, 255, 20, 0.85);
  color: var(--primary);
  background: rgba(57, 255, 20, 0.08);
  font-size: 0.7rem;
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.4);
  transform: rotate(0deg);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

#faqs details[open] summary::before {
  transform: rotate(180deg);
  background: rgba(57, 255, 20, 0.22);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
}

#faqs summary:hover {
  background: radial-gradient(circle at left, rgba(57, 255, 20, 0.16), transparent 55%);
}

#faqs details p {
  padding: 0 1.2rem 1rem 2.5rem;
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

#faqs details a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(57, 255, 20, 0.7);
}

#faqs details a:hover {
  border-bottom-style: solid;
}

/* Enhanced Navigation Animations */
.nav-links {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-dropdown:hover .dropdown-content {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Mobile Navigation Enhanced */
.mobile-nav-overlay {
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-item:hover {
  transform: translateX(10px);
  background: rgba(57, 255, 20, 0.1);
}

/* Hero Section Enhanced Animations - DISABLED */

/* Footer Enhanced Animations */

/* Portfolio Page - Mobile Improvements */
@media (max-width: 600px) {
  .hero-subtitle {
    font-size: 0.600rem;
    line-height: 1.2;
  }
  .projects-grid {
    grid-template-columns: 1fr !important;
  }
  .project-image {
    height: 160px;
  }
  .filter-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    justify-items: center;
  }
  .filter-btn {
    width: 100%;
    white-space: nowrap;
  }
}
.footer-links a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Contact Form Enhanced */
.contact-form input,
.contact-form textarea {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 255, 20, 0.2);
}

/* Loading Animation for Images */
img {
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

/* Scroll-triggered Animations - DISABLED */
.scroll-animate {
  opacity: 1;
  /* animation: fadeIn 0.8s ease-out forwards; */
}

/* Text Reveal Animation */
.text-reveal {
  overflow: hidden;
  position: relative;
}

.text-reveal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background);
  animation: textReveal 1.5s ease-out forwards;
}

@keyframes textReveal {
  0% {
    left: 0;
    width: 100%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@media (min-width: 640px) {
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .service-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-feature-card {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(57, 255, 20, 0.1);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

.service-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.service-feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 639px) {
  .navbar {
    height: 70px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding-top: 70px;
    min-height: 90vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .dropdown-content {
    width: 90vw;
    left: 50%;
    transform: translateX(-50%);
    grid-template-columns: 1fr;
  }
  
  .service-category {
    margin-bottom: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  /* Services Section Mobile Responsive */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0;
  }
  
  .services-grid-main {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0;
  }
  
  .service-card {
    padding: 1.5rem !important;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .service-card-main {
    padding: 1.5rem !important;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .service-icon {
    margin-bottom: 1rem !important;
  }
  
  .service-card h3,
  .service-card-main h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }
  
  .service-card p,
  .service-card-main p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }
  
  .services-title,
  .about-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    padding: 0 1rem;
  }
  
  .services-subtitle,
  .about-subtitle {
    font-size: 1rem !important;
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.5 !important;
  }
  
  /* Services Section Padding */
  .services {
    padding: 3rem 1rem !important;
  }
  
  .about {
    padding: 3rem 1rem !important;
  }
  
  /* Container adjustments */
  .services .container,
  .about .container {
    padding: 0 !important;
    max-width: 100% !important;
  }
  
  /* Service page hero sections */
  section[style*="padding: 8rem 1rem 5rem 1rem"] {
    padding: 6rem 1rem 3rem 1rem !important;
    margin-top: 70px !important;
  }
  
  section[style*="padding: 5rem 1rem"] {
    padding: 3rem 1rem !important;
  }
  
  /* Service page titles */
  h1[style*="font-size: 3rem"] {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  
  /* Service page descriptions */
  p[style*="font-size: 1.25rem"] {
    font-size: 1rem !important;
  }
  
  /* Better spacing for mobile */
  .service-features-grid {
    gap: 1rem;
  }
  
  .service-feature-card {
    padding: 1.5rem;
  }
  
  /* Progress bar mobile adjustments */
  .progress-bar {
    margin-top: 1rem !important;
  }
  
  /* Icon sizing for mobile */
  .service-icon .icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
  
  /* Text center alignment for mobile services */
  .services .text-center,
  .about .text-center {
    padding: 0 0.5rem;
  }
  
  /* Highlight text mobile */
  .highlight {
    display: inline-block;
    padding: 0 0.25rem;
  }
  
  /* Footer improvements */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  
  .contact-info li {
    justify-content: flex-start;
    text-align: left;
  }
  
  .footer-section h3 {
    text-align: left !important;
  }
  
  .footer-section {
    text-align: left !important;
  }
  
  .footer-bottom {
    text-align: left !important;
    justify-content: flex-start !important;
  }
  
  .footer-bottom-links {
    justify-content: flex-start !important;
  }
  
  .social-links {
    justify-content: flex-start !important;
  }
  
  /* Testimonials responsive */
  .testimonials h2 {
    font-size: 2rem !important;
  }
  
  .testimonials div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .testimonials div[style*="padding: 2rem"] {
    padding: 1.5rem !important;
  }
  
  /* About Page Mobile Responsive */
  section[style*="padding: 120px 1rem 80px 1rem"] {
    padding: 100px 1rem 60px 1rem !important;
    min-height: 50vh !important;
  }
  
  .about-hero-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  
  .about-hero-subtitle {
    font-size: 1rem !important;
    padding: 0 1rem;
  }
  
  .about-mission-vision {
    padding: 3rem 1rem !important;
  }
  
  .about-cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 100% !important;
  }
  
  .about-card {
    padding: 1.5rem !important;
  }
  
  .about-card-title {
    font-size: 1.25rem !important;
  }
  
  .about-card-text {
    font-size: 0.95rem !important;
  }
  
  .about-why-choose {
    padding: 3rem 1rem !important;
  }
  
  .about-section-title {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }
  
  .about-section-subtitle {
    font-size: 1rem !important;
    padding: 0 1rem;
  }
  
  .about-features-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 100% !important;
  }
  
  .about-cta {
    padding: 3rem 1rem !important;
  }
  
  .about-cta-title {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }
  
  .about-cta-subtitle {
    font-size: 1rem !important;
    padding: 0 1rem;
  }
}

@media (min-width: 640px) {
  .mobile-menu-btn {
    display: none;
  }
  
  .mobile-nav-overlay {
    display: none;
  }
  
  /* About Page Desktop Styles */
  .about-hero-title {
    font-size: 3rem !important;
  }
  
  .about-hero-subtitle {
    font-size: 1.25rem !important;
  }
  
  .about-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
  }
  
  .about-section-title {
    font-size: 2.5rem !important;
  }
  
  .about-section-subtitle {
    font-size: 1.125rem !important;
  }
  
  .about-features-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
  }
  
  .about-cta-title {
    font-size: 2.5rem !important;
  }
  
  .about-cta-subtitle {
    font-size: 1.25rem !important;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  /* Tablet Services Layout */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  
  .services-grid-main {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
  
  .services-title,
  .about-title {
    font-size: 2.5rem !important;
  }
  
  .services-subtitle,
  .about-subtitle {
    font-size: 1.1rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .dropdown-content {
    min-width: 500px;
  }
  
  /* Service page hero sections for tablets */
  section[style*="padding: 8rem 1rem 5rem 1rem"] {
    padding: 7rem 1rem 4rem 1rem !important;
    margin-top: 80px !important;
  }
  
  /* Service page hero sections with background */
  section.hero[style*="padding-top: 120px"] {
    padding-top: 100px !important;
    min-height: 50vh !important;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
  }

  .mobile-menu-btn {
    display: none;
  }

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

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

  .about-title,
  .services-title {
    font-size: 2.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .dropdown-content {
    width: 600px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }

  .about-title,
  .services-title {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 5rem;
  }

  .about-title,
  .services-title {
    font-size: 3.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

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

.gap-2 {
  gap: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Icon styles */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.icon-xl {
  width: 48px;
  height: 48px;
}

/* Blog Section Styles */
.blogs-section {
  padding: 4rem 1.5rem;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.blogs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0.5;
}

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

/* Blog Card Styles */
.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeIn 0.6s ease-out;
  position: relative;
  height: 100%;
  border-bottom: 4px solid var(--primary);
}

.blog-card:hover {
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 12px 40px rgba(57, 255, 20, 0.15), 0 0 30px rgba(57, 255, 20, 0.2);
  transform: translateY(-8px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(57, 255, 20, 0.05));
  position: relative;
}

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

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

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--primary);
}

.blog-card-subtitle {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.meta-item:hover {
  color: var(--primary);
}

.meta-icon {
  color: var(--primary);
  flex-shrink: 0;
  stroke: var(--primary);
  fill: none;
}

.blog-card-excerpt {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--growth-glow));
  color: var(--primary-foreground);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

.blog-card-btn:hover {
  background: linear-gradient(135deg, var(--growth-glow), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 255, 20, 0.5);
}

.blog-card-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  .blog-card-subtitle {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .blog-card-meta {
    gap: 0.75rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Page Styles */
.blog-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(57, 255, 20, 0.02));
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.blog-hero-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(57, 255, 20, 0.15);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.blog-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
  line-height: 1.3;
}

.blog-hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.blog-content-section {
  padding: 4rem 1.5rem;
  background-color: var(--background);
}

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-article {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: 12px;
  padding: 2rem;
  animation: fadeIn 0.6s ease-out;
}

.blog-featured-image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(57, 255, 20, 0.05));
}

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

.blog-body {
  color: var(--foreground);
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--foreground);
}

.blog-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--foreground);
}

.blog-body p {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

.blog-body ul,
.blog-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--muted-foreground);
}

.blog-body li {
  margin-bottom: 0.75rem;
}

.blog-body strong {
  color: var(--primary);
  font-weight: 600;
}

.blog-body a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
}

.blog-body a:hover {
  border-bottom-color: var(--primary);
}

.blog-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-share h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(57, 255, 20, 0.1);
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.share-btn:hover {
  background: rgba(57, 255, 20, 0.2);
  box-shadow: 0 4px 12px rgba(57, 255, 20, 0.2);
  transform: translateY(-2px);
}

.blog-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-related h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  animation: fadeIn 0.6s ease-out;
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.widget-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.widget-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.widget-value {
  color: var(--foreground);
  font-size: 0.95rem;
}

.widget-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widget-links a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-links a:hover {
  transform: translateX(4px);
  color: var(--growth-glow);
}

.cta-widget {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(57, 255, 20, 0.05));
  border-color: rgba(57, 255, 20, 0.3);
}

.cta-widget p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design for Blog Page */
@media (max-width: 768px) {
  .blog-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-article {
    padding: 1.5rem;
  }

  .blog-featured-image {
    height: 250px;
  }

  .blog-hero-title {
    font-size: 1.8rem;
  }

  .blog-body {
    font-size: 1rem;
  }

  .blog-body h2 {
    font-size: 1.4rem;
  }

  .blog-body h3 {
    font-size: 1.1rem;
  }
}

/* Blog Divider */
.blog-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(57, 255, 20, 0.3), transparent);
  margin: 2.5rem 0;
}

/* Action Plan Styles */
.action-plan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.action-week {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), rgba(57, 255, 20, 0.03));
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.action-week:hover {
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 8px 20px rgba(57, 255, 20, 0.1);
  transform: translateY(-4px);
}

.action-week h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.action-week p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.12), rgba(57, 255, 20, 0.06));
  border: 2px solid rgba(57, 255, 20, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.blog-cta-box h3 {
  color: var(--foreground);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-cta-box p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-cta-box .btn {
  display: inline-block;
}

/* Responsive Action Plan */
@media (max-width: 768px) {
  .action-plan {
    grid-template-columns: 1fr;
  }

  .blog-cta-box {
    padding: 1.5rem;
  }

  .blog-cta-box h3 {
    font-size: 1.25rem;
  }
}
