/* Antivirus Key - Enhanced Styling for Better Visuals and Spacing */

/* Reduce excessive padding/margins */
.section-spacing {
  padding: 60px 0 !important;
}

.section-spacing-bottom {
  padding-bottom: 60px !important;
}

.section-spacing-top {
  padding-top: 60px !important;
}

/* Hero section optimization */
.hero-section-split {
  padding: 80px 0 !important;
}

.grid-hero-split {
  gap: 40px;
  align-items: center;
}

.hero-image-right {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* About section - better spacing */
.about-section {
  padding: 60px 0 !important;
}

.grid-about-split-counter {
  gap: 50px;
  align-items: center;
}

/* Service section - compact grid */
.service-section {
  padding: 60px 0 !important;
}

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

.service-item {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* Client section - tighter spacing */
.client-section {
  padding: 40px 0 !important;
}

.grid-marquee-split {
  gap: 30px;
}

/* Feature section improvements */
.feature-section {
  padding: 60px 0 !important;
}

.grid-feature-split {
  gap: 50px;
  align-items: center;
}

.feature-item-list {
  gap: 25px;
}

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

.feature-icon-wrap {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 100%;
  height: 100%;
}

/* CTA section optimization */
.cta-section {
  padding: 50px 0 !important;
}

/* Footer improvements */
.footer-wrapper {
  padding: 60px 0 20px !important;
}

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

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-simple-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-simple-link:hover {
  color: #2ea3f2;
  text-decoration: underline;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero-section-split {
    padding: 60px 0 !important;
  }

  .grid-hero-split {
    gap: 30px;
  }

  .section-spacing,
  .section-spacing-bottom,
  .section-spacing-top {
    padding: 40px 0 !important;
  }

  .grid-about-split-counter,
  .grid-feature-split {
    gap: 30px;
  }

  .grid-service-one {
    gap: 20px;
  }

  .service-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .section-spacing,
  .section-spacing-bottom,
  .section-spacing-top {
    padding: 30px 0 !important;
  }

  .grid-service-one {
    grid-template-columns: 1fr;
  }

  .service-item {
    padding: 15px;
  }

  .grid-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-counter-image,
.feature-image-split {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Remove excessive whitespace between sections */
section + section {
  margin-top: 0;
}

/* Button improvements */
.button-gradient-1,
.button-black {
  transition: all 0.3s ease;
}

.button-gradient-1:hover,
.button-black:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Text improvements for readability */
h1, h2, h3 {
  line-height: 1.2;
}

p {
  line-height: 1.6;
  color: #555;
}

/* Client logos section - better alignment */
.grid-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.client-image {
  max-width: 80px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.client-image:hover {
  opacity: 1;
}

/* Container max-width for better readability */
.container {
  max-width: 1200px;
}

/* Testimonial/Case study improvements */
.testimonial-item {
  padding: 30px;
  background: #f8f9fa;
  border-left: 4px solid #2ea3f2;
  border-radius: 4px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Contact form styling */
.contact-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2ea3f2;
  box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.1);
}

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

.service-item {
  animation: fadeInUp 0.6s ease forwards;
}

/* Navbar sticky behavior */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Price card styling */
.price-card {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.price-card:hover {
  border-color: #2ea3f2;
  box-shadow: 0 10px 30px rgba(46, 163, 242, 0.1);
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  color: #2ea3f2;
  margin: 15px 0;
}

/* Gradient text improvements */
.text-gradient-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Ensure proper image scaling */
.about-counter-image-wrap,
.feature-image-split-wrap,
.hero-image-right-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Team member cards */
.team-member-card {
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.team-member-card:hover {
  transform: translateY(-10px);
}

.team-member-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Blog card improvements */
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

/* Utilities for spacing */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.py-40 { padding: 40px 0; }
.py-60 { padding: 60px 0; }

/* Loading animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}
