@import url('./variables.css');

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: 120px;
}

/* ================= CONTAINER ================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= SECTIONS ================= */
.section {
  padding: var(--section-padding) 0;
}

/* ================= LINKS ================= */
a {
  text-decoration: none;
  color: inherit;
}

/* ================= BUTTONS (UPGRADED) ================= */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;

  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: #fff;

  box-shadow: 0 0 20px rgba(99,102,241,0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(99,102,241,0.7);
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 40px;
  border-radius: 16px;

  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);

  z-index: 1000;
}

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo span {
  background: linear-gradient(90deg, #fff, #a5b4fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--accent);
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* CTA button */
.nav-btn {
  font-size: 14px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ================= HERO (VIDEO FIXED) ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.85)
  );
  z-index: -1;
}

/* HERO CONTENT */
.hero-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-content p {
  color: rgba(255,255,255,0.75);
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #3b82f6, transparent);
  bottom: 80px;
  opacity: 0.3;
}
.hero-content h1 {
  text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.hero-content h1 {
  letter-spacing: -0.5px;
}
.hero-content h1 span {
  filter: drop-shadow(0 0 12px rgba(99,102,241,0.6));
}
/* TAG */
.hero-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* HEADING */
.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
}
/* ================= IMPACT SECTION ================= */

.impact {
  position: relative;
}

/* Header */
.impact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.impact-header h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.impact-header p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.impact-card {
  padding: 30px;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
  text-align: center;
}

/* Hover effect */
.impact-card:hover {
  transform: translateY(-8px) scale(1.02)
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.impact-card {
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #3b82f6, transparent);
  top: 0;
  opacity: 0.2;
}
.impact-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent);
  top: -20%;
  left: -20%;
  opacity: 0;
  transition: 0.4s;
}

