/* ICT-Robotics Premium Styles */
/* Typography Standardization */
body, p, a, span, li, .innovation-desc, .project-category-badge {
    font-family: "Open Sans", sans-serif !important;
}
body, p, li {
    font-size: 14px !important;
}

h1, h2, h3, h4, h5, h6, .hero-content h1, .stat-card-premium h2, #cta h2, .innovation-title {
    font-family: "Poppins", sans-serif !important;
}

:root {
  --primary-blue: #106eea;
  --secondary-blue: #0073b7;
  --light-blue: #e7f1fd;
  --dark-bg: #222222;
  --glass-bg: rgba(255, 255, 255, 0.8);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ICT Hero Section Standard */
.ict-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background: #f1f6fe;
    position: relative;
    padding-top: 80px;
}

.ict-hero h1 {
    margin: 0;
    font-size: 36px !important;
    font-weight: 700;
    line-height: 1.25;
    color: #444444;
    font-family: "Poppins", sans-serif !important;
}

.ict-hero h2 {
    color: #555555;
    margin-top: 15px;
    font-family: "Open Sans", sans-serif !important;
}

.ict-hero-img {
    max-width: 65%;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(16, 110, 234, 0.2);
    border: 8px solid white;
    display: block;
    animation: hero-float-anim 3s ease-in-out infinite alternate;
}

@keyframes hero-float-anim {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .ict-hero {
        height: auto;
        padding: 120px 0 60px 0;
    }
    .ict-hero .hero-content {
        text-align: center;
        margin-top: 40px;
    }
    .ict-hero h1 {
        font-size: 30px !important;
    }
    .ict-hero-img {
        max-width: 90%;
        margin-top: 40px;
    }
}

.btn-premium-solid {
  background: var(--primary-blue);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  display: inline-block;
}

.btn-premium-solid:hover {
  background: var(--secondary-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 110, 234, 0.3);
}

.btn-premium-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  background: transparent;
  display: inline-block;
}

.btn-premium-outline:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* Stats Cards */
.stat-card-premium {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.stat-card-premium:hover {
  transform: translateY(-10px);
}

.stat-icon-box {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 15px;
}

.stat-card-premium h2 {
  font-size: 28px !important;
}

/* Video & Project Cards */
.video-card-premium, .innovation-card, .project-card-glass {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.innovation-card:hover, .project-card-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 110, 234, 0.1);
}

.innovation-video-wrapper {
  position: relative;
}

.innovation-card-body {
  padding: 20px;
}

.innovation-title {
  font-size: 16px !important;
  font-weight: 700;
  margin-bottom: 10px;
}

.innovation-desc {
  font-size: 13px !important;
  color: #666;
  margin-bottom: 15px;
}

.innovation-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.author-avatar-wrapper {
  width: 30px;
  height: 30px;
  background: var(--light-blue);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.innovation-divider {
  margin: 15px 0;
  border-color: #eee;
}

.innovation-stats {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #888;
}

/* Project Catalog (Glassmorphism inspired) */
.project-card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-icon-wrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card-body {
  padding: 20px;
}

.project-category-badge {
  font-size: 10px !important;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  display: inline-block;
}

.badge-arduino { background: #e0f2f1; color: #00897b; }
.badge-microbit { background: #fff3e0; color: #fb8c00; }
.badge-ai { background: #e8eaf6; color: #3949ab; }
.badge-scratch { background: #fce4ec; color: #d81b60; }

/* Tech Cards */
.tech-card-premium {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

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

.tech-icon-circle {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px;
}

/* Visibility toggles */
.video-item-hidden, .project-item-hidden {
  display: none;
}

.btn-view-more {
  background: #fff;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  transition: 0.3s;
}

.btn-view-more:hover {
  background: var(--primary-blue);
  color: #fff;
}

.view-more-container {
  text-align: center;
  margin-top: 40px;
}

/* Animations */
.grid-stagger > div {
  opacity: 0;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* CTA Section */
#cta h2 {
  font-size: 28px !important;
}
