﻿:root {
  --bg-dark: #0a0a0f;
  --text-main: #f0f0f5;
  --text-muted: #9aa0a6;
  --primary: #6c5ce7;
  --secondary: #00d2d3;
  --accent: #ff9ff3;
  --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  scroll-behavior: smooth;
  cursor: none;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}
.cursor {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 210, 211, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.15s ease,
    width 0.2s,
    height 0.2s;
}
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
}
a {
  text-decoration: none;
  color: inherit;
}
.btn-primary {
  background: var(--gradient-1);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--text-main);
}
.btn-block {
  width: 100%;
  margin-top: 20px;
  font-size: 1.1rem;
  cursor: none;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition:
    background 0.3s,
    padding 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 5%;
  border-bottom: 1px solid var(--glass-border);
}
.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.logo span {
  color: var(--primary);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links li a {
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: var(--secondary);
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}
.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}
.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 20px;
}
.hero-visual {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: float 6s ease-in-out infinite alternate;
}
.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  right: 20%;
  opacity: 0.4;
}
.orb-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  bottom: 20%;
  left: 10%;
  opacity: 0.3;
  animation-delay: 2s;
}
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--glass-shadow);
}
.main-card {
  width: 320px;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}
.main-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.main-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.main-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.main-card p {
  color: var(--text-muted);
}
.float-card {
  position: absolute;
  bottom: 10%;
  right: 15%;
  padding: 15px 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite alternate-reverse;
}
.float-card i {
  color: #ff4757;
  font-size: 1.5rem;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.services {
  padding: 100px 5%;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-10px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(108, 92, 231, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 25px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-muted);
}
.about {
  padding: 100px 5%;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-visual {
  flex: 1;
  position: relative;
  height: 400px;
}
.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}
.abstract-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 2px solid var(--glass-border);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite alternate;
}
.about-content {
  flex: 1;
}
.about-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.stats {
  display: flex;
  gap: 40px;
}
.stat-item h4 {
  font-size: 3rem;
  color: var(--primary);
  display: inline;
}
.stat-item span {
  font-size: 2rem;
  color: var(--secondary);
  font-weight: bold;
}
.stat-item p {
  color: var(--text-main);
  font-size: 1rem;
  margin-top: 5px;
  margin-bottom: 0;
}
.contact {
  padding: 100px 5%;
  display: flex;
  justify-content: center;
}
.contact-box {
  max-width: 800px;
  width: 100%;
  padding: 50px;
  text-align: center;
}
.contact-box h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.contact-box p {
  color: var(--text-muted);
  margin-bottom: 40px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.input-group {
  display: flex;
  gap: 20px;
}
input,
textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-main);
  font-size: 1rem;
  transition: all 0.3s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}