.impact-card:hover::before {
  opacity: 1;
}
.impact-card h3 {
  font-size: 36px;
  font-weight: 700;
}
.impact {
  background: linear-gradient(
    to bottom,
    #050505,
    #0a0a0a
  );
}
/* Numbers */
.impact-card h3 {
  font-size: 32px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Title */
.impact-card p {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Subtitle */
.impact-card span {
  font-size: 12px;
  color: var(--text-secondary);
}

/* GRADIENT TEXT */
.hero-content h1 span {
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PARAGRAPH */
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTON GROUP */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  top: 0;
  left: 0;
  transition: 0.4s;
}
.btn {
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}

.btn:hover {
  box-shadow: 0 10px 30px rgba(99,102,241,0.5);
}

.btn:hover::before {
  width: 100%;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
}
.btn {
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 20px rgba(99,102,241,0.4); }
  50% { box-shadow: 0 0 35px rgba(99,102,241,0.7); }
  100% { box-shadow: 0 0 20px rgba(99,102,241,0.4); }
}

/* ================= ANIMATION ================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-indicator {
  margin-top: 40px;
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.6;
}
/* ABOUT HERO */
.about-hero {
  text-align: center;
  margin-top: 0px;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.about-hero p {
   align-items: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ABOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
/* IMAGE FIX */
.about-visual img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
   box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about-visual img {
  transition: 0.4s;
}

.about-visual img:hover {
  transform: scale(1.03);
}
.glass-card {
  height: 300px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

/* TEAM */
.team-grid {
  display: flex;
  gap: 20px;
}

.team-card {
  flex: 1;
  text-align: center;
}

.team-img {
  height: 180px;
  background: #111;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* FOUNDER */
.founder-text {
  max-width: 800px;
  margin: auto;
  color: var(--text-secondary);
  line-height: 1.8;
}
/* TEAM IMAGES */
.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}
.team-card img {
  object-fit: cover;
  object-position: top;
}

/* TEAM GRID FIX */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* FOUNDER TEXT */
.founder-text {
  max-width: 900px;
  margin: auto;
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 15px;
}
.founder-message p {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}
/* FOOTER */
.footer {
  padding: 60px 20px 30px;
  background: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  color: #aaa;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  color: #777;
}
.services-hero {
  text-align: center;
  padding: 120px 20px 60px;
}

.services-hero h1 {
  font-size: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 30px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  border: 1px solid rgba(99,102,241,0.5);
  box-shadow: 0 10px 40px rgba(99,102,241,0.2);
}
.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  opacity: 0.7;
}

.industries {
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 80px;
}

.industry-list span {
  margin: 10px;
  padding: 10px 20px;
  border: 1px solid #333;
  border-radius: 20px;
}

.cta-section {
  padding: 100px 20px;
  text-align: center;
}

.cta-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-section p {
  color: #aaa;
  margin-bottom: 25px;
}

.cta-section .btn {
  display: inline-block;
}
.navbar {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 24px;
  border-radius: 16px;

  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);

  z-index: 1000;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
}

  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);

  border-radius: 16px;
  padding: 14px 30px;

  border: 1px solid rgba(255,255,255,0.08);

body {
  padding-top: 90px;
}
.service-hero {
  padding: 140px 20px 60px;
  text-align: center;
}

.service-details {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}
.service-details h2 {
  margin-top: 40px;
  margin-bottom: 10px;
}

.service-details p {
  margin-bottom: 15px;
}
.service-details ul {
  margin-top: 10px;
  padding-left: 20px;
}

.service-details li {
  margin-bottom: 8px;
}
body {
  padding-top: 90px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer a {
  display: block;
  margin-bottom: 8px;
}
.logo img {
  height: 32px;
  margin-right: 8px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-content h2 {
  margin-top: 60px;
  margin-bottom: 20px;
}

.service-content p,
.service-content ul {
  margin-bottom: 20px;
}
.cta-section {
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0;

}
.navbar {
  max-width: 1200px;
  margin: 20px auto;
}
.service-content p {
  line-height: 1.8;
  color: #bdbdbd;
}

.service-content h2 {
  font-size: 28px;
  font-weight: 600;
}
.footer {
  background: #0a0a0a;
  padding: 80px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p,
.footer-col a {
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  color: #777;
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ===== SERVICE HERO ===== */
.service-hero {
  padding: 120px 20px 80px;
  text-align: center;
}

.service-hero h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
}

.service-hero p {
  font-size: 16px;
  color: #aaa;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}


/* ===== SERVICE CONTENT ===== */
.service-content {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.service-content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #fff;
}

.service-content p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-content ul li {
  color: #aaa;
  margin-bottom: 10px;
}


/* ===== CTA SECTION ===== */
.cta {
  text-align: center;
  padding: 100px 20px;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

.cta p {
  color: #aaa;
  margin-bottom: 25px;
}

.cta button {
  background: linear-gradient(135deg, #5a67ff, #7f8cff);
  border: none;
  padding: 14px 30px;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(90, 103, 255, 0.5);
}
body {
  background-color: #000;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}


/* ===== GLOBAL (IMPORTANT) ===== */
body {
  background-color: #000;
  font-family: 'Segoe UI', sans-serif;
}
//* ================= PROJECT PAGE ================= */

.projects-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.projects-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.projects-hero p {
  color: #aaa;
}

/* GRID */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */

.project-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: #6366f1;
}

/* IMAGE FIX */

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 8px;
}

.project-content p {
  color: #aaa;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= INSIGHTS PAGE ================= */

.insights-hero {
  text-align: center;
  padding: 140px 20px 60px;
}

.insights-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.insights-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: auto;
}

/* GRID */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.insight-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* IMAGE */
.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.insight-content {
  padding: 20px;
}

.insight-content span {
  font-size: 12px;
  color: #6366f1;
}

.insight-content h3 {
  margin: 10px 0;
  font-size: 18px;
}

.insight-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.insight-content a {
  font-size: 14px;
  color: #3b82f6;
}
/* ================= CONTACT PAGE ================= */

/* CONTACT FORM FIX */

/* ================= CONTACT PAGE FIX ================= */

.contact-hero {
  text-align: center;
  margin-top: 140px;
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.contact-hero p {
  color: var(--text-secondary);
}

/* GRID FIX */
.contact-section {
  margin-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info {
  padding-left: 20px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 20px;
}

/* RIGHT FORM FIX */
.contact-form {
  padding: 30px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

/* INPUT FIX */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
}

/* BUTTON FIX */
.contact-form button {
  width: 100%;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= ADMIN PANEL ================= */

.admin-layout {
  display: flex;
}

/* SIDEBAR */
.sidebar {
  width: 220px;
  height: 100vh;
  background: #0a0a0a;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.sidebar h2 {
  margin-bottom: 30px;
}

.sidebar a {
  display: block;
  color: #aaa;
  margin-bottom: 15px;
  font-size: 14px;
}

.sidebar a.active,
.sidebar a:hover {
  color: #fff;
}

/* MAIN */
.admin-main {
  flex: 1;
  padding: 30px;
}

/* HEADER */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* CARDS */
.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.admin-card {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.admin-card h3 {
  font-size: 14px;
  color: #aaa;
}

.admin-card p {
  font-size: 24px;
  margin-top: 10px;
}

/* TABLE */
.admin-table {
  margin-top: 40px;
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-table th {
  color: #aaa;
}
.service-detail-hero {
  padding: 120px 20px;
  text-align: center;
}

.service-detail-hero h1 {
  font-size: 48px;
}

.service-detail-hero p {
  color: #aaa;
  margin-top: 10px;
}

.service-detail-content {
  padding: 80px 20px;
}

.detail-block {
  margin-bottom: 60px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-card {
  padding: 20px;
  border: 1px solid #222;
  border-radius: 12px;
  transition: 0.3s;
}

.detail-card:hover {
  border-color: #4c6ef5;
  transform: translateY(-5px);
}

.detail-list li {
  margin-bottom: 10px;
}
/* CLOUD HERO */
.cloud-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #111, #000);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(76,110,245,0.2), transparent);
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
}

.hero-content p {
  color: #aaa;
  margin: 10px 0;
}

/* SERVICES */
.cloud-services {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding: 60px 20px;
}

.service-card {
  padding: 25px;
  border: 1px solid #222;
  border-radius: 12px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #4c6ef5;
}

/* DETAIL */
.cloud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cloud-grid img {
  width: 100%;
  border-radius: 12px;
}

/* CAPABILITIES */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.cap-card {
  padding: 20px;
  border: 1px solid #222;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.cap-card:hover {
  background: #111;
  transform: scale(1.05);
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 30px;
}

.step {
  padding: 20px;
  border: 1px solid #222;
  text-align: center;
  border-radius: 10px;
}

/* ANIMATION */
.service-card,
.cap-card,
.step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .cloud-services,
  .cloud-grid,
  .cap-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* DEVOPS HERO */
.devops-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(circle at 20% 30%, rgba(59,130,246,0.25), transparent 60%),
    radial-gradient(circle at 80% 40%, rgba(16,185,129,0.25), transparent 60%),
    linear-gradient(to bottom, #020617, #000);

  position: relative;
  overflow: hidden;
}

/* moving pipeline effect */
.devops-hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  animation: pipelineMove 3s linear infinite;
  top: 60%;
}

@keyframes pipelineMove {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.hero-content h1 {
  text-shadow: 0 0 20px rgba(59,130,246,0.6);
}
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59,130,246,0.4);
}
.service-card.featured {
  border-color: #22c55e;
  box-shadow: 0 0 30px rgba(34,197,94,0.4);
}

/* SERVICES */
.devops-services {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding: 60px 20px;
}

/* DETAIL */
.devops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.devops-grid img {
  width: 100%;
  border-radius: 12px;
}
.why-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.why-section img {
  width: 450px;
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(59,130,246,0.4);
}

/* CAPABILITIES */
.devops-capabilities {
  padding: 60px 20px;
}
.cap-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.cap-card:hover {
  background: rgba(59,130,246,0.15);
  border-color: #3b82f6;
  transform: scale(1.05);
}

/* PROCESS */
.devops-process {
  padding: 60px 20px;
}
.process-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.process-step {
  flex: 1;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 10px;
  position: relative;
}

/* connecting line */
.process-step::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #3b82f6;
}

.process-step:last-child::after {
  display: none;
}
.cta {
  text-align: center;
  padding: 100px 20px;

  background:
    radial-gradient(circle, rgba(59,130,246,0.2), transparent),
    linear-gradient(#000, #020617);
}

.cta h2 {
  font-size: 2.5rem;
  text-shadow: 0 0 12px rgba(59,130,246,0.6);
}
.btn {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  box-shadow: 0 0 20px rgba(59,130,246,0.6);
}

.btn:hover {
  box-shadow: 0 0 30px rgba(59,130,246,1);
}

/* REUSE EXISTING */
.cap-grid,
.process-grid,
.service-card,
.cap-card,
.step {
  transition: 0.3s;
}

/* HOVER */
.cap-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: #4c6ef5;
}

/* ANIMATION */
.devops-services .service-card,
.devops-capabilities .cap-card,
.devops-process .step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media(max-width:768px){
  .devops-services,
  .devops-grid {
    grid-template-columns: 1fr;
  }
}
/* AI HERO */
.ai-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(circle at 20% 20%, rgba(139,92,246,0.25), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(59,130,246,0.25), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(236,72,153,0.15), transparent 60%),
    linear-gradient(to bottom, #020617, #000);

  position: relative;
  overflow: hidden;
}

/* floating AI glow */
.ai-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.4), transparent);
  filter: blur(120px);
  animation: aiFloat 6s ease-in-out infinite;
}

@keyframes aiFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content h1 {
  font-size: 3.6rem;
  text-shadow: 0 0 25px rgba(139,92,246,0.7);
}
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #8b5cf6;
  box-shadow: 0 0 35px rgba(139,92,246,0.4);
}
.service-card.featured {
  border-color: #8b5cf6;
  box-shadow: 0 0 30px rgba(139,92,246,0.5);
}
.why-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.why-section img {
  width: 450px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(139,92,246,0.4);
}
/* SERVICES */
.ai-services {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding: 60px 20px;
}

/* DETAIL */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ai-grid img {
  width: 100%;
  border-radius: 12px;
}

/* CAPABILITIES */
.cap-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
}

.cap-card:hover {
  background: rgba(139,92,246,0.15);
  border-color: #8b5cf6;
  transform: scale(1.05);
}

/* PROCESS */
.process-step {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.process-step:hover {
  background: rgba(59,130,246,0.15);
  transform: scale(1.05);
}
.cta {
  text-align: center;
  padding: 100px 20px;

  background:
    radial-gradient(circle, rgba(139,92,246,0.2), transparent),
    linear-gradient(#000, #020617);
}

.cta h2 {
  font-size: 2.5rem;
  text-shadow: 0 0 15px rgba(139,92,246,0.6);
}
.btn {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  box-shadow: 0 0 20px rgba(139,92,246,0.7);
}

.btn:hover {
  box-shadow: 0 0 35px rgba(139,92,246,1);
}

/* HOVER */
.service-card:hover,
.cap-card:hover {
  transform: translateY(-6px);
  border-color: #4c6ef5;
}

/* ANIMATION */
.ai-services .service-card,
.ai-capabilities .cap-card,
.ai-process .step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media(max-width:768px){
  .ai-services,
  .ai-grid {
    grid-template-columns: 1fr;
  }
}
/* DATA HERO */
.data-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #0a1a1f, #000);
  overflow: hidden;
}

/* SERVICES */
.analytics-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.2), transparent 60%),
    radial-gradient(circle at top right, rgba(20,184,166,0.2), transparent 60%),
    linear-gradient(to bottom, #020617, #000);

  position: relative;
}

.analytics-hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.3), transparent);
  filter: blur(140px);
  animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 20px rgba(59,130,246,0.6);
}
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59,130,246,0.25);
}
/* DETAIL */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.data-grid img {
  width: 100%;
  border-radius: 12px;
}

