:root {
    /* Blue Accent Colors */
    --accent-primary:hsl(120, 100%, 50%);
    --accent-primary-shade:#0c450c;
    --accent-secondary: #06B6D4;
    --accent-tertiary: #10B981;
    --accent-warning: #F59E0B;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  color: #fff;
  font-size: 18px;
  position: relative;
}

.spinner::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}

/* Navigation */
.custom-nav {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.custom-nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 0.5rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 40px;
  border-radius: 8px;
}

.logo-text .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.logo-text .brand-tagline {
  font-size: 0.8rem;
  color: #888;
  line-height: 1;
}

/* Navigation Search */
.navbar-search {
  flex: 0 0 auto;
}

.search-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.25rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.search-container:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.search-input {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  width: 250px;
  font-size: 0.9rem;
}

.search-input:focus {
  background: transparent;
  border: none;
  color: white;
  box-shadow: none;
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-btn {
  background: var(--accent-primary);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--accent-primary);
  transform: scale(1.05);
  color: white;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-primary) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background:var(--accent-primary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Enhanced Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 120px;
}

.hero-main-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.title-spacing {
  height: 2rem;
}

.section-spacing {
  height: 1.5rem;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-image-container {
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ai-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  max-height: 400px;
  object-fit: cover;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 123, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
  top: 10%;
  right: 10%;
}
.floating-icon:nth-child(2) {
  top: 60%;
  right: 5%;
}
.floating-icon:nth-child(3) {
  bottom: 20%;
  left: 10%;
}
.floating-icon:nth-child(4) {
  top: 30%;
  left: 5%;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -1px;
    display: flex;

    align-items: center;
  justify-content: center;
}

.gradient-text {
  background: linear-gradient(45deg, #fff, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color:var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.hero-features {
  margin: 3rem 0;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-item:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 123, 255, 0.3);
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--accent-primary);
  margin-bottom: 0.8rem;
  display: block;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  color: #fff;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.hero-cta {
  margin-top: 3rem;
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  font-size: 0.9rem;
}

.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;
}

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

.btn-primary {
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-primary));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--accent-primary);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* Section Styles */
.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Generative AI Section */
.generative-ai-section {
  padding: 140px 0 100px;
  background: #f8f9fa;
}

.generative-ai-diagram {
  text-align: center;
  margin: 3rem 0;
}

.diagram-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.diagram-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.use-case-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.use-case-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-primary);
}

.use-case-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.use-case-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.use-case-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.use-case-card p {
  color: #666;
  line-height: 1.6;
}

/* Technology Section */
.tech-section {
  padding: 100px 0;
  background: #1a1a1a;
  color: #fff;
}

.tech-section .section-header h2,
.tech-section .section-header p {
  color: #fff;
}

.tech-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-15px) rotateY(5deg);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 123, 255, 0.3);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.4);
}

.tech-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.tech-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* Agentic AI Section */
.agentic-ai-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.agentic-diagram-container {
  text-align: center;
  margin: 3rem 0;
}

.agentic-diagram {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.architecture-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--accent-primary);
}

.architecture-card.learning {
  border-top-color: #28a745;
}

.architecture-card.efficiency {
  border-top-color: #ffc107;
}

.architecture-card.action {
  border-top-color: #dc3545;
}

.architecture-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.architecture-card .card-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
}

.architecture-card.learning .card-header {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(30, 126, 52, 0.1) 100%);
}

.architecture-card.efficiency .card-header {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(224, 168, 0, 0.1) 100%);
}

.architecture-card.action .card-header {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(200, 35, 51, 0.1) 100%);
}

.architecture-card .card-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.architecture-card.learning .card-header i {
  color: #28a745;
}

.architecture-card.efficiency .card-header i {
  color: #ffc107;
}

.architecture-card.action .card-header i {
  color: #dc3545;
}

.architecture-card .card-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.architecture-card .card-body {
  padding: 2rem;
}

.architecture-card .card-body p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list i {
  color: #28a745;
  font-size: 0.9rem;
}

.architecture-footer {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 15px;
}

