/* ===================== */
/* Hero Section          */
/* ===================== */
.hero {
  background: linear-gradient(135deg, #0d6efd 0%, #084cba 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  user-select: none;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 100%;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hero .cta-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #fff;
  color: #0d6efd;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
  transition: all 0.3s ease;
  user-select: none;
}

.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background-color: #0d6efd;
  color: #fff;
  outline: none;
  box-shadow: 0 6px 20px rgba(8, 76, 186, 0.7);
  cursor: pointer;
}

/* ===================== */
/* Tech Services Section */
/* ===================== */
#tech-services {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

#tech-services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#tech-services .service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

#tech-services .service-item:hover,
#tech-services .service-item:focus-within {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  outline: none;
}

#tech-services .service-item img {
  max-width: 80px;
  height: auto;
  margin-bottom: 0.75rem;
  user-select: none;
}

#tech-services .service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#tech-services .service-item p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.5;
}

#tech-services .service-item .cta-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  user-select: none;
}

#tech-services .service-item .cta-btn:hover,
#tech-services .service-item .cta-btn:focus {
  background-color: #084cba;
  outline: none;
  cursor: pointer;
}

/* ===================== */
/* Featured Videos Section */
/* ===================== */
.video-section {
  background: #fff;
  padding: 3rem 1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item {
  background: #fefefe;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.video-item h4 {
  margin-top: 1rem;
  font-size: 1rem;
  color: #333;
}

/* ===================== */
/* Social Media Reels Section */
/* ===================== */
#social-reels {
  background-color: #f4f4f4;
  padding: 3rem 1rem;
}

#social-reels .reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0 auto;
}

.reel-item {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.reel-item:hover {
  transform: translateY(-5px);
}

.reel-item h4 {
  font-size: 1rem;
  margin-top: 1rem;
  color: #333;
}

/* ===================== */
/* Responsive Adjustments */
/* ===================== */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  #tech-services .service-grid,
  .video-grid,
  .reel-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 1rem;
    border-radius: 10px;
  }
  .hero h2 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 0.9rem;
  }

  #tech-services .service-item {
    padding: 1rem;
  }
  #tech-services .service-item img {
    max-width: 60px;
    margin-bottom: 0.5rem;
  }
  #tech-services .service-item h3 {
    font-size: 1.1rem;
    flex-direction: column;
  }
  #tech-services .service-item p {
    font-size: 0.9rem;
  }
  #tech-services .service-item .cta-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  .video-item,
  .reel-item {
    padding: 0.8rem 0.5rem;
  }
  .video-item iframe,
  .reel-item iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  #tech-services .service-grid,
  .video-grid,
  .reel-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
}