/* CAPABILITIES */
.cap-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.cap-card:hover {
  background: rgba(59,130,246,0.1);
  border-color: #3b82f6;
}

/* PROCESS */
.process-step {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 12px;
  transition: 0.3s;
}

.process-step:hover {
  background: rgba(20,184,166,0.1);
  transform: scale(1.05);
}
.cta {
  text-align: center;
  padding: 100px 20px;

  background:
    radial-gradient(circle, rgba(59,130,246,0.15), transparent),
    linear-gradient(#000, #020617);
}

.cta h2 {
  font-size: 2.4rem;
  text-shadow: 0 0 10px rgba(59,130,246,0.4);
}
.btn {
  background: linear-gradient(135deg, #3b82f6, #14b8a6);
  box-shadow: 0 0 15px rgba(59,130,246,0.6);
}

.btn:hover {
  box-shadow: 0 0 30px rgba(59,130,246,1);
}

/* HOVER */
.service-card:hover,
.cap-card:hover {
  transform: translateY(-6px);
  border-color: #4c6ef5;
}

/* ANIMATION */
.data-services .service-card,
.data-capabilities .cap-card,
.data-process .step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media(max-width:768px){
  .data-services,
  .data-grid {
    grid-template-columns: 1fr;
  }
}
/* CYBER HERO */
.cyber-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.15), transparent 60%),
    radial-gradient(circle at top right, rgba(59,130,246,0.15), transparent 60%),
    linear-gradient(to bottom, #020617, #000);

  position: relative;
}
.cyber-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,0,0,0.25), transparent);
  filter: blur(120px);
  animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-content h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 20px rgba(255,0,0,0.5);
}