footer {
  border-top: 1px solid var(--glass-border);
  padding: 50px 5% 20px;
  background: #050508;
}
.footer-content {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.footer-brand span {
  color: var(--secondary);
}
.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
  border: 1px solid var(--glass-border);
}
.social-links a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}
.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out;
}
.fade-in {
  opacity: 0;
  transition: 1s ease-out;
}
.fade-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s ease-out;
}
.fade-left {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease-out;
}
.visible {
  opacity: 1;
  transform: translate(0);
}
.blog-section {
  padding: 150px 5% 100px 5%;
  position: relative;
  z-index: 2;
}
.blog-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}
.blog-header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(108, 92, 231, 0.4);
}
.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}
.blog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-1);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.blog-meta i {
  color: var(--primary);
  margin-right: 5px;
}
.blog-content h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--text-main);
}
.blog-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}
.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.blog-read-more:hover {
  color: var(--secondary);
}
.blog-read-more i {
  transition: transform 0.3s;
}
.blog-read-more:hover i {
  transform: translateX(5px);
}
.article-section {
  padding: 150px 5% 100px 5%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.article-header {
  text-align: center;
  margin-bottom: 50px;
}
.article-badge {
  display: inline-block;
  background: rgba(108, 92, 231, 0.15);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(108, 92, 231, 0.3);
}
.article-header h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.article-header-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.article-header-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-cover {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid var(--glass-border);
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}
.ai-summary-box {
  background: rgba(0, 210, 211, 0.05);
  border-left: 4px solid #00d2d3;
  padding: 30px;
  border-radius: 0 15px 15px 0;
  margin-bottom: 40px;
}
.ai-summary-box h3 {
  margin-top: 0;
  color: #00d2d3;
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-summary-box ul {
  margin: 0;
  padding-left: 20px;
}
.ai-summary-box li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.ai-summary-box li:last-child {
  margin-bottom: 0;
}
.article-body h2 {
  font-size: 2rem;
  color: var(--text-main);
  margin: 50px 0 20px 0;
}
.article-body h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 40px 0 15px 0;
}
.article-body p {
  margin-bottom: 25px;
}
.article-body ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.article-body li {
  margin-bottom: 10px;
}
.article-author-card {
  margin-top: 60px;
  padding: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.author-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 50px;
    padding-top: 120px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-btns {
    justify-content: center;
  }
  .about-container {
    flex-direction: column;
  }
  .stats {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .navbar {
    position: fixed !important;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 12px;
    gap: 8px;
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar .logo {
    font-size: 1.5rem;
  }
  .nav-links {
    position: relative;
    height: auto;
    width: 100%;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    justify-content: center;
    gap: 6px;
  }
  .nav-links li a {
    font-size: 0.8rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    display: inline-block;
  }
  .nav-links li a.btn-primary {
    background: var(--primary);
    color: #fff;
  }
  .hero {
    padding-top: 230px !important;
    min-height: auto !important;
    padding-bottom: 80px;
  }
  .menu-toggle {
    display: none !important;
  }
  .input-group {
    flex-direction: column;
  }
  .contact-box {
    padding: 30px 20px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .main-card {
    width: 100%;
    max-width: 300px;
  }
  .float-card {
    display: none;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
  }
}
@media (pointer: coarse) {
  * {
    cursor: auto !important;
  }
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}
.faq-section {
  padding: 100px 5%;
}
.faq-section .section-header {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(108, 92, 231, 0.3);
}
.faq-item.active {
  background: rgba(108, 92, 231, 0.08);
  border-color: rgba(108, 92, 231, 0.5);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s ease;
  line-height: 1.4;
}
.faq-question:focus {
  outline: none;
}
.faq-question i {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.faq-item.active .faq-question {
  color: var(--primary);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding: 0 28px 22px 28px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 5%;
  }
  .faq-question {
    font-size: 0.92rem;
    padding: 18px 18px;
  }
  .faq-answer p {
    font-size: 0.88rem;
    padding: 0 18px 18px 18px;
  }
}
.partners-section {
  padding: 60px 0;
  overflow: hidden;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 210, 211, 0.03) 0%,
    var(--bg-dark) 70%
  );
  border: none;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}
.marquee-content {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: infiniteScroll 30s linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  padding: 0 30px;
}
.partner-logo img {
  height: 100%;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.6);
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}
.partner-logo img.no-invert {
  filter: opacity(0.85);
  border-radius: 12px;
}
.partner-logo:hover img {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.05);
}
.partner-logo:hover img.no-invert {
  filter: opacity(1);
}
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}
@media (max-width: 768px) {
  .marquee-container::before,
  .marquee-container::after {
    width: 60px;
  }
  .partner-logo {
    min-width: 100px;
    height: 60px;
  }
  .marquee-group {
    gap: 40px;
    padding-right: 40px;
  }
}
.blog-section {
  padding: 140px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.blog-header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: #121212;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-color: rgba(108, 92, 231, 0.2);
}
.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}
.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #6c5ce7, #00d2d3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  display: flex;
  gap: 15px;
  color: #a0a0a0;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 300;
}
.blog-meta i {
  color: #6c5ce7;
  margin-right: 5px;
}
.blog-content h2 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}
.blog-content p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  font-weight: 300;
}
.blog-read-more {
  color: #6c5ce7;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  margin-top: auto;
}
.blog-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding-top: 100px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-header h1 {
    font-size: 2.5rem;
  }
  .blog-img-wrapper {
    height: 200px;
  }
}
.blog-section {
  padding: 140px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.blog-header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: #121212;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-color: rgba(108, 92, 231, 0.2);
}
.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}
.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #6c5ce7, #00d2d3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  display: flex;
  gap: 15px;
  color: #a0a0a0;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 300;
}
.blog-meta i {
  color: #6c5ce7;
  margin-right: 5px;
}
.blog-content h2 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
}
.blog-content p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  font-weight: 300;
}
.blog-read-more {
  color: #6c5ce7;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  margin-top: auto;
}
.blog-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding-top: 100px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-header h1 {
    font-size: 2.5rem;
  }
  .blog-img-wrapper {
    height: 200px;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  background: rgba(10, 10, 10, 0.35) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: none !important;
}
.navbar.scrolled {
  padding: 15px 5%;
  background: rgba(10, 10, 10, 0.65) !important;
}
.navbar-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}
.navbar .logo:hover .navbar-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}
@media (max-width: 768px) {
  .navbar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 25px 5% 25px 5% !important;
    background: rgba(10, 10, 10, 0.6) !important;
    width: 100%;
  }
  .navbar .logo {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
  }
  .navbar-logo {
    height: 90px !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
  .nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 0 !important;
    margin-top: 10px !important;
    max-height: 300px;
    opacity: 1;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      opacity 0.4s ease,
      margin 0.4s ease !important;
  }
  .navbar.hide-links .nav-links {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }
  .menu-toggle {
    display: none !important;
  }
  .hero,
  .blog-section,
  .article-section {
    padding-top: 320px !important;
  }
  .service-page-header {
    padding-top: 420px !important;
  }
  .hero {
    min-height: 100vh !important;
    height: auto !important;
  }
  .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.3 !important;
  }
}
.trusted-partners {
  padding: 60px 5%;
  text-align: center;
  margin: 40px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trusted-title {
  font-size: 1rem;
  color: #888;
  letter-spacing: 4px;
  margin-bottom: 40px;
  font-weight: 600;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
}
.trusted-logos i {
  font-size: 4rem;
  color: #888;
  transition: all 0.3s ease;
  cursor: pointer;
}
.trusted-logos .partner-image-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
  cursor: pointer;
}
.trusted-logos i:hover,
.trusted-logos .partner-image-logo:hover {
  transform: scale(1.1);
}
.trusted-logos i.fa-meta:hover {
  color: #0668e1;
  filter: drop-shadow(0 0 15px rgba(6, 104, 225, 0.4));
}
.trusted-logos i.fa-google:hover {
  color: #db4437;
  filter: drop-shadow(0 0 15px rgba(219, 68, 55, 0.4));
}
.trusted-logos i.fa-cloudflare:hover {
  color: #f38020;
  filter: drop-shadow(0 0 15px rgba(243, 128, 32, 0.4));
}
.trusted-logos .partner-image-logo:hover {
  filter: grayscale(0%) opacity(1)
    drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}
@media (max-width: 768px) {
  .trusted-logos {
    gap: 35px;
  }
  .trusted-logos i {
    font-size: 3rem;
  }
  .trusted-logos .partner-image-logo {
    height: 45px;
  }
  .trusted-logos i.fa-meta {
    color: #0668e1 !important;
    filter: drop-shadow(0 0 15px rgba(6, 104, 225, 0.4)) !important;
  }
  .trusted-logos i.fa-google {
    color: #db4437 !important;
    filter: drop-shadow(0 0 15px rgba(219, 68, 55, 0.4)) !important;
  }
  .trusted-logos i.fa-cloudflare {
    color: #f38020 !important;
    filter: drop-shadow(0 0 15px rgba(243, 128, 32, 0.4)) !important;
  }
  .trusted-logos .partner-image-logo {
    filter: grayscale(0%) opacity(1)
      drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)) !important;
  }
}
@media screen and (min-width: 1025px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    flex-direction: unset !important;
  }
  .service-card {
    width: 100% !important;
  }
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
@media screen and (min-width: 1025px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  .service-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