.architecture-footer .lead {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Product Section */
.product-section {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.product-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.product-actions .btn {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

/* Search Section */
.search-section {
  padding: 80px 0;
  background: #1a1a1a;
  color: #fff;
}

.search-section .section-header h2,
.search-section .section-header p {
  color: #fff;
}

.search-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.search-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 123, 255, 0.2);
}

.search-card .card-body {
  padding: 2.5rem;
}

.search-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--accent-primary),var(--accent-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.search-card .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  text-align: center;
}

.search-card .card-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  text-align: center;
}

.help-link,
.qr-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.help-link:hover,
.qr-link:hover {
  color: white;
  text-decoration: underline;
}

.search-card .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.search-card .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-primary);
  color: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.search-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-shade) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-light {
  background: white;
  color: var(--accent-primary);
  border: none;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Ecosystem and Partners Section */
.ecosystem-section,
.partners-section {
  padding: 80px 0;
}

.partners-section {
  background: #1a1a1a;
  color: #fff;
}

.partners-section .section-header h2,
.partners-section .section-header p {
  color: #fff;
}

.partner-card,
.ecosystem-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.partners-section .partner-card {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-card:hover,
.ecosystem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partners-section .partner-card:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.3);
}

.partner-card h5,
.ecosystem-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.partners-section .partner-card h5 {
  color: #fff;
}

.partner-card h7,
.ecosystem-card h7 {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.partners-section .partner-card h7 {
  color: rgba(255, 255, 255, 0.8);
}

.partner-card p,
.ecosystem-card p {
  color: #666;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.partners-section .partner-card p {
  color: rgba(255, 255, 255, 0.8);
}

.partner-card a,
.ecosystem-card a {
  color: var(--accent-primary);
  text-decoration: none;
}

.partner-card a:hover,
.ecosystem-card a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-shade) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
  opacity: 0.3;
}

.contact-section .section-header {
  position: relative;
  z-index: 2;
}

.contact-section .section-header h2,
.contact-section .section-header p {
  color: white;
}

.social-links-container {
  position: relative;
  z-index: 2;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.social-link span {
  font-size: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.social-link:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
  color: white;
}

.social-link.youtube:hover {
  background: rgba(255, 0, 0, 0.8);
}
.social-link.twitter:hover {
  background: rgba(29, 161, 242, 0.8);
}
.social-link.discord:hover {
  background: rgba(114, 137, 218, 0.8);
}
.social-link.github:hover {
  background: rgba(51, 51, 51, 0.8);
}
.social-link.telegram:hover {
  background: rgba(0, 136, 204, 0.8);
}

.contact-info {
  position: relative;
  z-index: 2;
}

.contact-email {
  font-size: 1.1rem;
  margin: 0;
}

.contact-email a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-email a:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo-img {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-logo h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer-social a:hover {
  background: var(--accent-primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
  color: white;
}

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

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-search {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-features {
    margin: 3rem 0;
  }

  .feature-item {
    padding: 1.5rem 1rem;
    min-height: 120px;
  }

  .feature-icon {
    font-size: 1.8rem;
  }

  .feature-item h4 {
    font-size: 1rem;
  }

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

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

  .section-header h2 {
    font-size: 2rem;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .use-case-card .card-icon,
  .tech-icon,
  .search-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 80px;
    height: 80px;
  }

  .social-link i {
    font-size: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    text-align: center;
  }

  .hero-cta .btn {
    margin: 0.5rem;
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .feature-item {
    padding: 1.2rem;
    min-height: 100px;
  }

  .feature-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .feature-item h4 {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .feature-item {
    padding: 1.5rem;
  }

  .use-case-card,
  .tech-card,
  .architecture-card,
  .partner-card,
  .ecosystem-card {
    padding: 1.5rem;
  }

  .social-link {
    width: 70px;
    height: 70px;
  }

  .social-link span {
    font-size: 0.7rem;
  }

  .cta-icon {
    font-size: 3rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

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

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

/* Utility Classes */
.bg-light {
  background-color: #f8f9fa !important;
}

.text-center {
  text-align: center !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 25px;
}

/* Animation Classes */
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-15px);
  }
  70% {
    transform: translateY(-7px);
  }
  90% {
    transform: translateY(-3px);
  }
}