/* SERVICES */
.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #ef4444;
  box-shadow: 0 0 25px rgba(239,68,68,0.25);
}
.cap-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.cap-card:hover {
  background: rgba(239,68,68,0.1);
  border-color: #ef4444;
}
.process-step {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 12px;
  transition: 0.3s;
}

.process-step:hover {
  background: rgba(59,130,246,0.08);
  transform: scale(1.05);
}
.cta {
  text-align: center;
  padding: 100px 20px;

  background:
    radial-gradient(circle, rgba(239,68,68,0.15), transparent),
    linear-gradient(#000, #020617);
}

.cta h2 {
  font-size: 2.4rem;
  text-shadow: 0 0 10px rgba(239,68,68,0.4);
}
.btn {
  background: linear-gradient(135deg, #ef4444, #3b82f6);
  box-shadow: 0 0 15px rgba(239,68,68,0.6);
}

.btn:hover {
  box-shadow: 0 0 30px rgba(239,68,68,1);
}

/* DETAIL */
.cyber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cyber-grid img {
  width: 100%;
  border-radius: 12px;
}

/* CAPABILITIES */
.cyber-capabilities {
  padding: 60px 20px;
}

/* PROCESS */
.cyber-process {
  padding: 60px 20px;
}

/* HOVER */
.service-card:hover,
.cap-card:hover {
  transform: translateY(-6px);
  border-color: #ff4d4d;
}

/* ANIMATION */
.cyber-services .service-card,
.cyber-capabilities .cap-card,
.cyber-process .step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cyber-services,
  .cyber-grid {
    grid-template-columns: 1fr;
  }
}
/* CONSULT HERO */
.it-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(circle at top, rgba(59,130,246,0.15), transparent 60%),
    linear-gradient(to bottom, #020617, #000);

  position: relative;
}
.it-hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.3), transparent);
  filter: blur(120px);
  animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 25px rgba(59,130,246,0.4);
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59,130,246,0.25);
}
/* SERVICES */
.consult-services {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding: 60px 20px;
}

/* DETAIL */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.consult-grid img {
  width: 100%;
  border-radius: 12px;
}

/* CAPABILITIES */
.cap-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.cap-card:hover {
  background: rgba(59,130,246,0.08);
  border-color: #3b82f6;
}
.cta {
  text-align: center;
  padding: 100px 20px;

  background:
    radial-gradient(circle, rgba(59,130,246,0.15), transparent),
    linear-gradient(#000, #020617);
}

.cta h2 {
  font-size: 2.4rem;
}
.btn {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  box-shadow: 0 0 15px rgba(59,130,246,0.5);
}

.btn:hover {
  box-shadow: 0 0 30px rgba(59,130,246,0.8);
}
/* PROCESS */
.consult-process {
  padding: 60px 20px;
}

/* HOVER */
.service-card:hover,
.cap-card:hover {
  transform: translateY(-6px);
  border-color: #4c6ef5;
}

/* ANIMATION */
.consult-services .service-card,
.consult-capabilities .cap-card,
.consult-process .step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media(max-width:768px){
  .consult-services,
  .consult-grid {
    grid-template-columns: 1fr;
  }
}
/* BLOCKCHAIN HERO */
.blockchain-hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(circle at top, rgba(59,130,246,0.15), transparent 60%),
    linear-gradient(to bottom, #020617, #000);

  overflow: hidden;
}
/* glow effect */
.blockchain-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.3), transparent);
  filter: blur(120px);
  animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}

.hero-content h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 30px rgba(139,92,246,0.4);
}

/* SERVICES */
.blockchain-services {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding: 60px 20px;
}

/* DETAIL */
.blockchain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.blockchain-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;

  box-shadow: 0 0 40px rgba(139,92,246,0.15);
  transition: 0.4s;
}

.blockchain-img img:hover {
  transform: scale(1.03);
}
.service-card,
.cap-card,
.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;

  transition: all 0.3s ease;
}

.service-card:hover,
.cap-card:hover,
.step:hover {
  transform: translateY(-6px);
  border-color: #8b5cf6;
  box-shadow: 0 0 25px rgba(139,92,246,0.2);
}
.cta {
  text-align: center;
  padding: 100px 20px;

  background:
    radial-gradient(circle, rgba(139,92,246,0.15), transparent),
    linear-gradient(#000, #020617);
}

.cta h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}
.btn {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  box-shadow: 0 0 15px rgba(99,102,241,0.5);
}

.btn:hover {
  box-shadow: 0 0 30px rgba(99,102,241,0.8);
}

.blockchain-grid img {
  width: 100%;
  border-radius: 12px;
}

/* CAPABILITIES */
.blockchain-capabilities {
  padding: 60px 20px;
}

/* PROCESS */
.blockchain-process {
  padding: 60px 20px;
}

/* HOVER */
.service-card:hover,
.cap-card:hover {
  transform: translateY(-6px);
  border-color: #8b5cf6;
}

/* ANIMATION */
.blockchain-services .service-card,
.blockchain-capabilities .cap-card,
.blockchain-process .step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media(max-width:768px){
  .blockchain-services,
  .blockchain-grid {
    grid-template-columns: 1fr;
  }
}
/* SAAS HERO */
.saas-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #0a1a1f, #000);
  overflow: hidden;
}

/* SERVICES */
.saas-services {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding: 60px 20px;
}

/* DETAIL */
.saas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.saas-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(59,130,246,0.15);
  transition: 0.4s;
}

.saas-grid img:hover {
  transform: scale(1.03);
}

/* CAPABILITIES */
.saas-capabilities {
  padding: 60px 20px;
}

/* PROCESS */
.saas-process {
  padding: 60px 20px;
}

/* HOVER */
.service-card:hover,
.cap-card:hover {
  transform: translateY(-6px);
  border-color: #22d3ee;
}

/* ANIMATION */
.saas-services .service-card,
.saas-capabilities .cap-card,
.saas-process .step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

/* RESPONSIVE */
@media(max-width:768px){
  .saas-services,
  .saas-grid {
    grid-template-columns: 1fr;
  }
}
.saas-hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:url("../assets/images/saas.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* animated gradient glow */
.saas-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.3), transparent 70%);
  filter: blur(120px);
  animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}

/* hero content */
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  color: #9ca3af;
  margin-bottom: 25px;
}
.service-card,
.cap-card,
.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.service-card:hover,
.cap-card:hover,
.step:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59,130,246,0.15);
}
.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, transparent, #020617);
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.footer {
  background: #05070d;
  padding: 80px 120px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.footer-col a:hover {
  color: #5f8cff;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}
.digital-page{
    overflow: hidden;
}

/* SERVICES */
/* =========================
   GLOBAL
========================= */

body{
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

.service-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

section{
    position:relative;
    padding:120px 0;
}

/* =========================
   HERO
========================= */

.hero-video-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    text-align:center;
    padding-top:180px;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-3;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.72);
    z-index:-2;
}

.hero-content{
    max-width:1000px;
    margin:auto;
    z-index:5;
    position:relative;
}

.service-tag{
    font-size:18px;
    letter-spacing:2px;
    color:#c7c7c7;
    margin-bottom:30px;
}

.hero-content h1{
    font-size:78px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:30px;
}

.hero-content p{
    max-width:850px;
    margin:auto;
    font-size:24px;
    line-height:1.8;
    color:#cfcfcf;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}

.hero-btn,
.hero-outline-btn{
    padding:18px 38px;
    border-radius:16px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:0.4s ease;
}

.hero-btn{
    background:linear-gradient(135deg,#6c63ff,#8b5cf6);
    color:#fff;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

.hero-outline-btn{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
}

.hero-outline-btn:hover{
    background:rgba(255,255,255,0.08);
}

/* =========================
   FLOATING GRADIENTS
========================= */

.blur-gradient{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    filter:blur(140px);
    z-index:-1;
}

.blur-one{
    background:#6c63ff55;
    top:-100px;
    left:-100px;
}

.blur-two{
    background:#00bfff33;
    bottom:-100px;
    right:-100px;
}

/* =========================
   STATS
========================= */

.stats-section{
    padding:100px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:50px 30px;
    text-align:center;
}

.stat-box h2{
    font-size:60px;
    color:#7c6cff;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    color:#cfcfcf;
}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading{
    text-align:center;
    max-width:1000px;
    margin:auto auto 80px;
}

.section-heading h2{
    font-size:72px;
    line-height:1.2;
    margin-bottom:30px;
}

.section-heading p{
    font-size:24px;
    line-height:1.8;
    color:#bdbdbd;
}

/* =========================
   CARDS
========================= */

.marketing-grid,
.why-grid,
.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.marketing-card,
.why-card,
.process-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border-radius:30px;
    padding:50px 40px;
    transition:0.5s ease;
}

.marketing-card:hover,
.why-card:hover,
.process-card:hover{
    transform:translateY(-10px);
    border-color:#6c63ff;
    box-shadow:0 0 40px rgba(108,99,255,0.2);
}

.marketing-card h3,
.why-card h3,
.process-card h3{
    font-size:42px;
    line-height:1.3;
    margin:20px 0;
}

.marketing-card p,
.why-card p,
.process-card p{
    font-size:20px;
    line-height:1.9;
    color:#bdbdbd;
}

.why-card span,
.process-card span{
    color:#6c63ff;
    font-size:24px;
    font-weight:700;
}

/* =========================
   CLIENT LOGOS
========================= */

.client-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:80px;
}

.client-logos img{
    height:42px;
    opacity:0.7;
    transition:0.4s ease;
}

.client-logos img:hover{
    opacity:1;
    transform:scale(1.08);
}

/* =========================
   TESTIMONIAL
========================= */

.testimonial-card{
    max-width:900px;
    margin:auto;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:70px;
    text-align:center;
}

.testimonial-card p{
    font-size:28px;
    line-height:1.9;
    margin-bottom:30px;
}

/* =========================
   CTA
========================= */

.marketing-cta{
    text-align:center;
}

.marketing-cta h2{
    font-size:80px;
    line-height:1.2;
    margin-bottom:30px;
}

.marketing-cta p{
    font-size:24px;
    color:#cfcfcf;
    margin-bottom:50px;
}

.cta-btn{
    display:inline-block;
    padding:22px 60px;
    border-radius:18px;
    background:linear-gradient(135deg,#6c63ff,#8b5cf6);
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .marketing-grid,
    .why-grid,
    .process-grid,
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:60px;
    }

    .section-heading h2{
        font-size:56px;
    }
}

@media(max-width:768px){

    .service-container{
        padding:0 20px;
    }

    .marketing-grid,
    .why-grid,
    .process-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .marketing-card h3,
    .why-card h3,
    .process-card h3{
        font-size:32px;
    }

    .marketing-cta h2{
        font-size:48px;
    }
}
/* =========================
   JOBS
========================= */

.jobs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    margin-top:80px;
}

.job-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:50px 40px;
    backdrop-filter:blur(20px);
    transition:0.4s ease;
}

.job-card:hover{
    transform:translateY(-10px);
    border-color:#6c63ff;
    box-shadow:0 0 40px rgba(108,99,255,0.2);
}

.job-tags{
    display:flex;
    gap:14px;
    margin-bottom:40px;
}

.job-tags span{
    padding:10px 18px;
    border-radius:50px;
    background:#17153a;
    color:#8b7dff;
    font-size:14px;
    font-weight:600;
}

.job-card h3{
    font-size:48px;
    line-height:1.3;
    margin-bottom:30px;
}

.job-card p{
    font-size:22px;
    line-height:1.8;
    color:#bdbdbd;
    margin-bottom:40px;
}

.apply-btn{
    width:100%;
    border:none;
    padding:20px;
    border-radius:18px;
    background:linear-gradient(135deg,#5b5ef7,#8b5cf6);
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s ease;
}

.apply-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(108,99,255,0.4);
}

/* =========================
   MODAL
========================= */

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.8);
    display:flex;
    align-items:center;
    justify-content:center;
    visibility:hidden;
    opacity:0;
    transition:0.4s ease;
    z-index:9999;
}

.modal.active{
    visibility:visible;
    opacity:1;
}

.modal-content{
    width:90%;
    max-width:700px;
    background:#0c0c0c;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:50px;
    position:relative;
}

.close-btn{
    position:absolute;
    top:20px;
    right:30px;
    font-size:32px;
    cursor:pointer;
}

.apply-form{
    margin-top:40px;
}

.form-group{
    margin-bottom:24px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:16px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:18px;
    border:none;
    border-radius:16px;
    background:#151515;
    color:#fff;
    font-size:16px;
}

.submit-btn{
    width:100%;
    padding:20px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#5b5ef7,#8b5cf6);
    color:#fff;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
}

@media(max-width:992px){

    .jobs-grid{
        grid-template-columns:1fr;
    }

}
.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    display:flex;
    align-items:center;
    justify-content:center;
    visibility:hidden;
    opacity:0;
    transition:0.3s ease;
    z-index:9999;
}

.modal.active{
    visibility:visible;
    opacity:1;
}

.modal-content{
    width:90%;
    max-width:700px;
    background:#0d0d0d;
    border-radius:24px;
    padding:40px;
    position:relative;
}

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
    color:#fff;
}
.jobs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.job-card{
    padding:40px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:24px;
    background:#0d0d0d;
}

.apply-btn{
    width:100%;
    margin-top:30px;
    padding:18px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#5b5bff,#8b5cff);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    display:flex;
    align-items:center;
    justify-content:center;
    visibility:hidden;
    opacity:0;
    transition:0.3s;
    z-index:9999;
}

.modal.active{
    visibility:visible;
    opacity:1;
}

.modal-content{
    width:90%;
    max-width:600px;
    background:#111;
    padding:40px;
    border-radius:24px;
    position:relative;
}

.close-btn{
    position:absolute;
    top:20px;
    right:20px;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

.apply-form input,
.apply-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.1);
    background:#1a1a1a;
    color:#fff;
}

.submit-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#5b5bff,#8b5cff);
    color:#fff;
    font-size:18px;
    cursor:pointer;
}