/* ============================================

   FOUR SECURE - CYBERSECURITY WEBSITE STYLESHEET

   ============================================ */



/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500&display=swap');



/* ============================================

   CSS VARIABLES - COMPLETE BRAND PALETTE

   ============================================ */

:root {

  /* Dark theme (default for most sections) */

  --bg-primary: #020b18;

  --bg-secondary: #040f1f;

  --bg-card: rgba(6, 20, 40, 0.8);

  --bg-glass: rgba(110, 192, 251, 0.04);

  --brand-dark: #2b4d8d;

  --brand-light: #6ec0fb;

  --accent-cyan: #6ec0fb;

  --accent-blue: #2b4d8d;

  --accent-glow: rgba(110, 192, 251, 0.15);

  --accent-glow-strong: rgba(110, 192, 251, 0.3);

  --text-primary: #e8f4fd;

  --text-secondary: #7a9bb5;

  --text-muted: #3d5a73;

  --border: rgba(110, 192, 251, 0.12);

  --border1: #6ec0fb;

  --border-hover: rgba(110, 192, 251, 0.35);

  --shadow-primary: 0 0 30px rgba(110, 192, 251, 0.15);

  --shadow-dark: 0 0 30px rgba(43, 77, 141, 0.2);

  --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.6);

  --shadow-cyan: 0 0 30px rgba(110, 192, 251, 0.1);

  --nav-height: 80px;

  --font-display: 'Poppins', sans-serif;

  --font-mono: 'Roboto', sans-serif;

  --font-body: 'Roboto', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --radius: 12px;

  --radius-sm: 8px;

}



/* ============================================

   LIGHT SECTION VARIABLES

   Applied via class .section-light on any section

   ============================================ */

.section-light {

  --bg-primary: #ffffff;

  --bg-secondary: #f5f9ff;

  --bg-card: rgba(255, 255, 255, 0.95);

  --bg-glass: rgba(110, 192, 251, 0.04);

  --text-primary: #2b4d8d;

  --text-secondary: #334155;

  --text-muted: #64748b;

  --brand-dark: #2b4d8d;

  --brand-light: #6ec0fb;

  --accent-cyan: #6ec0fb;

  --accent-blue: #2b4d8d;

  --border: rgba(43, 77, 141, 0.12);

  --border-hover: rgba(110, 192, 251, 0.3);

  --accent-glow: rgba(110, 192, 251, 0.08);

  --accent-glow-strong: rgba(110, 192, 251, 0.15);

  --shadow-primary: 0 8px 30px rgba(110, 192, 251, 0.15);

  --shadow-dark: 0 8px 30px rgba(43, 77, 141, 0.1);

  --shadow-card: 0 10px 40px rgba(43, 77, 141, 0.06);

  --shadow-cyan: 0 0 30px rgba(110, 192, 251, 0.1);

  background-color: #ffffff;

  color: #2b4d8d;

}



/* ============================================

   RESET & BASE

   ============================================ */

*,

*::before,

*::after {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

  font-size: 16px;

}



/* Enhanced smooth scrolling */

html {

  scroll-padding-top: 80px;

  scroll-behavior: smooth;

}



/* Smooth scrolling for all browsers */

* {

  scroll-behavior: smooth !important;

}



body {

  font-family: var(--font-body);

  background: var(--bg-primary);

  color: var(--text-primary);

  line-height: 1.6;

  overflow-x: hidden;

}



a {

  text-decoration: none;

  color: inherit;

}



ul {

  list-style: none;

}



img {

  max-width: 100%;

  height: auto;

}



/* ============================================

   TYPOGRAPHY

   ============================================ */

h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: var(--font-display);

  font-weight: 700;

  line-height: 1.2;

}



.light-blue {

  color: var(--light-blue);

}



.stat-num .counter {

  color: white !important;

}



.font-regular {

  font-weight: 400;

}



.font-light {

  font-weight: 300;

}



.font-medium {

  font-weight: 500;

}



.font-semibold {

  font-weight: 600;

}



.section-tag {

  font-family: var(--font-mono);

  font-size: 0.75rem;

  font-weight: 500;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--accent-cyan);

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 16px;

}



.section-tag::before {

  content: '';

  width: 24px;

  height: 1px;

  background: var(--accent-cyan);

}



.section-title {

  font-size: clamp(2rem, 4vw, 3rem);

  color: var(--text-primary);

  margin-bottom: 16px;

}



.section-subtitle {

  font-size: 1.05rem;

  color: var(--text-secondary);

  max-width: 540px;

  line-height: 1.8;

}



/* Light section typography overrides */

.section-light .section-tag {

  color: var(--accent-cyan);

}



.section-light .section-tag::before {

  background: linear-gradient(90deg, #2b4d8d, #6ec0fb);

  width: 40px;

}



.section-light .section-title {

  color: #2b4d8d;

}



.section-light .section-subtitle {

  color: #334155;

}



/* ============================================

   UTILITIES

   ============================================ */

.container {

  max-width: 1240px;

  margin: 0 auto;

  padding: 0 24px;

}



.section {

  padding: 100px 0;

}



.grid-2 {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  align-items: center;

}



.grid-3 {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

}



.grid-4 {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

}



.text-center {

  text-align: center;

}



.text-center .section-subtitle {

  margin: 0 auto;

}



.text-center .section-tag {

  justify-content: center;

}



.btn {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 14px 32px;

  border-radius: 6px;

  font-family: var(--font-display);

  font-size: 0.9rem;

  font-weight: 600;

  letter-spacing: 0.05em;

  cursor: pointer;

  border: none;

  transition: var(--transition);

  position: relative;

  overflow: hidden;

}



.btn-primary {

  background: var(--accent-cyan);

  display: flex;

  justify-content: center;

  color: #ffffff;

}



.btn-primary::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-primary:hover::before {

  left: 100%;

}



.btn-primary:hover {

  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);

  transform: translateY(-2px);

  color: #020b18;

}



.btn-outline {

  background: transparent;

  color: var(--accent-cyan);

  border: 1px solid var(--border-hover);

}



.btn-outline:hover {

  background: var(--accent-glow);

  border-color: var(--accent-cyan);

  box-shadow: var(--shadow-cyan);

  transform: translateY(-2px);

}



.btn-ghost {

  background: transparent;

  color: var(--text-secondary);

  border: 1px solid var(--border);

  padding: 10px 24px;

  font-size: 0.85rem;

}



.btn-ghost:hover {

  color: var(--accent-cyan);

  border-color: var(--border-hover);

}



/* Light section button overrides */

.section-light .btn-primary {

  background: #6ec0fb;

  color: #ffffff;

  box-shadow: 0 4px 15px rgba(110, 192, 251, 0.3);

}

/* Light section button overrides */

.btn-primary {

  background: #6ec0fb;

  color: #ffffff;

  box-shadow: 0 4px 15px rgba(110, 192, 251, 0.3);

}



.section-light .btn-primary:hover {

  background: #5ba9e6;

  box-shadow: 0 8px 25px rgba(110, 192, 251, 0.4);

  transform: translateY(-2px);

  color: #ffffff;

}



.section-light .btn-outline {

  color: #2b4d8d;

  border: 1px solid rgba(43, 77, 141, 0.3);

  background: transparent;

}



.section-light .btn-outline:hover {

  background: rgba(110, 192, 251, 0.05);

  border-color: #6ec0fb;

  color: #6ec0fb;

  box-shadow: 0 8px 25px rgba(110, 192, 251, 0.15);

}



.section-light .btn-ghost {

  color: #334155;

  border: 1px solid rgba(43, 77, 141, 0.15);

}



.section-light .btn-ghost:hover {

  color: #6ec0fb;

  border-color: #6ec0fb;

  background: rgba(110, 192, 251, 0.04);

}



/* Reveal animations */

.reveal {

  opacity: 0;

  transform: translateY(30px);

  transition: opacity 0.7s ease, transform 0.7s ease;

}



.reveal.visible {

  opacity: 1;

  transform: translateY(0);

}



.reveal-left {

  opacity: 0;

  transform: translateX(-40px);

  transition: opacity 0.7s ease, transform 0.7s ease;

}



.reveal-right {

  opacity: 0;

  transform: translateX(40px);

  transition: opacity 0.7s ease, transform 0.7s ease;

}



.reveal-left.visible,

.reveal-right.visible {

  opacity: 1;

  transform: translateX(0);

}



.delay-1 {

  transition-delay: 0.1s;

}



.delay-2 {

  transition-delay: 0.2s;

}



.delay-3 {

  transition-delay: 0.3s;

}



.delay-4 {

  transition-delay: 0.4s;

}



.delay-5 {

  transition-delay: 0.5s;

}



/* ============================================

   NAVIGATION — LIGHT THEME (permanent)

   ============================================ */

#navbar {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  height: var(--nav-height);

  z-index: 1000;

  transition: var(--transition);

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(40px);

}



#navbar.scrolled {

  background: rgba(255, 255, 255, 0.95);

  border-bottom: 1px solid rgba(43, 77, 141, 0.1);

  box-shadow: 0 4px 20px rgba(43, 77, 141, 0.04);

}



.nav-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 100%;

  max-width: 1240px;

  margin: 0 auto;

  padding: 0 24px;

  position: relative;

}



.nav-logo1 {

  font-family: var(--font-display);

  font-size: 1.5rem;

  font-weight: 800;

  letter-spacing: -0.02em;

  color: #2b4d8d;

  display: flex;

  align-items: center;

  flex-shrink: 0;

  position: static;

  transform: none;

  z-index: 2;

}



.nav-links {

  display: flex;

  align-items: center;

  gap: 8px;

  position: static;

  transform: none;

  margin: 0 auto;

  padding: 0 20px;

}



.nav-logo span {

  color: var(--accent-cyan);

}



.nav-logo {

  width: 200px !important;

}



.logo-img {

  width: 150px !important;

  height: auto !important;

  object-fit: contain;

}



.logo-icon {

  width: 32px;

  height: 32px;

  border: 2px solid #2b4d8d;

  border-radius: 6px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 8px;

  box-shadow: 0 0 12px rgba(43, 77, 141, 0.3);

}



.logo-icon svg {

  width: 16px;

  height: 16px;

  color: #2b4d8d;

}



.nav-links>li {

  position: relative;

}



.nav-links>li>a {

  font-family: var(--font-display);

  font-size: 0.88rem;

  font-weight: 500;

  color: #334155;

  padding: 8px 16px;

  border-radius: var(--radius-sm);

  transition: var(--transition);

  display: flex;

  align-items: center;

  gap: 6px;

}



.nav-links>li>a:hover {

  color: #6ec0fb;

  background: rgba(110, 192, 251, 0.04);

}



.nav-links>li>a.active {

  color: #2b4d8d;

  background: rgba(43, 77, 141, 0.04);

}



.dropdown-arrow {

  width: 12px;

  height: 12px;

  transition: transform 0.3s;

  color: #2b4d8d;

}



.nav-links li:hover .dropdown-arrow {

  transform: rotate(180deg);

}



/* Dropdown */

.dropdown-menu {

  position: absolute;

  top: calc(100% + 12px);

  left: 50%;

  transform: translateX(-50%) translateY(-8px);

  min-width: 260px;

  background: rgba(255, 255, 255, 0.98);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(43, 77, 141, 0.12);

  border-radius: var(--radius);

  padding: 8px;

  opacity: 0;

  visibility: hidden;

  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  box-shadow: 0 15px 40px rgba(43, 77, 141, 0.08);

}



.nav-links li:hover .dropdown-menu {

  opacity: 1;

  visibility: visible;

  transform: translateX(-50%) translateY(0);

}



.dropdown-menu::before {

  content: '';

  position: absolute;

  top: -6px;

  left: 50%;

  width: 12px;

  height: 12px;

  background: rgba(255, 255, 255, 0.98);

  border-left: 1px solid rgba(43, 77, 141, 0.12);

  border-top: 1px solid rgba(43, 77, 141, 0.12);

  transform: translateX(-50%) rotate(45deg);

}



.dropdown-item {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px 16px;

  border-radius: var(--radius-sm);

  color: #334155;

  font-size: 0.88rem;

  transition: var(--transition);

  cursor: pointer;

}



.dropdown-item:hover {

  background: rgba(110, 192, 251, 0.08);

  color: #2b4d8d;

  padding-left: 20px;

}



.dropdown-icon {

  width: 32px;

  height: 32px;

  background: rgba(43, 77, 141, 0.08);

  border-radius: 6px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  transition: var(--transition);

}



.dropdown-item:hover .dropdown-icon {

  background: rgba(110, 192, 251, 0.15);

}



.dropdown-icon svg {

  width: 15px;

  height: 15px;

  color: #2b4d8d;

}



.dropdown-item:hover .dropdown-icon svg {

  color: #6ec0fb;

}



.nav-cta {

  margin-left: 16px;

}



.nav-actions {

  display: flex;

  align-items: center;

  gap: 12px;

  position: static;

  flex-shrink: 0;

}



.nav-actions .theme-toggle {

  display: none;

  margin-left: 0;

}



.hamburger {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  padding: 8px;

  border: none;

  background: none;

  position: relative;

  z-index: 100;

  order: -1;

}



.hamburger span {

  width: 24px;

  height: 2px;

  background: #2b4d8d;

  border-radius: 2px;

  transition: var(--transition);

}



.hamburger span:nth-child(3) {

  transform: translateY(8px);

}



.hamburger.active span:nth-child(1) {

  transform: rotate(45deg) translate(5px, 5px);

}



.hamburger.active span:nth-child(2) {

  opacity: 0;

}



.hamburger.active span:nth-child(3) {

  transform: rotate(-45deg) translate(5px, -5px);

}



/* Theme Toggle — kept for layout compatibility but can be hidden */

.theme-toggle {

  background: none;

  border: 1px solid rgba(43, 77, 141, 0.15);

  border-radius: 50%;

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: var(--transition);

  margin-right: 0;

  position: relative;

}



.theme-toggle:hover {

  background: rgba(110, 192, 251, 0.1);

  border-color: #6ec0fb;

  transform: scale(1.05);

  box-shadow: 0 0 15px rgba(110, 192, 251, 0.2);

}



.theme-icon {

  width: 18px;

  height: 18px;

  position: absolute;

  transition: all 0.3s ease;

  color: #2b4d8d;

}



.sun-icon {

  display: none;

  opacity: 1;

  transform: rotate(0deg);

}



.moon-icon {

  display: none;

  opacity: 0;

  transform: rotate(-180deg);

}



/* Mobile Nav */

.mobile-nav {

  position: fixed;

  top: var(--nav-height);

  left: 0;

  right: 0;

  background: rgba(255, 255, 255, 0.98);

  backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(43, 77, 141, 0.1);

  padding: 20px 24px;

  transform: translateY(-110%);

  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  z-index: 999;

  max-height: calc(100vh - var(--nav-height));

  overflow-y: auto;

}



.mobile-nav.open {

  transform: translateY(0);

}



.mobile-nav-links {

  display: flex;

  flex-direction: column;

  gap: 4px;

  padding: 20px 0;

  position: relative;

  z-index: 10;

}



.mobile-nav-links a {

  display: block;

  padding: 14px 16px;

  color: #334155;

  font-family: var(--font-display);

  font-size: 1rem;

  border-radius: var(--radius-sm);

  transition: var(--transition);

  text-align: left;

  border: 1px solid transparent;

}



.mobile-nav-links a:hover {

  color: #6ec0fb;

  background: rgba(110, 192, 251, 0.04);

}



.mobile-nav-links .mobile-dropdown-toggle {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 14px 16px;

  color: #334155;

  font-family: var(--font-display);

  font-size: 1rem;

  cursor: pointer;

  border: 1px solid transparent;

  border-radius: var(--radius-sm);

}



.mobile-nav-links .mobile-dropdown-toggle:hover,

.mobile-nav-links .mobile-dropdown-toggle.active {

  color: #6ec0fb;

  background: rgba(110, 192, 251, 0.04);

}



.mobile-nav-links .mobile-dropdown-toggle .dropdown-arrow {

  width: 16px;

  height: 16px;

}



.mobile-nav-links .mobile-dropdown-toggle.active .dropdown-arrow {

  transform: rotate(180deg);

}



.mobile-sub-links {

  padding: 4px 0 4px 20px;

  display: none;

  border-left: 2px solid #6ec0fb;

  margin-left: 16px;

}



.mobile-sub-links.open {

  display: block;

}



.mobile-sub-links a {

  font-size: 0.9rem;

  padding: 12px 16px;

  margin: 2px 0;

  color: #334155;

}



.mobile-sub-links a:hover {

  color: #2b4d8d;

  background: rgba(43, 77, 141, 0.04);

}



.mobile-nav-cta {

  margin-top: 20px;

  padding-top: 20px;

  border-top: 1px solid rgba(43, 77, 141, 0.1);

}



.mobile-nav-cta .btn {

  width: 100%;

  justify-content: center;

  padding: 16px;

  font-size: 1rem;

}



/* ============================================

   HERO SECTION — DARK (permanent)

   ============================================ */

#hero {

  min-height: 100vh;

  display: flex;

  margin-top: -20px;

  align-items: center;

  position: relative;

  overflow: hidden;

  padding-top: var(--nav-height);

  /* background: var(--bg-primary); */

  background-color: none !important;

}



#hero .container {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  position: relative;

}



#hero-canvas {

  position: absolute;

  inset: 0;

  z-index: 0;

}



.hero-grid-overlay {

  position: absolute;

  inset: 0;

  background-image:

    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),

    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;

  z-index: 1;

}



.hero-radial {

  position: absolute;

  inset: 0;

  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 102, 255, 0.08) 0%, transparent 70%);

  z-index: 1;

}



.hero-content {

  position: relative;

  z-index: 2;

  max-width: 100%;

  text-align: center;

  flex: 0 0 60%;

}



@media (min-width: 1200px) {

  .hero-content {

    margin-top: -100px;

  }

}



.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: rgba(0, 212, 255, 0.08);

  border: 1px solid rgba(0, 212, 255, 0.2);

  padding: 8px 16px;

  border-radius: 100px;

  font-family: var(--font-mono);

  font-size: 0.75rem;

  color: var(--accent-cyan);

  letter-spacing: 0.1em;

  text-transform: uppercase;

  margin-bottom: 24px;

}



.hero-badge-dot {

  width: 6px;

  height: 6px;

  background: var(--accent-cyan);

  border-radius: 50%;

  animation: pulse 2s infinite;

}



@keyframes pulse {



  0%,

  100% {

    opacity: 1;

    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);

  }



  50% {

    opacity: 0.7;

    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0);

  }

}



.hero-headline {

  font-size: clamp(2.8rem, 6vw, 5rem);

  font-weight: 800;

  line-height: 1.08;

  margin-bottom: 24px;

  color: var(--text-primary);

  opacity: 0;

  transform: translateY(30px);

  animation: heroHeadlineFadeIn 1s ease-out forwards;

}



@keyframes heroHeadlineFadeIn {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.hero-headline .font-light {

  display: inline-block;

  animation: heroTextSlideIn 0.8s ease-out 0.2s backwards;

}



.hero-headline .font-regular {

  display: inline-block;

  animation: heroTextSlideIn 0.8s ease-out 0.4s backwards;

}



.hero-headline .line-highlight {

  color: var(--accent-cyan);

  position: relative;

  display: inline-block;

  animation: heroTextSlideIn 0.8s ease-out 0.6s backwards, heroHighlightGlow 2s ease-in-out infinite;

}



@keyframes heroTextSlideIn {

  from {

    opacity: 0;

    transform: translateX(-20px);

  }



  to {

    opacity: 1;

    transform: translateX(0);

  }

}



@keyframes heroHighlightGlow {



  0%,

  100% {

    text-shadow: 0 0 20px rgba(110, 192, 251, 0.3);

  }



  50% {

    text-shadow: 0 0 30px rgba(110, 192, 251, 0.6);

  }

}



.hero-typing-wrapper {

  height: 50px;

  font-size: clamp(1.5rem, 3vw, 2.2rem);

  font-family: var(--font-mono);

  color: white;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 4px;

  opacity: 0;

  margin-top: -30px;

  transform: translateY(20px);

  animation: heroTypingFadeIn 1s ease-out 0.8s forwards;

}



@keyframes heroTypingFadeIn {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.typing-cursor {

  width: 2px;

  height: 1.2em;

  background: var(--accent-cyan);

  animation: typingCursorBlink 0.8s infinite, typingCursorGlow 2s ease-in-out infinite;

  margin-left: 2px;

}



@keyframes typingCursorBlink {



  0%,

  50% {

    opacity: 1;

  }



  51%,

  100% {

    opacity: 0;

  }

}



@keyframes typingCursorGlow {



  0%,

  100% {

    box-shadow: 0 0 5px rgba(110, 192, 251, 0.5);

  }



  50% {

    box-shadow: 0 0 15px rgba(110, 192, 251, 0.8);

  }

}



@keyframes blink {



  0%,

  100% {

    opacity: 1;

  }



  50% {

    opacity: 0;

  }

}



.hero-desc {

  font-size: 1.1rem;

  color: var(--text-secondary);

  max-width: 560px;

  line-height: 1.8;

  margin-bottom: 40px;

}



.hero-actions {

  display: flex;

  justify-content: center;

  gap: 16px;

  flex-wrap: wrap;

  opacity: 0;

  transform: translateY(20px);

  animation: heroActionsFadeIn 1s ease-out 1s forwards;

}



@keyframes heroActionsFadeIn {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.hero-actions .btn {

  animation: heroButtonSlideIn 0.6s ease-out forwards;

  opacity: 0;

}



.hero-actions .btn-primary {

  animation-delay: 1.2s;

}



.hero-actions .btn-outline {

  animation-delay: 1.4s;

  text-align: center;

  justify-content: center;

}



@keyframes heroButtonSlideIn {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.hero-stats {

  display: flex;

  gap: 40px;

  margin-top: 60px;

  padding-top: 40px;

  border-top: 1px solid var(--text-primary);

  opacity: 0;

  transform: translateY(20px);

  animation: heroStatsFadeIn 1s ease-out 1.6s forwards;

}



@keyframes heroStatsFadeIn {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.hero-stat-item {

  opacity: 0;

  animation: heroStatSlideIn 0.6s ease-out forwards;

  display: flex;

  flex-direction: column;

}



.hero-stat-item:nth-child(1) {

  animation-delay: 1.8s;

}



.hero-stat-item:nth-child(2) {

  animation-delay: 2.0s;

}



.hero-stat-item:nth-child(3) {

  animation-delay: 2.2s;

}



@keyframes heroStatSlideIn {

  from {

    opacity: 0;

    transform: translateY(15px);

  }



  to {

    opacity: 1;

    transform: translateY(0);

  }

}



.hero-stat-num {

  font-family: var(--font-display);

  font-size: 2rem;

  font-weight: 800;

  color: white;

  line-height: 1;

}



.hero-stat-num span {

  color: white;

}



.hero-stat-num span.sanp {

  color: var(--accent-cyan);

}



.hero-stat-num .suffix {

  color: var(--accent-cyan);

}



.hero-stat-label {

  font-family: var(--font-mono);

  font-size: 0.72rem;

  color: white;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  margin-top: 4px;

}



.hero-visual {

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 40%;

  height: 400px;

  z-index: 3;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  pointer-events: none;

}



#hero video {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  z-index: -1;

  opacity: 0.3;

  margin: 0;

  padding: 0;

}



#hero {

  position: relative;

  overflow: hidden;

}



@media (max-width: 768px) {

  #hero video {

    opacity: 0.2;

  }

}



@media (max-width: 480px) {

  #hero video {

    opacity: 0.15;

  }

}



.cyber-ring {

  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(0, 212, 255, 0.15);

  animation: rotate-ring 20s linear infinite;

}



.cyber-ring:nth-child(1) {

  width: 100%;

  height: 100%;

  animation-duration: 25s;

}



.cyber-ring:nth-child(2) {

  width: 75%;

  height: 75%;

  top: 12.5%;

  left: 12.5%;

  animation-duration: 18s;

  animation-direction: reverse;

}



.cyber-ring:nth-child(3) {

  width: 50%;

  height: 50%;

  top: 25%;

  left: 25%;

  animation-duration: 12s;

}



.cyber-ring::before {

  content: '';

  position: absolute;

  width: 8px;

  height: 8px;

  background: var(--accent-cyan);

  border-radius: 50%;

  top: -4px;

  left: 50%;

  box-shadow: 0 0 12px var(--accent-cyan);

}



@keyframes rotate-ring {

  from {

    transform: rotate(0deg);

  }



  to {

    transform: rotate(360deg);

  }

}



.cyber-center {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 80px;

  height: 80px;

  background: rgba(0, 212, 255, 0.08);

  border: 1px solid rgba(0, 212, 255, 0.3);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}



.cyber-center svg {

  width: 48px;

  height: 48px;

  color: var(--accent-cyan);

}



/* ============================================

   WHY CHOOSE US — LIGHT (permanent)

   ============================================ */

#why-us {

  background: #ffffff;

  position: relative;

}



#why-us .section-tag {

  color: var(--accent-cyan);

}



#why-us .section-tag::before {

  background: linear-gradient(90deg, #2b4d8d, #6ec0fb);

  width: 40px;

}



#why-us .section-title {

  color: #2b4d8d;

}



#why-us .section-subtitle {

  color: #334155;

}



.feature-card {

  background: rgba(255, 255, 255, 0.95);

  border: 1px solid rgba(43, 77, 141, 0.1);

  border-radius: var(--radius);

  padding: 36px 32px;

  transition: var(--transition);

  position: relative;

  overflow: hidden;

  box-shadow: 0 4px 20px rgba(43, 77, 141, 0.03);

}



.feature-card::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 1px;

  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);

  opacity: 0;

  transition: opacity 0.3s;

}



.feature-card:hover::before {

  opacity: 1;

}



.feature-card:hover {

  border-color: rgba(110, 192, 251, 0.3);

  box-shadow: 0 15px 40px rgba(110, 192, 251, 0.1);

  transform: translateY(-6px);

}



.feature-icon {

  width: 56px;

  height: 56px;

  background: linear-gradient(135deg, rgba(43, 77, 141, 0.08), rgba(110, 192, 251, 0.08));

  border: 1px solid rgba(43, 77, 141, 0.15);

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  transition: var(--transition);

}



.feature-card:hover .feature-icon {

  background: linear-gradient(135deg, rgba(110, 192, 251, 0.15), rgba(43, 77, 141, 0.1));

}



.feature-icon svg {

  width: 24px;

  height: 24px;

  color: #2b4d8d;

}



.feature-card:hover .feature-icon svg {

  color: #6ec0fb;

}



.feature-card h3 {

  font-size: 1.15rem;

  margin-bottom: 12px;

  color: #2b4d8d;

}



.feature-card p {

  color: #334155;

  font-size: 0.9rem;

  line-height: 1.7;

}



/* Why Us layout */

.why-us-content {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

}



.why-us-text {

  max-width: 500px;

}



.why-us-features {

  margin: 40px 0;

}



.why-feature {

  display: flex;

  align-items: flex-start;

  gap: 20px;

  margin-bottom: 30px;

}



.why-feature-icon {

  width: 50px;

  height: 50px;

  background: rgba(110, 192, 251, 0.1);

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  color: var(--accent-cyan);

}



.why-feature-content h3 {

  font-size: 1.2rem;

  font-weight: 600;

  margin-bottom: 8px;

  color: #2b4d8d;

}



.why-feature-content p {

  color: #334155;

  line-height: 1.6;

  margin: 0;

}



.why-us-cta {

  margin-top: 30px;

}



.why-us-image {

  position: relative;

  overflow: hidden;

  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

}



.why-us-image img {

  width: 100%;

  height: auto;

  display: block;

  transition: transform 0.3s ease;

}



.why-us-image:hover img {

  transform: scale(1.05);

}



/* ============================================

   SERVICES PREVIEW — DARK (permanent)

   ============================================ */

#services-preview {

  background: var(--bg-secondary);

  position: relative;

}



#services-preview::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 102, 255, 0.05) 0%, transparent 60%);

  pointer-events: none;

}



.services-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

}



.service-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 32px 28px;

  transition: var(--transition);

  position: relative;

  overflow: hidden;

  cursor: pointer;

}



.service-card::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 2px;

  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));

  transform: scaleX(0);

  transition: transform 0.3s ease;

}



.service-card:hover::after {

  transform: scaleX(1);

}



.service-card:hover {

  border-color: var(--border-hover);

  transform: translateY(-8px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.08);

}



.service-card-icon {

  width: 48px;

  height: 48px;

  margin-bottom: 20px;

  color: var(--accent-cyan);

}



.service-card h3 {

  font-size: 1.1rem;

  margin-bottom: 10px;

}



.service-card p {

  font-size: 0.87rem;

  color: var(--text-secondary);

  line-height: 1.7;

  margin-bottom: 20px;

}



.service-link {

  font-family: var(--font-mono);

  font-size: 0.78rem;

  color: var(--accent-cyan);

  letter-spacing: 0.08em;

  display: flex;

  align-items: center;

  gap: 6px;

  transition: var(--transition);

}



.service-link svg {

  width: 14px;

  height: 14px;

  transition: transform 0.3s;

}



.service-card:hover .service-link svg {

  transform: translateX(4px);

}



.service-card-link,

.blog-card-link {

  text-decoration: none;

  color: inherit;

  display: block;

  transition: transform 0.3s ease;

}



.service-card-link:hover,

.blog-card-link:hover {

  transform: translateY(-5px);

}



.service-card-link .service-card,

.blog-card-link .blog-card {

  height: 100%;

  cursor: pointer;

}



/* ============================================

   STATS SECTION — DARK (permanent)

   ============================================ */

#stats {

  padding: 80px 0;

  background: var(--bg-primary);

  position: relative;

  overflow: hidden;

}



#stats::before {

  content: '';

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 800px;

  height: 300px;

  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.04) 0%, transparent 70%);

}



.stats-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 0;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  overflow: hidden;

}



.stat-item {

  padding: 48px 32px;

  text-align: center;

  position: relative;

  transition: var(--transition);

}



.stat-item+.stat-item {

  border-left: 1px solid var(--border);

}



.stat-item:hover {

  background: var(--bg-glass);

}



.stat-num {

  font-family: var(--font-display);

  font-size: 3rem;

  font-weight: 800;

  color: var(--text-primary);

  line-height: 1;

  display: flex;

  align-items: flex-start;

  justify-content: center;

  gap: 4px;

}



.stat-num .suffix {

  font-size: 1.8rem;

  color: var(--accent-cyan);

  margin-top: 4px;

}



.stat-label {

  font-family: var(--font-mono);

  font-size: 0.75rem;

  color: white;

  text-transform: uppercase;

  letter-spacing: 0.15em;

  margin-top: 10px;

}



/* ============================================

   TESTIMONIALS / PARTNERS — LIGHT (permanent)

   ============================================ */

#testimonials {

  background: #f5f9ff;

  overflow: hidden;

}



.testimonials-full-width {

  width: 100%;

  max-width: 100%;

  padding: 0;

}



.testimonials-full-width .testimonials-logo-strip {

  width: 100%;

  padding: 20px 0 30px;

  margin: 0;

  overflow: visible;

}



.testimonials-logo-strip {

  width: 100%;

  padding: 20px 0 30px;

  margin: 0 auto;

  overflow: visible;

}



.logo-strip-horizontal {

  display: flex;

  flex-direction: row;

  gap: 32px;

  justify-content: space-between;

  align-items: center;

  flex-wrap: nowrap;

  width: 100%;

  padding: 0 20px;

}



.logo-strip-item {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 12px;

  flex: 1;

  max-width: none;

  height: 160px;

  padding: 20px 15px;

  border-radius: 12px;

  background: #ffffff;

  box-shadow: 0 4px 15px rgba(43, 77, 141, 0.08);

  transition: all 0.3s ease;

}



.logo-strip-item:hover {

  transform: translateY(-3px);

  box-shadow: 0 6px 20px rgba(43, 77, 141, 0.12);

  background: #ffffff;

}



.logo-circle-wrapper {

  width: 150px;

  height: 150px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

}



.company-logo-circle {

  object-fit: contain;

  opacity: 1;

}



.company-name-horizontal {

  font-family: var(--font-display);

  font-size: 0.85rem;

  font-weight: 500;

  color: #64748b;

  text-align: center;

  letter-spacing: 0.02em;

}



.testimonials-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 24px;

  margin-top: 32px;

}



.testimonial-card {

  width: 100%;

  height: fit-content;

}



.testimonial-inner {

  max-width: 800px;

  margin: 0 auto;

  background: #ffffff;

  border: 1px solid rgba(43, 77, 141, 0.1);

  border-radius: 20px;

  padding: 0;

  position: relative;

  box-shadow: 0 8px 32px rgba(43, 77, 141, 0.06);

  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.testimonial-inner:hover {

  transform: translateY(-4px);

  box-shadow: 0 12px 40px rgba(43, 77, 141, 0.1);

}



.testimonial-inner::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 4px;

  background: linear-gradient(90deg, #2b4d8d, #6ec0fb);

}



.testimonial-header {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  gap: 12px;

  margin: 0;

  padding: 24px;

  background: #f5f9ff;

  border-bottom: 1px solid rgba(43, 77, 141, 0.08);

}



.company-logo-placeholder {

  width: 80px;

  height: 80px;

  border-radius: 20px;

  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));

  border: none;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 4px 16px rgba(110, 192, 251, 0.25);

  position: relative;

  overflow: hidden;

  margin: 0 auto;

}



.company-logo-placeholder::after {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);

}



.logo-placeholder-text {

  font-weight: 700;

  font-size: 1.4rem;

  color: white;

  font-family: var(--font-display);

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

}



.company-name {

  font-weight: 700;

  font-size: 1.1rem;

  color: var(--accent-cyan);

  font-family: var(--font-display);

  text-transform: uppercase;

  letter-spacing: 1px;

  margin: 0;

}



.author-name {

  font-weight: 600;

  font-size: 1rem;

  color: #2b4d8d;

  margin: 0;

}



.author-title {

  font-weight: 500;

  font-size: 0.9rem;

  color: #64748b;

  margin: 0;

}



.testimonial-text {

  font-size: 1rem;

  color: #334155;

  line-height: 1.7;

  font-weight: 400;

  margin: 0;

  position: relative;

  z-index: 1;

  font-style: italic;

  padding: 24px;

  text-align: center;

}



.testimonial-text::before {

  content: '"';

  position: absolute;

  top: 8px;

  left: 24px;

  font-size: 4rem;

  font-family: var(--font-display);

  color: var(--accent-cyan);

  opacity: 0.15;

  line-height: 1;

}



.testimonial-text::after {

  content: '"';

  position: absolute;

  bottom: -16px;

  right: 24px;

  font-size: 4rem;

  font-family: var(--font-display);

  color: var(--accent-cyan);

  opacity: 0.15;

  line-height: 1;

}



.author-avatar {

  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: linear-gradient(135deg, #2b4d8d, #6ec0fb);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-display);

  font-weight: 700;

  font-size: 1.1rem;

  color: #ffffff;

}



.slider-controls {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 16px;

  margin-top: 36px;

}



.slider-btn {

  width: 44px;

  height: 44px;

  border: 1px solid rgba(43, 77, 141, 0.15);

  border-radius: 50%;

  background: transparent;

  color: #334155;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: var(--transition);

}



.slider-btn:hover {

  border-color: #6ec0fb;

  color: #6ec0fb;

  background: rgba(110, 192, 251, 0.04);

}



.slider-btn svg {

  width: 18px;

  height: 18px;

}



.slider-dots {

  display: flex;

  gap: 8px;

  align-items: center;

}



.slider-dot {

  width: 6px;

  height: 6px;

  border-radius: 3px;

  background: #cbd5e1;

  cursor: pointer;

  transition: var(--transition);

}



.slider-dot.active {

  background: #6ec0fb;

  width: 24px;

  box-shadow: 0 0 8px rgba(110, 192, 251, 0.5);

}



/* ============================================

   BLOG PREVIEW — DARK (permanent)

   ============================================ */

#blog-preview {

  background: var(--bg-primary);

  margin-top: -100px;

}



.blog-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  overflow: hidden;

  transition: var(--transition);

}



.blog-card:hover {

  border-color: var(--border-hover);

  transform: translateY(-6px);

  box-shadow: var(--shadow-card);

}



.blog-img {

  height: 200px;

  overflow: hidden;

  position: relative;

  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.05));

}



.blog-img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease, filter 0.3s ease;

}



.blog-card:hover .blog-img img {

  transform: scale(1.1);

  filter: brightness(1.1);

}



.blog-img-placeholder {

  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}



.blog-img-placeholder svg {

  width: 48px;

  height: 48px;

  color: rgba(0, 212, 255, 0.2);

}



.blog-category {

  position: absolute;

  top: 16px;

  left: 16px;

  background: rgba(0, 212, 255, 0.15);

  border: 1px solid rgba(0, 212, 255, 0.3);

  color: white;

  font-family: var(--font-mono);

  font-size: 0.7rem;

  letter-spacing: 0.1em;

  padding: 4px 10px;

  border-radius: 100px;

  text-transform: uppercase;

  transition: all 0.3s ease;

  z-index: 1;

}



.blog-card:hover .blog-category {

  background: rgba(0, 212, 255, 0.25);

  border-color: var(--accent-cyan);

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);

}



.blog-body {

  padding: 24px;

}



.blog-date {

  font-family: var(--font-mono);

  font-size: 0.75rem;

  color: var(--text-muted);

  margin-bottom: 10px;

}



.blog-card h3 {

  font-size: 1rem;

  color: var(--text-primary);

  margin-bottom: 10px;

  line-height: 1.5;

  transition: color 0.3s;

}



.blog-card:hover h3 {

  color: var(--accent-cyan);

}



.blog-card p {

  font-size: 0.85rem;

  color: var(--text-secondary);

  line-height: 1.7;

  margin-bottom: 20px;

  transition: color 0.3s ease;

}



.blog-card:hover p {

  color: var(--text-primary);

}



.blog-card .btn-ghost {

  transition: all 0.3s ease;

  position: relative;

  overflow: hidden;

}



.blog-card:hover .btn-ghost {

  background: rgba(0, 212, 255, 0.1);

  border-color: var(--accent-cyan);

  color: var(--accent-cyan);

  transform: translateX(4px);

}



/* ============================================

   CTA SECTION — DARK (permanent)

   ============================================ */

#cta-section {

  /* background:  #ffffff  ; */

  background: linear-gradient(to bottom, #ffffff 30%, var(--accent-cyan) 100%);



  padding: 50px 0;

  position: relative;

  overflow: hidden;

}



#cta-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0, 102, 255, 0.06) 0%, transparent 70%);

}



.cta-box {

  /* background: rgba(6, 20, 40, 0.7); */

  background: var(--accent-blue);



  backdrop-filter: blur(20px);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 50px 60px;

  text-align: center;

  position: relative;

  overflow: hidden;

}



.cta-box::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 1px;

  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);

}



.cta-box h2 {

  font-size: clamp(2rem, 4vw, 3rem);

  margin-bottom: 16px;

  color: var(--text-primary);

}



.cta-box p {

  color: var(--text-secondary);

  max-width: 500px;

  margin: 0 auto 36px;

  line-height: 1.8;

}



.cta-actions {

  display: flex;

  gap: 16px;

  justify-content: center;

  flex-wrap: wrap;

}



/* ============================================

   CONTACT FORM SECTION — LIGHT (permanent)

   ============================================ */

#contact-form-section {

  padding: 50px 0;

  background: #010810;

  position: relative;

}



#contact-form-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(110, 192, 251, 0.05) 0%, transparent 60%);

  pointer-events: none;

}



#contact-form-section .section-tag {

  color: var(--accent-cyan);

}



#contact-form-section .section-title {

  color: #2b4d8d;

}



#contact-form-section .section-subtitle {

  color: #334155;

}



.contact-form-content p {

  display: none;

}

.contact-form-content h1 {

  margin-bottom: 20px;



  text-align: center;

}

.contact-form-wrap {

  max-width: 800px;

  margin: 0 auto;

  background: #ffffff;

  backdrop-filter: blur(20px);

  border: 1px solid rgba(43, 77, 141, 0.1);

  border-radius: 20px;

  padding: 48px;

  position: relative;

  z-index: 1;

  box-shadow: 0 10px 30px rgba(43, 77, 141, 0.04);

}



/* Make contact form smaller in about.html */

.contact-single-wrap {

  max-width: 800px !important;

  padding: 40px !important;

  margin: 0 auto;

  position: relative;

}



/* Modern Form Styling */

.form-header {

  text-align: center;

  margin-bottom: 40px;

}



.form-header h1 {

  font-size: 2rem;

  font-weight: 700;

  color: var(--text-primary);

  margin-bottom: 12px;

}



.form-header p {

  color: var(--text-secondary);

  font-size: 1rem;

  line-height: 1.6;

}



.form-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin-bottom: 20px;

}



.form-group {

  position: relative;

}



.form-label {

  display: block;

  font-family: var(--font-display);

  font-size: 0.9rem;

  font-weight: 500;

  color: var(--text-primary);

  margin-bottom: 8px;

}



.input-wrapper {

  position: relative;

}



/* Global icon animation for all input fields (except contact.html and index.html) */

.form-input {

  width: 100%;

  padding: 12px 16px 12px 45px;

  border: 2px solid var(--border);

  border-radius: 12px;

  font-size: 1rem;

  font-family: var(--font-body);

  background: var(--bg-primary);

  color: var(--text-primary);

  transition: var(--transition);

  outline: none;

}



.form-input:focus {

  border-color: var(--accent-cyan);

  box-shadow: 0 0 0 3px rgba(110, 192, 251, 0.1);

}



.input-icon {

  position: absolute;

  left: 16px;

  top: 50%;

  transform: translateY(-50%);

  width: 20px;

  height: 20px;

  color: var(--accent-cyan);

  opacity: 0.6;

  transition: all 0.3s ease;

  pointer-events: none;

  z-index: 1;

}



.form-input:focus+.input-icon {

  opacity: 1;

  left: calc(100% - 36px);

}



/* Icon stays on right after first focus */

.input-icon.slid-to-right {

  left: calc(100% - 36px);

  opacity: 0.6;

}



.textarea-wrapper {

  position: relative;

}



/* Global textarea animation for all fields (except contact.html and index.html) */

.form-textarea {

  width: 100%;

  padding: 12px 16px 12px 45px;

  border: 2px solid var(--border);

  border-radius: 12px;

  font-size: 1rem;

  font-family: var(--font-body);

  background: var(--bg-primary);

  color: var(--text-primary);

  transition: var(--transition);

  outline: none;

  resize: vertical;

  min-height: 120px;

}



.form-textarea:focus {

  border-color: var(--accent-cyan);

  box-shadow: 0 0 0 3px rgba(110, 192, 251, 0.1);

}



.textarea-icon {

  position: absolute;

  left: 16px;

  top: 16px;

  width: 20px;

  height: 20px;

  color: var(--accent-cyan);

  opacity: 0.6;

  transition: all 0.3s ease;

  pointer-events: none;

  z-index: 1;

}



.form-textarea:focus+.textarea-icon {

  opacity: 1;

  left: calc(100% - 36px);

}



/* Textarea icon stays on right after first focus */

.textarea-icon.slid-to-right {

  left: calc(100% - 36px);

  opacity: 0.6;

}



/* Override for contact.html - disable icon animation */

body.contact-page .form-input:focus+.input-icon,

body.contact-page .form-textarea:focus+.textarea-icon {

  left: 16px;

}



/* Override for index.html - disable icon animation */

body.index-page .form-input:focus+.input-icon,

body.index-page .form-textarea:focus+.textarea-icon {

  left: 16px;

}



.submit-btn {

  width: 100%;

  padding: 16px 24px;

  background: linear-gradient(135deg, var(--accent-cyan), #5ba9e6);

  color: white;

  border: none;

  border-radius: 12px;

  font-size: 1rem;

  font-weight: 600;

  font-family: var(--font-display);

  cursor: pointer;

  transition: var(--transition);

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  position: relative;

  overflow: hidden;

}



.submit-btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 25px rgba(110, 192, 251, 0.4);

}



.submit-btn:active {

  transform: translateY(0);

}



.btn-icon {

  width: 18px;

  height: 18px;

  transition: var(--transition);

}



.submit-btn:hover .btn-icon {

  transform: translateX(3px);

}



.form-success {

  display: none;

  align-items: center;

  gap: 12px;

  padding: 16px;

  background: rgba(110, 192, 251, 0.1);

  border: 1px solid var(--accent-cyan);

  border-radius: 12px;

  color: var(--accent-cyan);

  font-size: 0.9rem;

  margin-top: 20px;

  text-align: center;

}



.form-success svg {

  width: 20px;

  height: 20px;

  flex-shrink: 0;

}



.form-error {

  display: block;

  color: #ff4d4d;

  font-size: 0.75rem;

  margin-top: 4px;

  font-family: var(--font-mono);

}



.contact-form-content {

  width: 100%;

}



.contact-image-content {

  display: none;

}



.contact-form-wrap::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 1px;

  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);

}



.contact-form-wrap h2 {

  font-size: 1.5rem;

  margin-bottom: 8px;

  color: #2b4d8d;

}



.contact-form-wrap p {

  color: #334155;

  font-size: 0.9rem;

  margin-bottom: 32px;

}



.form-group {

  margin-bottom: 20px;

}



.form-label {

  display: block;

  font-family: var(--font-display);

  font-size: 0.85rem;

  font-weight: 500;

  color: var(--accent-cyan);

  margin-bottom: 8px;

}

.form-label1 {

  display: block;

  font-family: var(--font-display);

  font-size: 0.85rem;

  font-weight: 500;

  color: var(--accent-blue);

  margin-bottom: 8px;

}



.form-input,

.form-textarea {

  width: 100%;

  background: #010810;

  border: 1px solid var(--accent-cyan);

  border-radius: var(--radius-sm);

  padding: 14px 16px;

  font-family: var(--font-body);

  font-size: 0.9rem;



  color: #ffffff;

  transition: var(--transition);

}

.form-input1,

.form-textarea1 {

  width: 100%;

  background: #ffffff;

  border: 1px solid var(--accent-cyan);

  border-radius: var(--radius-sm);

  padding: 14px 16px;

  font-family: var(--font-body);

  font-size: 0.9rem;



  color: var(--accent-blue);

  transition: var(--transition);

}



.form-input:focus,

.form-textarea:focus {

  border-color: #6ec0fb;

  box-shadow: 0 0 0 1px var(--accent-cyan);

  outline: none;

  background: #010810;

}

.form-input1:focus,

.form-textarea1:focus {

  border-color: #6ec0fb;

  box-shadow: 0 0 0 1px var(--accent-cyan);

  outline: none;

  color: var(--accent-blue);

  background: #ffffff;

}



.form-input.error {

  border-color: #ff4d4d;

}



.form-input::placeholder,

.form-textarea::placeholder {

  color: #94a3b8;

}



.form-textarea {

  min-height: 140px;

  resize: vertical;

}



/* Custom Form Dropdown */

.custom-dropdown {

  position: relative;

  width: 100%;

}



.dropdown-trigger {

  width: 100%;

  background: #f8fafc;

  border: 1px solid rgba(43, 77, 141, 0.15);

  border-radius: var(--radius);

  padding: 12px 16px;

  color: #2b4d8d;

  font-size: 0.95rem;

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  position: relative;

}



.dropdown-trigger:hover {

  background: #ffffff;

  border-color: rgba(110, 192, 251, 0.3);

  transform: translateY(-1px);

  box-shadow: 0 4px 12px rgba(110, 192, 251, 0.1);

}



.dropdown-trigger:focus,

.dropdown-trigger.active {

  border-color: #6ec0fb;

  box-shadow: 0 0 0 3px rgba(110, 192, 251, 0.15);

  outline: none;

  background: #ffffff;

  transform: translateY(-1px);

}



.dropdown-selected {

  flex: 1;

  text-align: left;

}



.dropdown-trigger .dropdown-arrow {

  width: 16px;

  height: 16px;

  transition: transform 0.3s;

  color: #2b4d8d;

  flex-shrink: 0;

}



.dropdown-trigger.active .dropdown-arrow {

  transform: rotate(180deg);

}



.custom-dropdown .dropdown-menu {

  position: absolute;

  top: calc(100% + 8px);

  left: 0;

  right: 0;

  min-width: 100%;

  max-height: 300px;

  overflow-y: auto;

  background: rgba(255, 255, 255, 0.97);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(43, 77, 141, 0.12);

  border-radius: var(--radius);

  padding: 8px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-8px);

  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  box-shadow: 0 20px 60px rgba(43, 77, 141, 0.1);

  z-index: 1000;

}



.custom-dropdown .dropdown-menu.show {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.custom-dropdown .dropdown-menu::before {

  content: '';

  position: absolute;

  top: -6px;

  left: 20px;

  width: 12px;

  height: 12px;

  background: rgba(255, 255, 255, 0.97);

  border-left: 1px solid rgba(43, 77, 141, 0.12);

  border-top: 1px solid rgba(43, 77, 141, 0.12);

  transform: rotate(45deg);

}



.custom-dropdown .dropdown-item {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px 16px;

  border-radius: var(--radius-sm);

  color: #334155;

  font-size: 0.88rem;

  transition: var(--transition);

  cursor: pointer;

}



.custom-dropdown .dropdown-item:hover {

  background: rgba(110, 192, 251, 0.08);

  color: #2b4d8d;

  padding-left: 20px;

}



.custom-dropdown .dropdown-item.selected {

  background: rgba(110, 192, 251, 0.1);

  color: #6ec0fb;

}



.custom-dropdown .dropdown-icon {

  width: 32px;

  height: 32px;

  background: rgba(43, 77, 141, 0.08);

  border-radius: 6px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  transition: var(--transition);

}



.custom-dropdown .dropdown-icon svg {

  width: 15px;

  height: 15px;

  color: #2b4d8d;

}



.custom-dropdown .dropdown-item:hover .dropdown-icon {

  background: rgba(110, 192, 251, 0.15);

}



.custom-dropdown .dropdown-item:hover .dropdown-icon svg {

  color: #6ec0fb;

}



.form-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

}



.form-error {

  display: block;

  color: #ff4d4d;

  font-size: 0.8rem;

  margin-top: 4px;

}



.form-success {

  display: none;

  padding: 16px;

  background: rgba(0, 212, 255, 0.08);

  border: 1px solid rgba(0, 212, 255, 0.3);

  border-radius: var(--radius-sm);

  color: var(--accent-cyan);

  font-size: 0.9rem;

  margin-top: 16px;

  text-align: center;

}



/* ============================================

   FOOTER — DARK (permanent)

   ============================================ */

footer {

  background: #021326;

  position: relative;

  border-top: 0px solid rgba(110, 192, 251, 0.1);

  padding: 50px 0 0 0;

  overflow: hidden;

}



footer::before {

  content: "";

  position: absolute;

  inset: 0;

  background-image: url("/favicon.png");

  background-repeat: no-repeat;

  background-position: right;

  background-size: 520px;

  opacity: 0.1;

  pointer-events: none;

}



footer>* {

  position: relative;

  z-index: 1;

}



.footer-grid {

  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

  gap: 40px;

  padding-bottom: 20px;

  border-bottom: 1px solid #6ec0fb;

}



.footer-brand p {

  color: white;

  font-size: 0.88rem;

  line-height: 1.8;

  margin: 16px 0 24px;

  max-width: 260px;

}



.social-links {

  display: flex;

  gap: 10px;

}



.social-link {

  width: 36px;

  height: 36px;

  border: 1px solid rgba(110, 192, 251, 0.2);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #7a9bb5;

  transition: var(--transition);

}



.social-link:hover {

  border-color: var(--accent-cyan);

  color: var(--accent-cyan);

  box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);

}



.social-link svg {

  width: 16px;

  height: 16px;

}



.footer-col h4 {

  font-size: 0.88rem;

  font-weight: 600;

  color: white;

  margin-bottom: 16px;

  font-family: var(--font-display);

}



.footer-col ul {

  display: flex;

  flex-direction: column;

  gap: 10px;

}



.footer-col ul li a {

  font-size: 0.87rem;

  color: white;

  transition: var(--transition);

  display: flex;

  align-items: center;

  gap: 6px;

}



.footer-col ul li a:hover {

  color: var(--accent-cyan);

  padding-left: 4px;

}



.footer-contact-item {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-bottom: 14px;

  font-size: 0.87rem;

  color: white;

  transition: var(--transition);

}



.footer-contact-item a {

  font-size: 0.87rem;

  color: white;

  transition: var(--transition);

}



.footer-contact-item a:hover {

  color: var(--accent-cyan);

}



.footer-contact-item:hover {

  transform: translateY(-2px);

  color: var(--accent-cyan);

}



.footer-contact-item:hover svg {

  color: var(--accent-cyan);

  transform: translateY(-2px);

}



.footer-contact-item p {

  color: white;

  line-height: 1.6;

}



.footer-contact-item svg {

  width: 16px;

  height: 16px;

  color: var(--accent-cyan);

  flex-shrink: 0;

  margin-top: 2px;

}



.footer-bottom {

  padding: 24px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 12px;

}



.footer-bottom p {

  font-size: 0.82rem;

  color: white;

}



.fott {

  color: white;

}



.fott a {

  color: white;

}



.fott:hover {

  color: red;

}



.footer-bottom a {

  color: white;

  font-size: 0.82rem;

  transition: color 0.3s;

}



.footer-bottom a:hover {

  color: var(--accent-cyan);

}



.footer-social-links {

  display: flex;

  gap: 12px;

  align-items: center;

}



.footer-social-links .social-link {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 36px;

  height: 36px;

  border: 1px solid rgba(110, 192, 251, 0.2);

  border-radius: 50%;

  transition: var(--transition);

  background: rgba(255, 255, 255, 0.05);

}



.footer-social-links .social-link:hover {

  border-color: var(--accent-cyan);

  background: var(--bg-glass);

  transform: translateY(-2px);

}



.footer-social-links .social-link svg {

  width: 18px;

  height: 18px;

}



/* ============================================

   PAGE HEADER (Inner Pages)

   ============================================ */

.page-header {

  padding: 160px 0 80px;

  background-image: url(/assets/images/header.jpg);

  /* background-color: rgba(104, 0, 0, 0.281); */

  background-size: cover;

  display: flex;

  justify-content: center;

  text-align: center;

  justify-items: center;

  background-position: center;

}



.page-header::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 102, 255, 0.06) 0%, transparent 70%);

}



.page-header h1 {

  font-size: clamp(2.5rem, 5vw, 4rem);

  color: #ffffff;

  margin-bottom: 16px;

  position: relative;

}



.page-header p {

  color: white;

  font-size: 1.1rem;

  max-width: 540px;

  margin: 0 auto;

  position: relative;

}



.breadcrumb {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  font-family: var(--font-mono);

  font-size: 0.78rem;

  color: var(--text-muted);

  margin-bottom: 20px;

  position: relative;

}



.breadcrumb a {

  color: var(--accent-cyan);

}



.breadcrumb span {

  color: var(--text-muted);

}



/* ============================================

   ABOUT PAGE — alternates light/dark by section

   ============================================ */

.about-story {

  padding: 100px 0;

  background: #ffffff;

  /* background: linear-gradient(to top, #ffffff 30%, var(--accent-cyan) 100%); */



  color: #2b4d8d;

}

.about-story1 {

  padding: 100px 0;

  background: #ffffff;

  /* background: linear-gradient(to top, #ffffff 30%, var(--accent-cyan) 100%); */



  color: #2b4d8d;

}



.about-story .section-tag {

  color: var(--accent-cyan);

}



.about-story .section-title {

  color: #2b4d8d;

}



.about-story .section-subtitle {

  color: #334155;

}



.about-visual {

  position: relative;

  height: 420px;

}



.about-img-box {

  position: absolute;

  border-radius: var(--radius);

  overflow: hidden;

  background: linear-gradient(135deg, rgba(43, 77, 141, 0.1), rgba(110, 192, 251, 0.05));

  border: 1px solid rgba(43, 77, 141, 0.12);

}



.about-img-box.main {

  width: 340px;

  height: 340px;

  top: 0;

  right: 0;

}



.about-img-box.accent {

  width: 200px;

  height: 200px;

  bottom: 0;

  left: 0;

}



.about-img-inner {

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

}



.about-img-inner svg {

  width: 64px;

  height: 64px;

  color: rgba(43, 77, 141, 0.2);

}



.mission-section {

  padding: 80px 0;

  background: var(--bg-secondary);

}



.mission-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;

}



.mission-card {

  padding: 40px;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  transition: var(--transition);

}



.mission-card:hover {

  border-color: var(--border-hover);

  box-shadow: var(--shadow-cyan);

}



.mission-card h3 {

  font-size: 1.3rem;

  margin-bottom: 12px;

  display: flex;

  align-items: center;

  gap: 10px;

}



.mission-card h3 span {

  color: var(--accent-cyan);

}



/* Timeline */

.timeline-section {

  padding: 100px 0;

  background: var(--bg-primary);

}



.timeline {

  position: relative;

  max-width: 800px;

  margin: 60px auto 0;

}



.timeline::before {

  content: '';

  position: absolute;

  left: 50%;

  top: 0;

  bottom: 0;

  width: 1px;

  background: var(--border);

  transform: translateX(-50%);

}



.timeline-item {

  display: flex;

  gap: 40px;

  margin-bottom: 48px;

  position: relative;

}



.timeline-item:nth-child(odd) {

  flex-direction: row;

}



.timeline-item:nth-child(even) {

  flex-direction: row-reverse;

}



.timeline-item:nth-child(odd) .timeline-content {

  margin-left: auto;

  margin-right: 0;

  max-width: 45%;

}



.timeline-item:nth-child(even) .timeline-content {

  margin-right: auto;

  margin-left: 0;

  max-width: 45%;

}



.timeline-dot {

  position: absolute;

  left: 50%;

  top: 8px;

  transform: translateX(-50%);

  width: 14px;

  height: 14px;

  background: var(--accent-cyan);

  border-radius: 50%;

  border: 3px solid var(--bg-primary);

  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);

  z-index: 1;

  transition: all 0.3s ease;

}



.timeline-dot.glow {

  animation: dotGlow 2s ease-in-out infinite;

  box-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);

}



@keyframes dotGlow {

  0%,
  100% {

    transform: translateX(-50%) scale(1);

    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);

  }

  50% {

    transform: translateX(-50%) scale(1.2);

    box-shadow: 0 0 25px rgba(0, 212, 255, 1), 0 0 50px rgba(0, 212, 255, 0.8), 0 0 75px rgba(0, 212, 255, 0.6);

  }

}



.timeline-content {

  background: var(--bg-card);

  /* border: 1px solid var(--border); */

  border-radius: var(--radius);

  padding: 24px;

}



.timeline-year {

  font-family: var(--font-mono);

  font-size: 0.75rem;

  color: var(--accent-cyan);

  letter-spacing: 0.15em;

  margin-bottom: 6px;

}



.timeline-content h3 {

  font-size: 1rem;

  margin-bottom: 6px;

}



.timeline-content p {

  font-size: 0.87rem;

  color: var(--text-secondary);

  line-height: 1.7;

}



/* Team */

.team-section {

  padding: 100px 0;

  background: #f5f9ff;

}



.team-card {

  background: #ffffff;

  border: 1px solid rgba(43, 77, 141, 0.1);

  border-radius: var(--radius);

  padding: 32px;

  text-align: center;

  transition: var(--transition);

}



.team-card:hover {

  border-color: rgba(110, 192, 251, 0.3);

  transform: translateY(-6px);

  box-shadow: 0 15px 40px rgba(110, 192, 251, 0.1);

}



.team-avatar {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  background: linear-gradient(135deg, #2b4d8d, #6ec0fb);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-display);

  font-size: 1.8rem;

  font-weight: 800;

  color: white;

  margin: 0 auto 16px;

}



.team-card h4 {

  font-size: 1rem;

  margin-bottom: 4px;

  color: #2b4d8d;

}



.team-role {

  font-family: var(--font-mono);

  font-size: 0.75rem;

  color: var(--accent-cyan);

  margin-bottom: 12px;

}



.team-bio {

  font-size: 0.85rem;

  color: #334155;

  line-height: 1.7;

}



/* ============================================

   SERVICES PAGE

   ============================================ */

.service-detail {

  padding: 80px 0;

  border-bottom: 1px solid var(--border);

}



.service-detail:nth-child(even) .grid-2 {

  direction: rtl;

}



.service-detail:nth-child(even) .grid-2>* {

  direction: ltr;

}



.service-detail-content h2 {

  font-size: 2rem;

  margin-bottom: 16px;

}



.service-detail-content p {

  color: var(--text-secondary);

  line-height: 1.8;

  margin-bottom: 24px;

}



.service-features {

  display: flex;

  flex-direction: column;

  gap: 12px;

  margin-bottom: 28px;

}



.service-feature-item {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  font-size: 0.9rem;

  color: var(--text-secondary);

}



.service-feature-item::before {

  content: '';

  width: 18px;

  height: 18px;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ec0fb' stroke-width='2'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;

  flex-shrink: 0;

  margin-top: 2px;

}



.service-visual {

  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.04));

  border: 1px solid var(--border);

  border-radius: var(--radius);

  height: 360px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;

}



.service-visual svg {

  width: 80px;

  height: 80px;

  color: rgba(0, 212, 255, 0.25);

}



/* ============================================

   BLOG PAGE

   ============================================ */

.blog-layout {

  display: grid;

  grid-template-columns: 1fr 300px;

  gap: 40px;

  padding: 80px 0;

}



.blog-list {

  display: flex;

  flex-direction: column;

  gap: 24px;

}



.blog-list-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  overflow: hidden;

  display: flex;

  transition: var(--transition);

  text-decoration: none;

  color: inherit;

}



.blog-list-card:hover {

  border-color: var(--border-hover);

  transform: translateY(-3px);

  box-shadow: var(--shadow-card);

  text-decoration: none;

  color: inherit;

}



.blog-list-card:hover h3 {

  color: var(--accent-cyan);

}



.blog-list-img {

  width: 240px;

  flex-shrink: 0;

  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 212, 255, 0.04));

  display: flex;

  align-items: center;

  justify-content: center;

}



.blog-list-img svg {

  width: 40px;

  height: 40px;

  color: rgba(0, 212, 255, 0.2);

}



.blog-list-body {

  padding: 28px;

}



.blog-list-body .blog-category {

  position: static;

  background: rgba(0, 212, 255, 0.1);

  border: 1px solid rgba(0, 212, 255, 0.2);

  color: var(--accent-cyan);

  font-family: var(--font-mono);

  font-size: 0.7rem;

  letter-spacing: 0.1em;

  padding: 4px 10px;

  border-radius: 100px;

  text-transform: uppercase;

  display: inline-block;

  margin-bottom: 12px;

}



.blog-list-body h3 {

  font-size: 1.1rem;

  margin-bottom: 10px;

  transition: color 0.3s;

}



.blog-list-body p {

  font-size: 0.87rem;

  color: var(--text-secondary);

  line-height: 1.7;

  margin-bottom: 16px;

}



.blog-sidebar {

  display: flex;

  flex-direction: column;

  gap: 24px;

}



.sidebar-widget {

  margin-top: 0;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: var(--radius);

  padding: 24px;

}



.sidebar-widget h4 {

  font-size: 0.9rem;

  margin-bottom: 16px;

  padding-bottom: 12px;

  border-bottom: 1px solid #e5e7eb;

  color: #1f2937;

}



.search-input-wrap {

  position: relative;

}



.search-input {

  width: 100%;

  background: #f8fafc;

  border: 1px solid #e5e7eb;

  border-radius: var(--radius-sm);

  padding: 12px 40px 12px 14px;

  color: #1f2937;

  font-size: 0.88rem;

  outline: none;

  transition: var(--transition);

  font-family: var(--font-body);

}



.search-input:focus {

  border-color: #0066ff;

  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);

}



.search-icon {

  position: absolute;

  right: 12px;

  top: 50%;

  transform: translateY(-50%);

  width: 16px;

  height: 16px;

  color: #6b7280;

}



.category-list {

  display: flex;

  flex-direction: column;

  gap: 6px;

}



.category-item {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 8px 10px;

  border-radius: var(--radius-sm);

  cursor: pointer;

  transition: var(--transition);

  font-size: 0.87rem;

  color: #4b5563;

}



.category-item:hover {

  background: rgba(0, 102, 255, 0.04);

  color: #0066ff;

}



.category-item.active {

  background: rgba(0, 102, 255, 0.1);

  color: #0066ff;

}



.category-count {

  font-family: var(--font-mono);

  font-size: 0.72rem;

  color: #6b7280;

}

.service-btn {

  text-align: center;

  position: relative;

  display: inline-block;

  padding: 10px 24px;

  font-family: 'Poppins', sans-serif;

  font-size: 14px;

  font-weight: 500;

  color: #fff;

  background: var(--accent-blue);

  border: none;

  border-radius: 6px;

  text-decoration: none;

  overflow: hidden;

  transition: all 0.3s ease;

}



/* light slide effect */

.service-btn::before {

  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(120deg,

      transparent,

      rgba(255, 255, 255, 0.4),

      transparent);

  transition: all 0.5s;

}



.service-btn:hover::before {

  left: 100%;

}



.service-btn:hover {

  transform: translateY(-3px) scale(1.03);

  box-shadow: 0 10px 20px rgba(115, 103, 240, 0.35);

  background: var(--accent-blue);

}



/* ============================================

   CONTACT PAGE — LIGHT (permanent)

   ============================================ */

.contact-layout {

  display: grid;

  grid-template-columns: 1fr 320px;

  gap: 40px;

  align-items: start;

  padding: 60px 0;

}



.contact-info {

  position: sticky;

  top: 100px;

  align-self: start;

  height: fit-content;

}



.contact-info-card {

  background: linear-gradient(135deg, rgba(110, 192, 251, 0.1), rgba(43, 77, 141, 0.05));

  border: 1px solid rgba(43, 77, 141, 0.12);

  border-radius: var(--radius);

  padding: 30px;

  margin-top: 30px;

}



.contact-info-card h4 {

  font-size: 0.9rem;

  margin-bottom: 16px;

  color: var(--accent-blue);

  font-family: var(--font-mono);

  text-transform: uppercase;

  letter-spacing: 0.1em;

}



.contact-detail {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 16px;

}



.contact-detail:last-child {

  margin-bottom: 0;

}



.contact-detail-icon {

  width: 36px;

  height: 36px;

  background: rgba(110, 192, 251, 0.08);

  border: 1px solid rgba(110, 192, 251, 0.15);

  border-radius: 8px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.contact-detail-icon svg {

  width: 16px;

  height: 16px;

  color: var(--accent-cyan);

}



.contact-detail-label {

  font-size: 0.75rem;

  color: var(--text-muted);

  margin-bottom: 2px;

  font-family: var(--font-mono);

}



.contact-detail-value {

  font-size: 0.9rem;

  color: var(--accent-blue);

}



.map-placeholder {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  height: 200px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 12px;

  color: var(--text-muted);

  font-size: 0.9rem;

}



.map-placeholder svg {

  width: 40px;

  height: 40px;

  color: rgba(0, 212, 255, 0.2);

}



/* ============================================

   CASE STUDIES SECTION — DARK (permanent)

   ============================================ */

#case-studies {

  background: var(--bg-primary);

  position: relative;

  padding: -1000px 0;

}



.case-study-carousel {

  position: relative;

  width: 100%;

  overflow: hidden;

}



.case-studies-track {

  display: flex;

  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}



.case-study-featured {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

  width: 100%;

  flex-shrink: 0;

  padding: 60px 0;

  min-height: 500px;

}



.case-study-content {

  display: flex;

  flex-direction: column;

  gap: 25px;

  padding-right: 40px;

}



.case-study-content h3 {

  font-size: 2.2rem;

  font-weight: 700;

  line-height: 1.3;

  color: var(--text-primary);

  transition: color 0.3s ease;

}



.case-study-content:hover h3 {

  color: var(--accent-cyan);

}



.case-study-content p {

  font-size: 1.05rem;

  color: var(--text-secondary);

  line-height: 1.8;

}



.case-study-content button {

  width: fit-content;

  margin-top: 10px;

}



.case-study-image-frame {

  display: flex;

  align-items: center;

  justify-content: center;

  height: 100%;

  min-height: 450px;

}



.frame-wrapper {

  position: relative;

  width: 100%;

  height: 100%;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);

  border: 3px solid var(--accent-cyan);

  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.05));

}



.frame-wrapper img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.3s ease;

}



.case-study-featured:hover .frame-wrapper img {

  transform: scale(1.05);

}



.frame-wrapper::before {

  content: '';

  position: absolute;

  inset: -10px;

  background: linear-gradient(45deg, #d4af37, #f0e68c, #d4af37);

  border-radius: 20px;

  z-index: -1;

}



.carousel-controls {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 60px;

  margin-top: 40px;

  width: 100%;

}



.carousel-btn {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  border: 2px solid var(--border);

  background: transparent;

  color: var(--text-primary);

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: all 0.3s ease;

  flex-shrink: 0;

}



.carousel-btn:hover:not(:disabled) {

  border-color: var(--accent-cyan);

  color: var(--accent-cyan);

  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);

  transform: scale(1.1);

}



.carousel-btn:disabled {

  opacity: 0.3;

  cursor: not-allowed;

}



.carousel-btn svg {

  width: 24px;

  height: 24px;

  stroke-linecap: round;

  stroke-linejoin: round;

}



.carousel-indicators {

  display: flex;

  gap: 12px;

  align-items: center;

  justify-content: center;

}



.carousel-indicator {

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.2);

  border: 2px solid transparent;

  cursor: pointer;

  transition: all 0.3s ease;

}



.carousel-indicator.active {

  background: var(--accent-cyan);

  border-color: var(--accent-cyan);

  width: 30px;

  border-radius: 5px;

}



.carousel-indicator:hover {

  background: rgba(0, 212, 255, 0.5);

  border-color: var(--accent-cyan);

}



/* ============================================

   TESTIMONIALS SCROLL — LIGHT (permanent)

   ============================================ */

#testimonials-scroll {

  background: #f5f9ff;

  position: relative;

}



#testimonials-scroll .section-tag {

  color: var(--accent-cyan);

}



#testimonials-scroll .section-title {

  color: #2b4d8d;

}



#testimonials-scroll .section-subtitle {

  color: #334155;

}



.testimonials-scroll-wrapper {

  position: relative;

  width: 100%;

}



.testimonials-scroll-track {

  display: flex;

  gap: 24px;

  overflow-x: auto;

  scroll-behavior: smooth;

  padding-bottom: 20px;

  scroll-padding: 20px;

  scrollbar-width: thin;

  scrollbar-color: var(--accent-cyan) transparent;

}



.testimonials-scroll-track::-webkit-scrollbar {

  height: 6px;

}



.testimonials-scroll-track::-webkit-scrollbar-track {

  background: rgba(43, 77, 141, 0.05);

  border-radius: 10px;

}



.testimonials-scroll-track::-webkit-scrollbar-thumb {

  background: var(--accent-cyan);

  border-radius: 10px;

}



.testimonial-scroll-card {

  flex: 0 0 calc(33.333% - 16px);

  background: #ffffff;

  border: 1px solid rgba(43, 77, 141, 0.1);

  border-radius: 16px;

  padding: 32px;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  display: flex;

  flex-direction: column;

  gap: 24px;

  position: relative;

  overflow: hidden;

}



.testimonial-scroll-card::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: linear-gradient(90deg, #2b4d8d, #6ec0fb);

}



.testimonial-scroll-card:hover {

  border-color: #6ec0fb;

  box-shadow: 0 20px 50px rgba(110, 192, 251, 0.15);

  transform: translateY(-8px);

}



.testimonial-quote {

  font-size: 1.05rem;

  color: #334155;

  line-height: 1.8;

  font-style: italic;

  position: relative;

  padding-left: 24px;

}



.testimonial-quote::before {

  content: '"';

  position: absolute;

  left: 0;

  top: -10px;

  font-size: 3rem;

  color: var(--accent-cyan);

  opacity: 0.2;

  font-family: var(--font-display);

}



.testimonial-author {

  padding-top: 16px;

  border-top: 1px solid rgba(43, 77, 141, 0.1);

}



.testimonial-name {

  font-size: 1rem;

  font-weight: 600;

  color: #2b4d8d;

  margin-bottom: 4px;

}



.testimonial-title {

  font-size: 0.85rem;

  color: var(--accent-cyan);

  font-weight: 500;

}



.testimonials-scroll-nav {

  display: flex;

  gap: 12px;

  justify-content: flex-end;

  margin-top: 30px;

}



.testimonials-scroll-nav .scroll-btn {

  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: #ffffff;

  border: 1px solid rgba(43, 77, 141, 0.15);

  color: var(--accent-cyan);

  cursor: pointer;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0;

}



.testimonials-scroll-nav .scroll-btn svg {

  width: 20px;

  height: 20px;

  transition: transform 0.3s ease;

}



.testimonials-scroll-nav .scroll-btn:hover {

  background: rgba(110, 192, 251, 0.1);

  border-color: var(--accent-cyan);

  box-shadow: 0 0 20px rgba(110, 192, 251, 0.2);

}



.testimonials-scroll-nav .scroll-btn:hover svg {

  transform: scale(1.2);

}



.testimonials-scroll-nav .scroll-btn:disabled {

  opacity: 0.5;

  cursor: not-allowed;

}



.testimonials-scroll-nav .scroll-btn:disabled:hover {

  background: #ffffff;

  border-color: rgba(43, 77, 141, 0.15);

  box-shadow: none;

}



/* ============================================

   SCROLLBAR

   ============================================ */

::-webkit-scrollbar {

  width: 6px;

}



::-webkit-scrollbar-track {

  background: var(--bg-primary);

}



::-webkit-scrollbar-thumb {

  background: #6ec0fb;

  border-radius: 3px;

}



::-webkit-scrollbar-thumb:hover {

  background: rgb(45, 132, 182);

}



/* ============================================

   MODERN SERVICES GRID (3x3) — DARK

   ============================================ */

.services-grid-modern {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin: 40px 0 60px;

}



.service-card-modern {

  background: #ffffff;

  border: 1px solid rgba(0, 102, 255, 0.1);

  border-radius: 16px;

  overflow: hidden;

  position: relative;

  display: flex;

  flex-direction: column;

  text-decoration: none;

  color: inherit;

  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

  height: 100%;

  will-change: transform, box-shadow;

}



.service-card-modern::before {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);

  opacity: 0;

  transition: opacity 0.5s ease;

  z-index: 1;

}



.service-card-modern::after {

  content: '';

  position: absolute;

  top: -50%;

  left: -50%;

  width: 200%;

  height: 200%;

  background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.05), transparent);

  animation: rotate 8s linear infinite;

  opacity: 0;

  transition: opacity 0.5s ease;

  z-index: 0;

}



@keyframes rotate {

  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }

}



.service-card-modern:hover {

  transform: translateY(-12px) scale(1.02);

  box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.1);

  border-color: rgba(0, 212, 255, 0.2);

}



.service-card-modern:hover::before {

  opacity: 1;

}



.service-card-modern:hover::after {

  opacity: 1;

}



.card-image-area {

  height: 200px;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  background: #f8fafc;

}



.card-image-area img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);

  filter: brightness(0.95);

}



.service-card-modern:hover .card-image-area img {

  transform: scale(1.1);

  filter: brightness(1);

}



.card-image-icon {

  position: absolute;

  top: 20px;

  right: 20px;

  width: 60px;

  height: 60px;

  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(0, 212, 255, 0.3);

  border-radius: 16px;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 3;

  transition: all 0.4s ease;

}



.service-card-modern:hover .card-image-icon {

  border-color: #00d4ff;

  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);

  transform: rotate(360deg);

}



.card-image-icon svg {

  width: 28px;

  height: 28px;

  color: #0066ff;

  filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.4));

}



.card-content {

  padding: 32px 28px;

  display: flex;

  flex-direction: column;

  flex: 1;

  background: #ffffff;

  position: relative;

  z-index: 2;

}



.service-card-modern h3 {

  font-size: 1.4rem;

  font-weight: 800;

  margin-bottom: 16px;

  color: var(--accent-blue);

  line-height: 1.2;

  letter-spacing: -0.03em;

}



.service-card-modern p {

  font-size: 0.95rem;

  color: #64748b;

  line-height: 1.7;

  margin-bottom: 24px;

  flex-grow: 1;

}



.service-link-modern {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-family: var(--font-mono);

  font-size: 0.85rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: #0066ff;

  padding: 16px 24px;

  background: rgba(0, 102, 255, 0.05);

  border: 1px solid rgba(0, 102, 255, 0.2);

  border-radius: 12px;

  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

  text-decoration: none;

  align-self: flex-start;

  position: relative;

  overflow: hidden;

}



.service-link-modern::before {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);

  opacity: 0;

  transition: opacity 0.4s ease;

  z-index: -1;

}



.service-link-modern:hover {

  gap: 16px;

  color: #ffffff;

  border-color: #00d4ff;

  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);

}



.service-link-modern:hover::before {

  opacity: 1;

}



.service-link-modern:hover span {

  color: #ffffff;

  transform: translateX(2px);

}



.service-link-modern span {

  font-size: 1.3rem;

  line-height: 1;

  transition: all 0.3s ease;

}



.service-card-number {

  position: absolute;

  top: 20px;

  left: 20px;

  font-size: 3rem;

  font-weight: 900;

  color: rgba(0, 102, 255, 0.08);

  line-height: 1;

  z-index: 1;

}



.service-link-modern span {

  font-size: 1.2rem;

  line-height: 1;

}



.card-badge {

  position: absolute;

  top: 16px;

  right: 16px;

  background: var(--accent-cyan);

  color: #020b18;

  font-size: 0.65rem;

  font-weight: 700;

  padding: 4px 10px;

  border-radius: 40px;

  letter-spacing: 0.1em;

  z-index: 5;

  box-shadow: 0 0 15px var(--accent-cyan);

  text-transform: uppercase;

}



/* ============================================

   BLOG PAGE ENHANCEMENTS

   ============================================ */

.featured-post {

  display: grid;

  grid-template-columns: 1fr 0.8fr;

  gap: 40px;

  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 212, 255, 0.04));

  border: 1px solid var(--border);

  border-radius: 24px;

  padding: 48px;

  margin-bottom: 60px;

  position: relative;

  overflow: hidden;

  backdrop-filter: blur(10px);

}



.featured-post::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 1px;

  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);

}



.featured-post-badge {

  position: absolute;

  top: 24px;

  right: 48px;

  background: rgba(0, 212, 255, 0.15);

  border: 1px solid rgba(0, 212, 255, 0.3);

  color: var(--accent-cyan);

  font-family: var(--font-mono);

  font-size: 0.7rem;

  letter-spacing: 0.1em;

  padding: 6px 12px;

  border-radius: 100px;

  text-transform: uppercase;

}



.featured-post-meta {

  display: flex;

  gap: 16px;

  align-items: center;

  margin-bottom: 20px;

  flex-wrap: wrap;

}



.featured-post-category {

  background: rgba(0, 212, 255, 0.1);

  border: 1px solid rgba(0, 212, 255, 0.2);

  color: var(--accent-cyan);

  font-family: var(--font-mono);

  font-size: 0.7rem;

  letter-spacing: 0.1em;

  padding: 4px 10px;

  border-radius: 100px;

  text-transform: uppercase;

}



.featured-post-date {

  font-family: var(--font-mono);

  font-size: 0.75rem;

  color: var(--text-muted);

}



.featured-post h2 {

  font-size: 2.2rem;

  margin-bottom: 20px;

  line-height: 1.2;

}



.featured-post p {

  color: var(--text-secondary);

  font-size: 1rem;

  line-height: 1.8;

  margin-bottom: 30px;

  max-width: 500px;

}



.featured-post-visual {

  display: flex;

  align-items: center;

  justify-content: center;

}



.featured-post-visual svg {

  width: 180px;

  height: 180px;

  color: rgba(0, 212, 255, 0.15);

}



.blog-meta {

  display: flex;

  gap: 16px;

  align-items: center;

  margin-bottom: 12px;

  flex-wrap: wrap;

}



.blog-read-more {

  font-family: var(--font-mono);

  font-size: 0.8rem;

  font-weight: 500;

  color: var(--accent-cyan);

  letter-spacing: 0.08em;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  transition: all 0.3s ease;

  text-decoration: none;

  margin-top: 10px;

}



.blog-read-more span {

  transition: transform 0.3s ease;

}



.blog-list-card:hover .blog-read-more span {

  transform: translateX(4px);

}



.recent-posts-list {

  display: flex;

  flex-direction: column;

  gap: 16px;

}



.recent-post-item {

  display: flex;

  gap: 12px;

  align-items: flex-start;

  text-decoration: none;

  transition: all 0.3s ease;

  padding: 8px;

  border-radius: var(--radius-sm);

}



.recent-post-item:hover {

  background: var(--bg-glass);

}



.recent-post-icon {

  width: 40px;

  height: 40px;

  background: rgba(0, 212, 255, 0.06);

  border: 1px solid var(--border);

  border-radius: 8px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}



.recent-post-icon svg {

  width: 18px;

  height: 18px;

  color: var(--accent-cyan);

}



.recent-post-title {

  font-size: 0.85rem;

  color: var(--text-primary);

  line-height: 1.4;

  margin-bottom: 4px;

  transition: color 0.3s;

}



.recent-post-item:hover .recent-post-title {

  color: var(--accent-cyan);

}



.recent-post-date {

  font-family: var(--font-mono);

  font-size: 0.7rem;

  color: var(--text-muted);

}



.subscribe-widget {

  background: rgba(0, 212, 255, 0.04);

  border-color: rgba(0, 212, 255, 0.15);

}



.subscribe-widget p {

  font-size: 0.85rem;

  color: var(--text-secondary);

  line-height: 1.7;

  margin-bottom: 16px;

}



.pagination {

  display: flex;

  justify-content: center;

  gap: 8px;

  margin: 60px 0 0;

  padding-top: 40px;

  border-top: 1px solid var(--border);

}



.pagination-item {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 40px;

  height: 40px;

  padding: 0 12px;

  border: 1px solid var(--border);

  border-radius: var(--radius-sm);

  font-family: var(--font-display);

  font-size: 0.9rem;

  color: var(--text-secondary);

  text-decoration: none;

  transition: all 0.3s ease;

}



.pagination-item:hover {

  border-color: var(--accent-cyan);

  color: var(--accent-cyan);

  background: var(--bg-glass);

}



.pagination-item.active {

  background: var(--accent-cyan);

  border-color: var(--accent-cyan);

  color: var(--bg-primary);

}



.pagination-item.next {

  padding: 0 20px;

}



/* ============================================

   BLOG INNER PAGE STYLES

   ============================================ */

.blog-post-header {

  padding: 160px 0 80px;

  background-image: url(/assets/images/header.jpg);

  /* background-color: rgba(104, 0, 0, 0.281); */

  background-size: cover;

  display: flex;

  justify-content: center;

  text-align: center;

  justify-items: center;

  background-position: center;

}



.blog-post-header::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 102, 255, 0.06) 0%, transparent 70%);

}

.blog-post-header .sapn {

  color: white;

}



.blog-post-header h1 {

  font-size: clamp(2.5rem, 5vw, 4rem);

  max-width: 900px;

  margin: 20px 0 30px;

  line-height: 1.2;

}



.blog-post-meta {

  display: flex;

  gap: 20px;

  align-items: center;

  flex-wrap: wrap;

  margin-bottom: 20px;

}



.blog-post-category {

  background: rgba(0, 212, 255, 0.1);

  border: 1px solid rgba(0, 212, 255, 0.2);

  color: var(--accent-cyan);

  font-family: var(--font-mono);

  font-size: 0.7rem;

  letter-spacing: 0.1em;

  padding: 6px 14px;

  border-radius: 100px;

  text-transform: uppercase;

}



.blog-post-date,

.blog-post-read-time {

  font-family: var(--font-mono);

  font-size: 0.8rem;

  color: var(--accent-cyan);

}



.blog-post-author {

  display: flex;

  align-items: center;

  gap: 16px;

  margin-top: 30px;

}



.author-info {

  display: flex;

  flex-direction: column;

}



.author-bio-content h4 {

  font-size: 1.1rem;

  margin-bottom: 10px;

  color: var(--text-primary);

}



.blog-post-section {

  padding: 60px 0 80px;

  background: #ffffff;

}



.blog-post-layout {

  display: grid;

  grid-template-columns: 1fr 320px;

  gap: 40px;

  align-items: start;

}



.blog-post-sidebar {

  position: sticky;

  top: 100px;

  align-self: start;

  height: fit-content;

}



.blog-post-article {

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: var(--radius);

  padding: 40px;

}



.blog-post-featured-image {

  height: 400px;

  background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 212, 255, 0.04));

  display: flex;

  align-items: center;

  justify-content: center;

  border-bottom: 1px solid var(--border);

  width: 100%;

  border-radius: 12px;

  overflow: hidden;

  margin-bottom: 32px;

}



.blog-post-featured-image svg {

  width: 120px;

  height: 120px;

  color: rgba(0, 212, 255, 0.2);

}



.blog-post-content {

  padding: 0;

  color: #4b5563;

  line-height: 1.8;

}



.blog-post-intro {

  font-size: 1.2rem;

  color: #1f2937;

  line-height: 1.8;

  margin-bottom: 30px;

  font-weight: 500;

}



.blog-post-content h2 {

  font-size: 2rem;

  margin: 40px 0 20px;

  color: #1f2937;

}



.blog-post-content h3 {

  font-size: 1.3rem;

  margin: 30px 0 15px;

  color: #1f2937;

}



.blog-post-content p {

  font-size: 1rem;

  color: #4b5563;

  line-height: 1.8;

  margin-bottom: 20px;

}



.blog-post-content ul,

.blog-post-content ol {

  margin: 20px 0;

  padding-left: 20px;

  color: #4b5563;

}



.blog-post-content li {

  margin-bottom: 10px;

  line-height: 1.7;

}



.blog-post-highlight {

  background: rgba(0, 102, 255, 0.06);

  border-left: 4px solid #0066ff;

  padding: 24px;

  margin: 30px 0;

  border-radius: 0 12px 12px 0;

  font-style: italic;

  font-size: 1.1rem;

  color: #1f2937;

}



.blog-post-tags {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin: 40px 0 30px;

  padding-top: 30px;

  border-top: 1px solid #e5e7eb;

}



.blog-post-tag {

  background: rgba(0, 102, 255, 0.06);

  border: 1px solid rgba(0, 102, 255, 0.2);

  color: #0066ff;

  font-family: var(--font-mono);

  font-size: 0.7rem;

  letter-spacing: 0.05em;

  padding: 4px 12px;

  border-radius: 100px;

  text-transform: uppercase;

}



.blog-post-tag:hover {

  border-color: #0066ff;

}



.blog-post-share {

  display: none;

  align-items: center;

  gap: 16px;

  padding-top: 24px;

  border-top: 1px solid #e5e7eb;

}



.share-links {

  display: flex;

  gap: 8px;

}



.share-link {

  width: 36px;

  height: 36px;

  border: 1px solid var(--border);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--text-muted);

  transition: all 0.3s;

}



.share-link:hover {

  border-color: var(--accent-cyan);

  color: var(--accent-cyan);

  transform: translateY(-2px);

}



.share-link svg {

  width: 16px;

  height: 16px;

}



.blog-post-author-bio {

  display: flex;

  gap: 24px;

  background: var(--bg-glass);

  border: 1px solid var(--border);

  border-radius: 16px;

  padding: 32px;

  margin-top: 30px;

}



.author-bio-content p {

  font-size: 0.9rem;

  color: var(--text-secondary);

  line-height: 1.7;

  margin-bottom: 0;

}



.toc-widget {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  max-height: calc(100vh - 120px);

  overflow-y: auto;

  z-index: 100;

}



.toc-list {

  list-style: none;

  padding: 0;

}



.toc-list li {

  margin-bottom: 8px;

}



.toc-list a {

  display: block;

  padding: 8px 12px;

  color: var(--text-secondary);

  font-size: 0.9rem;

  border-radius: var(--radius-sm);

  transition: all 0.3s;

  text-decoration: none;

}



.toc-list a:hover {

  background: var(--bg-glass);

  color: var(--accent-cyan);

  padding-left: 16px;

}



.toc-list a.active {

  background: rgba(0, 212, 255, 0.1);

  color: var(--accent-cyan);

  border-left: 3px solid var(--accent-cyan);

  font-weight: 500;

}



.related-posts {

  display: flex;

  flex-direction: column;

  gap: 16px;

}



.related-post {

  display: flex;

  gap: 12px;

  align-items: center;

  text-decoration: none;

  padding: 8px;

  border-radius: var(--radius-sm);

  transition: all 0.3s;

  margin-bottom: 15px;

  color: inherit;

}



.related-post:hover {

  background: rgba(0, 102, 255, 0.04);

}



.related-post-icon {

  width: 60px;

  height: 60px;

  background: rgba(0, 102, 255, 0.06);

  border: 1px solid #e5e7eb;

  border-radius: 8px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

}



.related-post-icon svg {

  width: 18px;

  height: 18px;

  color: #0066ff;

}



.related-post-title {

  font-size: 0.85rem;

  color: #1f2937;

  line-height: 1.4;

  margin-bottom: 4px;

  transition: color 0.3s;

  font-weight: 500;

}



.related-post:hover .related-post-title {

  color: #0066ff;

}



.related-post-date {

  font-family: var(--font-mono);

  font-size: 0.7rem;

  color: #6b7280;

}



.comments-section {

  padding: 60px 0 80px;

  background: var(--bg-secondary);

  border-top: 1px solid var(--border);

}



.comments-container {

  max-width: 800px;

  margin: 0 auto;

}



.comments-container h3 {

  font-size: 1.5rem;

  margin-bottom: 40px;

}



.comment-form {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 16px;

  padding: 32px;

  margin-bottom: 40px;

}



.comment-form h4 {

  font-size: 1.1rem;

  margin-bottom: 24px;

  color: var(--accent-cyan);

}



.comments-list {

  display: flex;

  flex-direction: column;

  gap: 24px;

  margin-bottom: 40px;

}



.comment {

  display: flex;

  gap: 20px;

  padding: 24px;

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 16px;

}



.comment-avatar {

  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-display);

  font-weight: 600;

  font-size: 1rem;

  color: var(--bg-primary);

  flex-shrink: 0;

}



.comment-header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 8px;

  flex-wrap: wrap;

  gap: 10px;

}



.comment-author {

  font-weight: 600;

  color: var(--text-primary);

}



.comment-date {

  font-family: var(--font-mono);

  font-size: 0.7rem;

  color: var(--text-muted);

}



.comment-text {

  color: var(--text-secondary);

  line-height: 1.7;

  font-size: 0.95rem;

}



.form-message {

  margin-top: 16px;

  padding: 12px 16px;

  border-radius: var(--radius-sm);

  font-size: 0.9rem;

}



.form-message.success {

  background: rgba(0, 212, 255, 0.1);

  border: 1px solid var(--accent-cyan);

  color: var(--accent-cyan);

}



.form-message.error {

  background: rgba(255, 68, 68, 0.1);

  border: 1px solid #ff4444;

  color: #ff4444;

}



.no-comments {

  text-align: center;

  padding: 40px;

  color: var(--text-muted);

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  font-style: italic;

}



/* ============================================

   SERVICE PAGES

   ============================================ */

.service-grid-60-30 {

  display: grid;

  grid-template-columns: 60% 30%;

  gap: 10%;

  align-items: start;

}



.service-sidebar {

  position: sticky;

  top: 100px;

}



.service-sidebar .sidebar-widget {

  backdrop-filter: blur(10px);

  transition: var(--transition);

  margin-bottom: 30px;

}



.service-sidebar .sidebar-widget:hover {

  border-color: var(--accent-cyan);

  transform: translateY(-3px);

}



.service-icon-large {

  margin-bottom: 30px;

}



.service-icon-large svg {

  width: 80px;

  height: 80px;

  stroke: var(--accent-cyan);

  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));

}



.service-feature-list {

  list-style: none;

  padding: 0;

}



.service-feature-list li {

  margin-bottom: 12px;

  display: flex;

  gap: 10px;

  padding: 8px 0;

  border-bottom: 1px dashed var(--border);

  transition: transform 0.3s ease;

}



.service-feature-list li:last-child {

  border-bottom: none;

}



.service-feature-list li:hover {

  transform: translateX(5px);

}



.service-feature-list li span {

  color: var(--accent-cyan);

  font-weight: bold;

}



.service-highlight {

  background: linear-gradient(135deg, var(--bg-card), rgba(0, 212, 255, 0.05));

  border-left: 4px solid var(--accent-cyan);

  border-radius: var(--radius);

  padding: 35px;

  margin: 40px 0;

  position: relative;

  overflow: hidden;

}



.service-highlight::before {

  content: '';

  position: absolute;

  top: -50%;

  left: -50%;

  width: 200%;

  height: 200%;

  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);

  animation: rotate 20s linear infinite;

  z-index: 0;

}



.service-highlight>* {

  position: relative;

  z-index: 1;

}



@keyframes rotate {

  from {

    transform: rotate(0deg);

  }



  to {

    transform: rotate(360deg);

  }

}



.capability-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 25px;

  margin-bottom: 20px;

  transition: var(--transition);

  display: flex;

  gap: 20px;

  align-items: flex-start;

}



.capability-card:hover {

  transform: translateY(-3px);

  border-color: var(--accent-cyan);

  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);

}



.capability-icon {

  background: var(--accent-cyan);

  width: 40px;

  height: 40px;

  border-radius: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.capability-icon svg {

  width: 20px;

  height: 20px;

  stroke: var(--bg-primary);

}



.capability-content h4 {

  margin-bottom: 10px;

  color: var(--accent-cyan);

}



.capability-content p {

  color: var(--text-secondary);

  line-height: 1.7;

}



.process-steps {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;

  margin: 40px 0;

}



.process-step {

  text-align: center;

}



.process-step .step-number {

  background: var(--accent-cyan);

  width: 50px;

  height: 50px;

  border-radius: 50%;

  margin: 0 auto 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--bg-primary);

  font-weight: bold;

  font-size: 1.3rem;

}



.process-step h4 {

  font-size: 1rem;

  margin-bottom: 5px;

}



.process-step p {

  color: var(--text-muted);

  font-size: 0.85rem;

}



.service-stats-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  margin: 60px 0;

}



.service-stat-card {

  background: rgba(0, 212, 255, 0.05);

  border: 1px solid var(--border);

  border-radius: 16px;

  padding: 30px 20px;

  text-align: center;

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;

}



.service-stat-card:hover {

  transform: translateY(-10px);

  border-color: var(--accent-cyan);

  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);

}



.service-stat-number {

  font-size: 3rem;

  font-weight: 800;

  color: var(--accent-cyan);

  line-height: 1;

  margin-bottom: 10px;

}



.service-stat-label {

  font-size: 0.9rem;

  color: var(--text-secondary);

  text-transform: uppercase;

  letter-spacing: 0.1em;

}



.tech-stack {

  display: flex;

  flex-wrap: wrap;

  gap: 15px;

  margin: 40px 0;

  justify-content: center;

}



.tech-item {

  background: rgba(0, 212, 255, 0.05);

  border: 1px solid var(--border);

  border-radius: 50px;

  padding: 10px 25px;

  font-size: 0.95rem;

  color: var(--text-primary);

  transition: all 0.3s ease;

}



.tech-item:hover {

  background: var(--accent-cyan);

  color: var(--bg-primary);

  border-color: var(--accent-cyan);

  transform: scale(1.05);

}



.quick-info-widget {

  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 30px;

  margin-bottom: 30px;

}



.quick-info-item {

  display: flex;

  justify-content: space-between;

  margin-bottom: 15px;

  padding-bottom: 15px;

  border-bottom: 1px solid var(--border);

}



.quick-info-item:last-child {

  border-bottom: none;

  margin-bottom: 0;

  padding-bottom: 0;

}



.quick-info-label {

  color: var(--text-muted);

}



.quick-info-value {

  color: var(--text-primary);

  font-weight: 600;

}



.related-services-list {

  list-style: none;

}



.related-services-list li {

  margin-bottom: 15px;

}



.related-services-list a {

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--text-secondary);

  text-decoration: none;

  transition: var(--transition);

}



.related-services-list a:hover {

  color: var(--accent-cyan);

  transform: translateX(5px);

}



.related-services-list svg {

  width: 16px;

  height: 16px;

  color: var(--accent-cyan);

}



.related-services-list .arrow {

  margin-left: auto;

}



.quick-contact-widget {

  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.05));

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 30px;

  margin-top: 30px;

  text-align: center;

}



.quick-contact-widget svg {

  width: 40px;

  height: 40px;

  stroke: var(--accent-cyan);

  margin-bottom: 15px;

}



.quick-contact-widget h4 {

  margin-bottom: 10px;

}



.quick-contact-widget p {

  color: var(--text-muted);

  font-size: 0.9rem;

  margin-bottom: 20px;

}



.quick-contact-widget .phone-number {

  display: block;

  color: var(--accent-cyan);

  font-size: 1.3rem;

  font-weight: 600;

  text-decoration: none;

  margin-bottom: 10px;

}



.quick-contact-widget .emergency-label {

  color: var(--text-muted);

  font-size: 0.8rem;

}



.compliance-list {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin: 20px 0;

}



.compliance-item {

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--text-secondary);

}



.compliance-item svg {

  width: 18px;

  height: 18px;

  color: var(--accent-cyan);

}



.methodology-box {

  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 102, 255, 0.05));

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 30px;

  margin: 40px 0;

}



.methodology-steps {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  text-align: center;

}



.methodology-step {

  padding: 20px;

}



.methodology-step .step-number {

  background: var(--accent-cyan);

  width: 40px;

  height: 40px;

  border-radius: 50%;

  margin: 0 auto 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--bg-primary);

  font-weight: bold;

}



.feature-grid-2col {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin: 30px 0;

}



.feature-item {

  display: flex;

  gap: 10px;

  align-items: flex-start;

}



.feature-item svg {

  width: 20px;

  height: 20px;

  color: var(--accent-cyan);

  flex-shrink: 0;

  margin-top: 2px;

}



.feature-item span {

  color: var(--text-secondary);

  line-height: 1.6;

}



.benefit-badges {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin: 30px 0;

}



.benefit-badge {

  background: rgba(0, 212, 255, 0.08);

  border: 1px solid rgba(0, 212, 255, 0.2);

  border-radius: 50px;

  padding: 8px 20px;

  font-size: 0.9rem;

  color: var(--accent-cyan);

  transition: var(--transition);

}



.benefit-badge:hover {

  background: var(--accent-cyan);

  color: var(--bg-primary);

  transform: scale(1.05);

}



.service-page-header {

  position: relative;

  overflow: hidden;

  padding: 160px 0 100px;

}



.service-page-header::before {

  content: '';

  position: absolute;

  top: -50%;

  right: -10%;

  width: 800px;

  height: 800px;

  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);

  border-radius: 50%;

  animation: float 20s ease-in-out infinite;

}



.service-page-header::after {

  content: '';

  position: absolute;

  bottom: -30%;

  left: -10%;

  width: 600px;

  height: 600px;

  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);

  border-radius: 50%;

  animation: floatReverse 25s ease-in-out infinite;

}



@keyframes float {



  0%,

  100% {

    transform: translate(0, 0);

  }



  50% {

    transform: translate(-30px, 20px);

  }

}



@keyframes floatReverse {



  0%,

  100% {

    transform: translate(0, 0);

  }



  50% {

    transform: translate(40px, -30px);

  }

}



.service-breadcrumb {

  display: flex;

  align-items: center;

  gap: 8px;

  font-family: var(--font-mono);

  font-size: 0.78rem;

  color: var(--text-muted);

  margin-bottom: 20px;

}



.service-breadcrumb a {

  color: var(--accent-cyan);

  text-decoration: none;

  transition: var(--transition);

}



.service-breadcrumb a:hover {

  opacity: 0.8;

}



.service-breadcrumb span {

  color: var(--text-muted);

}



/* Service Page Redesign */

.service-page {

  padding: 80px 0;

  /* background: white; */

  background-color: #d60000;

}



.service-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;

  align-items: center;

  margin-bottom: 60px;

}



.service-image {

  position: relative;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

  height: 400px;

}



.service-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0.9;

  transition: transform 0.5s ease;

}



.service-image:hover img {

  transform: scale(1.05);

}



.service-content h1 {

  font-size: 2.5rem;

  margin-bottom: 20px;

  line-height: 1.2;

}



.service-content h1 span {

  color: var(--accent-cyan);

}



.service-description {

  color: var(--brand-dark);

  font-size: 1.1rem;

  line-height: 1.8;

  margin-bottom: 30px;

}



.service-cta {

  display: flex;

  gap: 15px;

  flex-wrap: wrap;

}



.service-stats {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin: 60px 0 40px;

}



.stat-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 16px;

  padding: 25px 20px;

  text-align: center;

  transition: all 0.3s ease;

}



.stat-card:hover {

  border-color: var(--accent-cyan);

  transform: translateY(-5px);

  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);

}



.stat-number {

  font-size: 2.5rem;

  font-weight: 800;

  color: var(--accent-cyan);

  line-height: 1;

  margin-bottom: 8px;

}



.stat-label {

  color: var(--text-secondary);

  font-size: 0.9rem;

  text-transform: uppercase;

  letter-spacing: 0.05em;

}



.benefits-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  background-color: white !important;

  margin: 40px 0;

}



.benefit-card {

  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: 16px;

  padding: 25px;

  transition: all 0.3s ease;

}



.benefit-card:hover {

  border-color: var(--accent-cyan);

  transform: translateY(-3px);

}



.benefit-card h4 {

  color: var(--accent-cyan);

  margin-bottom: 10px;

  font-size: 1.1rem;

}



.benefit-card p {

  color: var(--text-secondary);

  line-height: 1.6;

  font-size: 0.95rem;

}



/* ============================================

   STICKY SCROLL CASE STUDIES

   ============================================ */

.cs-section {

  background: var(--bg-primary);

  padding-bottom: 0;

}



.cs-header {

  text-align: center;

  padding-bottom: 5px;

  margin-bottom: -1199px;

  margin: 0 auto;

}



.cs-outer {

  height: calc(2 * 80vh + 100vh);

  position: relative;

}



.cs-sticky {

  position: sticky;

  top: 0;

  height: 80vh;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

}



.cs-deck {

  position: relative;

  width: 100%;

  max-width: 1200px;

  padding: 0 40px;

  height: 100%;

  display: flex;

  align-items: center;

}



.cs-card {

  position: absolute;

  left: 40px;

  right: 40px;

  transform: translateX(110%) scale(1);

  opacity: 0;

  border-radius: 24px;

  will-change: transform, opacity;

  transition: none;

  pointer-events: none;

  background: transparent;

}



.cs-card.is-top {

  pointer-events: all;

}



.scroll-indicator {

  position: absolute;

  right: 30px;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  flex-direction: column;

  gap: 15px;

  z-index: 1000;

}



.indicator-dot {

  width: 12px;

  height: 12px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.3);

  border: 2px solid transparent;

  transition: all 0.3s ease;

  cursor: pointer;

}



.indicator-dot:hover {

  transform: scale(1.3);

}



.indicator-dot.active {

  background: var(--accent-cyan);

  transform: scale(1.3);

}



.cs-scroll-hint {

  position: absolute;

  bottom: 30px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.35);

  font-size: 0.75rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  animation: hintBounce 2s ease-in-out infinite;

  transition: opacity 0.5s ease;

  pointer-events: none;

}



.cs-scroll-hint svg {

  width: 18px;

  height: 18px;

}



@keyframes hintBounce {



  0%,

  100% {

    transform: translateX(-50%) translateY(0);

  }



  50% {

    transform: translateX(-50%) translateY(6px);

  }

}



/* ============================================

   MEGA MENU

   ============================================ */

.mega-menu {

  position: fixed;

  top: var(--nav-height);

  left: 50%;

  transform: translateX(-50%) translateY(-20px);

  width: 1000px;

  max-width: 90vw;

  background: rgba(255, 255, 255, 0.98);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(43, 77, 141, 0.12);

  border-radius: 16px;

  padding: 20px 0 10px;

  opacity: 0;

  visibility: hidden;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  z-index: 999;

  box-shadow: 0 15px 40px rgba(43, 77, 141, 0.08);

  pointer-events: none;

}



.mega-menu.show {

  opacity: 1;

  visibility: visible;

  transform: translateX(-50%) translateY(0);

  pointer-events: all;

}



.mega-menu .container {

  max-width: 100%;

  margin: 0 auto;

  padding: 0 20px;

}



.mega-menu-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;

  margin-bottom: 15px;

}



.mega-menu-category {

  background: rgba(43, 77, 141, 0.03);

  border: 1px solid rgba(43, 77, 141, 0.12);

  border-radius: 12px;

  padding: 15px;

  transition: all 0.3s ease;

}



.mega-menu-category:hover {

  border-color: var(--accent-cyan);

  background: rgba(110, 192, 251, 0.05);

}



.mega-menu-category h3 {

  font-size: 0.9rem;

  color: #2b4d8d;

  margin-bottom: 10px;

  padding-bottom: 6px;

  border-bottom: 1px solid rgba(43, 77, 141, 0.12);

  font-family: var(--font-display);

  letter-spacing: 0.05em;

}



.mega-menu-items {

  display: flex;

  flex-direction: column;

  gap: 5px;

}



.mega-menu-item {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 6px 8px;

  border-radius: 6px;

  transition: all 0.3s ease;

  color: #334155;

  font-size: 0.8rem;

  text-decoration: none;

}



.mega-menu-item:hover {

  background: rgba(110, 192, 251, 0.1);

  color: #2b4d8d;

  transform: translateX(3px);

}



.mega-menu-item svg {

  width: 14px;

  height: 14px;

  color: #2b4d8d;

  flex-shrink: 0;

}



.mega-menu-footer {

  padding: 12px 20px 0;

  border-top: 1px solid rgba(43, 77, 141, 0.12);

  margin-top: 5px;

  text-align: center;

}



.mega-menu-footer a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  width: 100%;

  padding: 10px;

  background: rgba(43, 77, 141, 0.05);

  border: 1px solid rgba(43, 77, 141, 0.12);

  border-radius: 8px;

  color: #2b4d8d;

  font-size: 0.85rem;

  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;

}



.mega-menu-footer a:hover {

  background: #6ec0fb;

  color: #ffffff;

  border-color: #6ec0fb;

}



.mega-menu-footer a svg {

  width: 16px;

  height: 16px;

  transition: transform 0.3s;

}



.mega-menu-footer a:hover svg {

  transform: translateX(5px);

}



.mega-menu-trigger {

  position: relative;

}



.mega-menu-overlay {

  position: fixed;

  top: var(--nav-height);

  left: 0;

  right: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.3);

  backdrop-filter: blur(3px);

  z-index: 998;

  opacity: 0;

  visibility: hidden;

  transition: all 0.3s ease;

}



.mega-menu-overlay.show {

  opacity: 1;

  visibility: visible;

}



/* Mobile Dropdown CSS-only */

.mobile-dropdown-container {

  width: 100%;

  position: relative;

}



.mobile-dropdown-wrapper {

  display: flex;

  align-items: center;

  width: 100%;

  border: 1px solid transparent;

  border-radius: var(--radius-sm);

  transition: var(--transition);

}



.mobile-dropdown-wrapper:hover {

  background: rgba(110, 192, 251, 0.04);

  border-color: rgba(110, 192, 251, 0.15);

}



.mobile-dropdown-link {

  flex: 1;

  display: block;

  padding: 14px 16px;

  color: #334155;

  font-family: var(--font-display);

  font-size: 1rem;

  text-decoration: none;

  transition: var(--transition);

  text-align: left;

  border-radius: var(--radius-sm) 0 0 var(--radius-sm);

}



.mobile-dropdown-link:hover {

  color: #6ec0fb;

}



.dropdown-checkbox {

  position: absolute;

  opacity: 0;

  width: 0;

  height: 0;

  pointer-events: none;

}



.mobile-dropdown-trigger {

  width: 50px;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: none;

  border: none;

  border-left: 1px solid rgba(43, 77, 141, 0.1);

  cursor: pointer;

  padding: 14px 0;

  color: #334155;

  transition: var(--transition);

  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;

}



.mobile-dropdown-trigger:hover {

  color: #6ec0fb;

  background: rgba(110, 192, 251, 0.04);

}



.dropdown-checkbox:checked~.mobile-sub-links {

  display: block;

}



.mobile-dropdown-container:has(.dropdown-checkbox:checked) .mobile-dropdown-trigger .dropdown-arrow {

  transform: rotate(180deg);

}



.mobile-dropdown-trigger .dropdown-arrow {

  width: 16px;

  height: 16px;

  transition: transform 0.3s ease;

  pointer-events: none;

}



.dropdown-checkbox:checked~.mobile-dropdown-wrapper {

  background: rgba(110, 192, 251, 0.04);

  border-color: rgba(110, 192, 251, 0.15);

}



.dropdown-checkbox:checked~.mobile-dropdown-wrapper .mobile-dropdown-trigger {

  color: #6ec0fb;

  background: rgba(110, 192, 251, 0.04);

}



/* Form validation */

@keyframes shake {



  0%,

  100% {

    transform: translateX(0);

  }



  10%,

  30%,

  50%,

  70%,

  90% {

    transform: translateX(-5px);

  }



  20%,

  40%,

  60%,

  80% {

    transform: translateX(5px);

  }

}



input.error,

textarea.error,

select.error {

  border-color: #ff4d4d !important;

  box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.1);

}



.form-success {

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid var(--accent-cyan);

  color: var(--accent-cyan);

  padding: 15px;

  border-radius: 8px;

  margin-top: 20px;

  font-size: 0.9rem;

  display: none;

  text-align: center;

  font-weight: 500;

}



button[type="submit"]:disabled {

  opacity: 0.7;

  cursor: not-allowed;

}



.dropdown-menu.active {

  display: block !important;

}



.dropdown-trigger.active svg {

  transform: rotate(180deg);

}



/* ============================================

   RESPONSIVE

   ============================================ */

@media (max-width: 1199px) and (min-width: 992px) {

  .nav-links {

    display: flex !important;

    gap: 4px;

  }



  .nav-links>li>a {

    padding: 8px 12px;

    font-size: 0.82rem;

  }



  .nav-actions {

    display: flex !important;

  }



  .nav-cta {

    padding: 12px 20px;

    font-size: 0.8rem;

  }



  .hamburger {

    display: none !important;

  }



  .mobile-nav {

    display: none !important;

  }

}



@media (max-width: 991px) {

  .nav-links {

    display: none !important;

  }



  .nav-actions {

    display: flex !important;

  }



  .hamburger {

    display: flex !important;

  }



  .nav-inner {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    justify-content: center;

    padding: 0 16px;

  }



  .hamburger {

    order: 0;

    justify-self: start;

  }



  .nav-logo1 {

    order: 1;

    justify-self: center;

    margin: 0;

  }



  .nav-logo1 .logo-img {

    width: 80px;

  }



  .nav-actions {

    order: 2;

    justify-self: end;

    margin: 0;

    padding: 0;

  }



  .nav-actions .btn-primary {

    display: none;

  }



  .contact-layout {

    grid-template-columns: 1fr !important;

    gap: 30px !important;

  }



  .contact-info {

    position: static !important;

  }



  .blog-post-layout {

    grid-template-columns: 1fr !important;

    gap: 30px !important;

  }



  .blog-post-sidebar {

    position: static !important;

  }



  .service-grid-60-30 {

    grid-template-columns: 1fr;

    gap: 40px;

  }

}



@media (max-width: 767px) {

  .nav-inner {

    padding: 0 12px;

    grid-template-columns: 1fr auto 1fr;

  }



  .hamburger {

    order: 0;

    justify-self: start;

  }



  .hamburger span {

    width: 22px;

  }



  .nav-logo1 {

    order: 1;

    justify-self: center;

  }



  .nav-logo1 .logo-img {

    width: 65px;

  }



  .nav-actions {

    order: 2;

    justify-self: end;

  }



  .theme-toggle {

    display: none;

    width: 306px;



    height: 306px;

  }



  .section {

    padding: 70px 0;

  }



  .grid-2 {

    grid-template-columns: 1fr;

  }



  .grid-3 {

    grid-template-columns: 1fr;

  }



  .services-grid {

    grid-template-columns: 1fr;

  }



  .hero-stats {

    gap: 24px;

    flex-wrap: wrap;

  }



  .hero-content {

    max-width: 100%;

    text-align: center;

  }



  #hero .container {

    flex-direction: column;

  }



  .footer-grid {

    display: flex;

    flex-direction: row;

    flex-wrap: wrap;

    gap: 20px;

    justify-content: space-between;

  }



  .footer-grid>* {

    flex: 1;

    min-width: 150px;

  }



  /* Hide footer background image on mobile */

  footer::before {

    display: none;

  }



  .contact-form-wrap {

    padding: 30px 20px !important;

  }



  .form-row {

    grid-template-columns: 1fr !important;

    gap: 0 !important;

  }



  .benefits-grid {

    grid-template-columns: 1fr !important;

  }



  .cta-box {

    padding: 48px 28px;

  }



  .why-us-content {

    grid-template-columns: 1fr;

    gap: 40px;

    text-align: center;

  }



  .why-us-text {

    max-width: 100%;

  }



  .why-feature {

    flex-direction: column;

    text-align: left;

    align-items: center;

  }



  .why-us-cta {

    text-align: center;

  }



  .testimonials-grid {

    grid-template-columns: 1fr;

    gap: 20px;

  }



  .timeline::before {

    display: none;

  }



  .timeline-item {

    flex-direction: column !important;

    gap: 24px;

    padding-left: 0;

    margin-bottom: 0;

    background: var(--bg-card);

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 24px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

  }



  .timeline-item:nth-child(odd),

  .timeline-item:nth-child(even) {

    flex-direction: column !important;

  }



  .timeline-item:nth-child(odd) .timeline-content,

  .timeline-item:nth-child(even) .timeline-content {

    margin-left: 0 !important;

    margin-right: 0 !important;

    max-width: 100% !important;

  }



  .timeline-item:hover {

    transform: translateY(-2px);

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);

  }



  .timeline-dot {

    display: flex;

    position: static;

    flex-shrink: 0;

    width: 16px;

    height: 16px;

    border-radius: 50%;

    background: var(--accent-cyan);

    border: 3px solid var(--border);

    margin-bottom: 4px;

  }



  .timeline-content {

    max-width: 100%;

    text-align: left !important;

    margin-left: 0 !important;

    margin-right: 0 !important;

    padding: 0;

  }



  .timeline-content h3 {

    font-size: 1.2rem;

    margin-bottom: 12px;

    color: var(--text-primary);

    font-weight: 600;

  }



  .timeline-content p {

    font-size: 1rem;

    color: var(--text-secondary);

    line-height: 1.7;

    margin-bottom: 0;

  }



  .mission-grid {

    grid-template-columns: 1fr;

  }



  .blog-list-card {

    flex-direction: column;

  }



  .blog-list-img {

    width: 100%;

    height: 160px;

  }



  .stats-grid {

    grid-template-columns: 1fr 1fr;

  }



  .stat-item+.stat-item {

    border-left: none;

  }



  .stat-item:nth-child(2) {

    border-left: 1px solid var(--border);

  }



  .process-steps {

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

  }



  .compliance-list {

    grid-template-columns: 1fr;

  }



  .methodology-steps {

    grid-template-columns: repeat(2, 1fr);

  }



  .feature-grid-2col {

    grid-template-columns: 1fr;

  }



  .service-stats-grid {

    grid-template-columns: repeat(2, 1fr);

  }



  .service-grid {

    grid-template-columns: 1fr;

    gap: 30px;

  }



  .service-image {

    height: 300px;

  }



  .benefits-grid {

    grid-template-columns: 1fr;

  }



  .service-stats {

    grid-template-columns: repeat(2, 1fr);

  }



  .case-study-featured {

    grid-template-columns: 1fr;

    gap: 30px;

    min-height: auto;

    padding: 30px 0;

  }



  .case-study-content {

    padding-right: 0;

  }



  .case-study-content h3 {

    font-size: 1.6rem;

  }



  .case-study-image-frame {

    min-height: 300px;

  }



  .carousel-controls {

    gap: 30px;

  }



  .carousel-btn {

    width: 40px;

    height: 40px;

  }



  .testimonial-scroll-card {

    flex: 0 0 calc(50% - 12px);

  }



  .blog-layout {

    grid-template-columns: 1fr;

  }



  .blog-sidebar {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

  }



  .featured-post {

    grid-template-columns: 1fr;

    padding: 32px;

  }



  .featured-post-badge {

    position: static;

    display: inline-block;

    margin-bottom: 16px;

  }



  .featured-post-visual {

    display: none;

  }



  .featured-post h2 {

    font-size: 1.5rem;

  }



  .blog-post-content {

    padding: 0;

  }



  .service-page-header {

    padding: 120px 0 60px;

  }



  .cs-outer {

    height: calc(2 * 100vh + 100vh);

  }



  .cs-card {

    left: 20px;

    right: 20px;

  }



  .cs-deck {

    padding: 0 20px;

  }



  .scroll-indicator {

    right: 12px;

  }



  .logo-strip-horizontal {

    gap: 20px;

    padding: 0 15px;

  }



  .logo-strip-item {

    height: 140px;

    padding: 15px 10px;

  }



  .logo-circle-wrapper {

    width: 80px;

    height: 80px;

  }



  .company-name-horizontal {

    font-size: 0.75rem;

  }

}



@media (max-width: 480px) {

  .hero-actions {

    flex-direction: column;

  }



  .grid-4 {

    grid-template-columns: 1fr;

  }



  .hero-stats {

    flex-direction: column;

    gap: 20px;

  }



  .services-grid-modern {

    grid-template-columns: 1fr;

  }



  .service-stats-grid {

    grid-template-columns: 1fr;

  }



  .service-cta {

    flex-direction: column;

  }



  .service-cta .btn {

    width: 100%;

    justify-content: center;

  }



  .service-stats {

    grid-template-columns: 1fr;

  }



  .nav-logo1 .logo-img {

    width: 55px;

  }



  .hamburger span {

    width: 20px;

  }



  .theme-toggle {

    display: none;

    width: 32px;

    height: 32px;

  }



  .theme-icon {

    width: 16px;

    height: 16px;

  }



  /* About Page Responsive */

  .timeline::before {

    display: none;

  }



  .timeline {

    display: flex;

    flex-direction: column;

    gap: 24px;

    max-width: 100%;

    padding: 0 16px;

  }



  .timeline-item {

    flex-direction: column !important;

    gap: 16px;

    padding-left: 0;

    color: whitesmoke;

    margin-bottom: 0;

    /* background: #ffffff; */

    /* border: 1px solid #e5e7eb; */

    border-radius: 12px;

    padding: 24px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

  }



  .timeline-item:hover {

    transform: translateY(-2px);

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);

  }



  .timeline-dot {

    display: flex;

    position: static;

    flex-shrink: 0;

    width: 16px;

    height: 16px;

    border-radius: 50%;

    background: #0066ff;

    border: 3px solid #e5e7eb;

    margin-bottom: 4px;

  }



  .timeline-content {

    max-width: 100%;

    text-align: left !important;

    margin-left: 0 !important;

    margin-right: 0 !important;

    padding: 0;

  }



  .timeline-content h3 {

    font-size: 1.2rem;

    margin-bottom: 12px;

    color: var(--text-primary);

    font-weight: 600;

  }



  .timeline-content p {

    font-size: 1rem;

    color: #4b5563;

    line-height: 1.7;

    margin-bottom: 0;

  }



  .mission-grid {

    grid-template-columns: 1fr;

  }



  .case-study-featured {

    gap: 24px;

    padding: 24px 0;

  }



  .case-study-content h3 {

    font-size: 1.3rem;

  }



  .case-study-image-frame {

    min-height: 250px;

  }



  .btn {

    padding: 10px 20px;

    font-size: 0.8rem;

  }



  .testimonial-scroll-card {

    flex: 0 0 100%;

  }



  .testimonials-scroll-nav {

    justify-content: center;

  }



  .logo-strip-horizontal {

    gap: 16px;

    padding: 0 10px;

  }



  .logo-strip-item {

    height: 120px;

    padding: 12px 8px;

  }



  .logo-circle-wrapper {

    width: 70px;

    height: 70px;

  }



  .company-name-horizontal {

    font-size: 0.7rem;

  }



  .cs-outer {

    height: calc(2 * 110vh + 100vh);

  }



  .cs-card {

    left: 12px;

    right: 12px;

  }



  .case-study-content h3 {

    font-size: 1.3rem;

  }



  .case-study-content p {

    font-size: 0.9rem;

  }



  .pricing-features {

    grid-template-columns: 1fr;

  }

}



@media (max-width: 1024px) {

  .grid-4 {

    grid-template-columns: repeat(2, 1fr);

  }



  .stats-grid {

    grid-template-columns: repeat(2, 1fr);

  }



  .stat-item+.stat-item:nth-child(3) {

    border-left: none;

    border-top: 1px solid var(--border);

  }



  .hero-visual {

    display: none;

  }



  #hero .container {

    flex-direction: column;

  }



  .hero-content {

    max-width: 100%;

    text-align: center;

  }



  .blog-layout {

    grid-template-columns: 1fr;

  }



  .blog-sidebar {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

  }



  .case-study-featured {

    grid-template-columns: 1fr;

    gap: 40px;

    min-height: auto;

    padding: 40px 0;

  }



  .case-study-content {

    padding-right: 0;

  }



  .case-study-image-frame {

    min-height: 350px;

  }



  .carousel-controls {

    gap: 40px;

  }



  .carousel-btn {

    width: 45px;

    height: 45px;

  }



  .blog-post-layout {

    display: flex;

    flex-direction: column !important;

  }



  .blog-post-article {

    order: 1 !important;

    width: 100% !important;

  }



  .blog-post-sidebar {

    order: 2 !important;

    width: 100% !important;

    margin-top: 40px !important;

  }



  .services-grid-modern {

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

  }



  .service-stats-grid {

    grid-template-columns: repeat(2, 1fr);

  }



  .methodology-steps {

    grid-template-columns: repeat(2, 1fr);

  }



  .featured-post {

    grid-template-columns: 1fr;

    padding: 40px;

  }



  .featured-post-badge {

    position: static;

    display: inline-block;

    margin-bottom: 16px;

  }



  .featured-post-visual {

    display: none;

  }



  .featured-post h2 {

    font-size: 1.8rem;

  }



  .footer-grid {

    display: flex;

    flex-direction: row;

    flex-wrap: wrap;

    gap: 30px;

    justify-content: space-between;

  }



  .footer-grid>* {

    flex: 1;

    min-width: 200px;

  }



  .cs-outer {

    height: calc(2 * 100vh + 100vh);

  }



  .cs-card {

    left: 20px;

    right: 20px;

  }



  .cs-deck {

    padding: 0 20px;

  }



  .logo-strip-horizontal {

    gap: 24px;

  }



  .logo-circle-wrapper {

    width: 100px;

    height: 100px;

  }

}



/* Print */

@media print {

  .service-sidebar {

    position: static;

  }

}

















/* Make sure the service brick links don't have default link styles */

a.service-brick {

  text-decoration: none;

  color: inherit;

  display: block;

}



/* Keep the hover effect on the brick-link span */

.service-brick:hover .brick-link span {

  color: inherit;

}



#services-preview {

  background: var(--bg-secondary);

  position: relative;

  overflow: hidden;

}



/* Section Header */

.section-header {

  text-align: center;

  margin-bottom: 60px;

}



.section-tag {

  display: inline-block;

  font-size: 0.85rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: var(--accent-cyan);

  margin-bottom: 15px;

}



.section-title {

  font-size: clamp(2rem, 4vw, 3rem);

  color: var(--text-primary);

  margin-bottom: 15px;

}



.section-subtitle {

  font-size: 1.1rem;

  color: var(--text-secondary);

  max-width: 600px;

  margin: 0 auto;

  line-height: 1.6;

}



/* Services Brick Grid */

.services-brick-grid {

  display: flex;

  gap: 0;

  margin: 60px 0 50px;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

}



/* Service Brick */

.service-brick {

  position: relative;

  flex: 1;

  height: 600px;

  /* Increased height for larger screens */

  background: var(--bg-card);

  border: 1px solid var(--border);

  transition: all 0.4s ease;

  cursor: pointer;

  overflow: hidden;

}



.service-brick:first-child {

  border-radius: 20px 0 0 20px;

}



.service-brick:last-child {

  border-radius: 0 20px 20px 0;

}



/* Background Image - Always visible on larger screens */

.brick-bg {

  position: absolute;

  inset: 0;

  background-size: cover;

  background-position: center;

  opacity: 1;

  /* Always visible on larger screens */

  transition: opacity 0.4s ease;

  z-index: 1;

}



/* Dark overlay on background image - always present */

.brick-bg::after {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg,

      rgba(0, 0, 0, 0.3) 0%,

      rgba(0, 0, 0, 0.6) 100%);

  pointer-events: none;

}



/* Brick Content */

.brick-content {

  position: relative;

  z-index: 2;

  height: 100%;

  padding: 30px 25px;

  display: flex;

  /* align-items: center; */

  flex-direction: column;

  transition: all 0.4s ease;

}



.brick-icon {

  width: 60px;

  height: 60px;

  background: rgba(110, 192, 251, 0.15);

  border: 1px solid rgba(110, 192, 251, 0.3);

  border-radius: 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 25px;

  transition: all 0.3s ease;

}



.brick-icon svg {

  width: 30px;

  height: 30px;

  color: var(--accent-cyan);

  transition: all 0.3s ease;

}



/* SVG hover effects - more explicit color control */

.brick-icon svg:hover,

.service-brick:hover .brick-icon svg {

  color: var(--accent-cyan) !important;

  stroke: var(--accent-cyan) !important;

  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3)) brightness(1.2);

}



.brick-content h3 {

  font-size: 1.5rem;

  font-weight: 700;

  margin-bottom: 15px;

  line-height: 1.4;

  transition: all 0.3s ease;

  position: absolute;

  bottom: 80px;

  right: 25px;

  text-align: right;

  max-width: 80%;

}



.brick-content p {

  font-size: 0.95rem;

  line-height: 1.7;

  margin-bottom: 20px;

  transition: all 0.3s ease;

  opacity: 0;

  transform: translateY(20px);

  position: absolute;

  bottom: 100px;

  right: 25px;

  left: 25px;

  width: calc(100% - 50px);

  text-align: right;

  max-height: 0;

  overflow: hidden;

}



/* Dark theme text colors (default) */

[data-theme="dark"] .brick-content h3,

[data-theme="dark"] .brick-content p,

[data-theme="dark"] .brick-link {

  color: white;

}



/* Light theme text colors */

[data-theme="light"] .brick-content h3,

[data-theme="light"] .brick-content p,

[data-theme="light"] .brick-link {

  color: #ffffff;

}



/* Move service name up and show description on hover */

.service-brick:hover .brick-content h3 {

  bottom: 150px;

}



.service-brick:hover .brick-content p {

  opacity: 1;

  transform: translateY(0);

  max-height: 150px;

}



.brick-link {

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 0.85rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;

  transition: all 0.3s ease;

  position: absolute;

  bottom: 25px;

  right: 25px;

}



.brick-link svg {

  width: 16px;

  height: 16px;

  transition: transform 0.3s ease;

}



/* Remove hover effects on small screens - keep images static */

.service-brick:hover {

  border-color: var(--accent-cyan);

  z-index: 10;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

}



/* Icon hover effects - only background changes, icon color stays accent cyan */

.service-brick:hover .brick-icon {

  background: rgba(255, 255, 255, 0.25);

  border-color: rgba(255, 255, 255, 0.6);

}



.service-brick:hover .brick-icon svg {

  color: var(--accent-cyan) !important;

  stroke: var(--accent-cyan) !important;

  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3)) brightness(1.3) !important;

}



.brick-link:hover svg {

  transform: translateX(5px);

}



/* Light theme hover - ensure text stays white */

[data-theme="light"] .service-brick:hover .brick-content h3,

[data-theme="light"] .service-brick:hover .brick-content p,

[data-theme="light"] .service-brick:hover .brick-link {

  color: #ffffff;

}



/* Dark theme hover - ensure text stays accent cyan */

[data-theme="dark"] .service-brick:hover .brick-content h3,

[data-theme="dark"] .service-brick:hover .brick-content p,

[data-theme="dark"] .service-brick:hover .brick-link {

  color: var(--accent-cyan);

}



/* Peek Effect for Bricks */

.service-brick.peek-effect .brick-bg {

  opacity: 0.9;

  transition: opacity 0.4s ease;

}



.service-brick.peek-effect .brick-content {

  background: rgba(0, 0, 0, 0.1);

  /* backdrop-filter: blur(2px); */

}



.service-brick.peek-effect .brick-icon {

  background: rgba(255, 255, 255, 0.9);

  border-color: rgba(255, 255, 255, 0.3);

}



.service-brick.peek-effect .brick-icon svg {

  color: var(--accent-cyan);

}



/* Section Footer */

.section-footer {

  text-align: center;

}





.btn-primary::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 ease;

}



.btn-primary:hover::before {

  left: 100%;

}



.btn-primary:hover {

  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(110, 192, 251, 0.4);

}



.btn-primary svg {

  width: 18px;

  height: 18px;

  transition: transform 0.3s ease;

}



.btn-primary:hover svg {

  transform: translateX(5px);

}



/* Reveal Animations */

.reveal {

  opacity: 0;

  transform: translateY(30px);

  transition: opacity 0.7s ease, transform 0.7s ease;

}



.reveal.visible {

  opacity: 1;

  transform: translateY(0);

}



.fade-up {

  transition-delay: calc(0.1s * var(--delay, 1));

}



/* Responsive Design */

@media (max-width: 1024px) {



  .services-brick-grid {

    flex-direction: column;

    gap: 20px;

    /* Added gap between cards on small screens */

    box-shadow: none;

    /* Remove shadow on mobile */

  }



  .service-brick {

    height: 700px;

    /* was 550px */

  }



  .service-brick:first-child {

    border-radius: 20px !important;

  }



  .service-brick:last-child {

    border-radius: 20px !important;

  }



  /* Background image settings for mobile */

  .brick-bg {

    opacity: 1;

    /* Always visible on mobile */

  }



  .brick-content h3 {

    bottom: 60px;

    font-size: 1.4rem;

  }



  .service-brick:hover .brick-content h3 {

    bottom: 140px;

  }

}



@media (max-width: 768px) {

  .service-brick {

    height: 650px;

    /* was 520px */

  }



  .services-brick-grid {

    gap: 15px;

    /* Slightly smaller gap on smaller screens */

  }



  .brick-content h3 {

    font-size: 1.3rem;

    bottom: 50px;

  }



  .service-brick:hover .brick-content h3 {

    bottom: 130px;

  }



  .service-brick:hover .brick-content p {

    bottom: 80px;

  }

}



@media (max-width: 480px) {

  .services-brick-grid {

    gap: 12px;

    /* Smaller gap on mobile */

  }



  .section-title {

    font-size: 1.8rem;

  }



  .section-subtitle {

    font-size: 1rem;

  }



  .service-brick {

    height: 600px;

    /* was 480px */

  }



  .brick-content {

    padding: 20px;

  }



  .brick-content h3 {

    font-size: 1.2rem;

    bottom: 45px;

    right: 20px;

  }



  .service-brick:hover .brick-content h3 {

    bottom: 120px;

  }



  .brick-content p {

    font-size: 0.85rem;

    bottom: 90px;

    right: 20px;

    left: 20px;

    width: calc(100% - 40px);

  }



  .brick-icon {

    width: 50px;

    height: 50px;

  }



  .brick-icon svg {

    width: 25px;

    height: 25px;

  }



  .btn-primary {

    width: 100%;

    justify-content: center;

  }

}



/* Very small screens */

@media (max-width: 360px) {



  .service-brick {

    height: 560px;

    /* was 420px */

  }



  .brick-content h3 {

    font-size: 1.1rem;

  }

}



/* ── Mobile: Full-width image + text cards ── */

@media (max-width: 1024px) {



  .services-brick-grid {

    flex-direction: column;

    gap: 20px;

    box-shadow: none;

    border-radius: 0;

  }



  .service-brick {

    height: auto !important;

    border-radius: 16px !important;

    display: flex;

    flex-direction: column;

    overflow: hidden;

  }



  /* Image area at the top */

  .brick-bg {

    position: relative !important;

    width: 100%;

    height: 220px;

    flex-shrink: 0;

    opacity: 1 !important;

  }



  .brick-bg::after {

    background: linear-gradient(180deg,

        rgba(0, 0, 0, 0.1) 0%,

        rgba(0, 0, 0, 0.35) 100%);

  }



  /* Text content below the image */

  .brick-content {

    position: relative !important;

    z-index: 2;

    height: auto !important;

    padding: 24px 20px 20px;

    background: var(--bg-card);

    display: flex;

    flex-direction: column;

    gap: 12px;

  }



  .brick-icon {

    margin-bottom: 0;

    width: 48px;

    height: 48px;

  }



  .brick-content h3 {

    position: static !important;

    bottom: auto !important;

    right: auto !important;

    text-align: left !important;

    max-width: 100% !important;

    font-size: 1.25rem;

    color: var(--text-primary) !important;

  }



  .brick-content p {

    position: static !important;

    bottom: auto !important;

    right: auto !important;

    left: auto !important;

    width: 100% !important;

    text-align: left !important;

    opacity: 1 !important;

    transform: none !important;

    max-height: none !important;

    overflow: visible !important;

    color: var(--text-secondary) !important;

    font-size: 0.95rem;

  }



  .brick-link {

    position: static !important;

    bottom: auto !important;

    right: auto !important;

    margin-top: 4px;

    color: var(--accent-cyan) !important;

  }



  /* Override dark/light theme absolute positioning */

  [data-theme="dark"] .brick-content h3,

  [data-theme="light"] .brick-content h3 {

    color: var(--text-primary) !important;

  }



  [data-theme="dark"] .brick-content p,

  [data-theme="light"] .brick-content p {

    color: var(--text-secondary) !important;

  }



  /* Remove hover transforms since layout is now static */

  .service-brick:hover .brick-content h3 {

    bottom: auto !important;

  }



  .service-brick:hover .brick-content p {

    bottom: auto !important;

    max-height: none !important;

  }

}



@media (max-width: 768px) {

  .brick-bg {

    height: 200px;

  }

}



@media (max-width: 480px) {

  .brick-bg {

    height: 180px;

  }



  .brick-content {

    padding: 20px 16px 16px;

  }



  .brick-content h3 {

    font-size: 1.1rem !important;

  }

}



@media (max-width: 1024px) {



  .services-brick-grid {

    flex-direction: column;

    gap: 20px;

    box-shadow: none;

    border-radius: 0;

  }



  .service-brick {

    height: auto !important;

    border-radius: 16px !important;

    display: flex;

    flex-direction: column;

    overflow: hidden;

  }



  .brick-bg {

    position: relative !important;

    width: 100%;

    height: 220px;

    flex-shrink: 0;

    opacity: 1 !important;

  }



  .brick-content {

    position: relative !important;

    z-index: 2;

    height: auto !important;

    padding: 24px 20px 20px;

    background: var(--bg-card);

    display: flex;

    flex-direction: column;

    gap: 12px;

  }



  .brick-icon {

    margin-bottom: 0;

    width: 48px;

    height: 48px;

  }



  .brick-content h3 {

    position: static !important;

    text-align: left !important;

    max-width: 100% !important;

    font-size: 1.25rem;

    color: var(--text-primary) !important;

  }



  .brick-content p {

    position: static !important;

    width: 100% !important;

    text-align: left !important;

    opacity: 1 !important;

    transform: none !important;

    max-height: none !important;

    overflow: visible !important;

    color: var(--text-secondary) !important;

    font-size: 0.95rem;

  }



  .brick-link {

    position: static !important;

    margin-top: 4px;

    color: var(--accent-cyan) !important;

  }



  .service-brick:hover .brick-content h3,

  .service-brick:hover .brick-content p {

    bottom: auto !important;

    max-height: none !important;

  }

}



@media (max-width: 768px) {

  .brick-bg {

    height: 200px;

  }

}



@media (max-width: 480px) {

  .brick-bg {

    height: 180px;

  }



  .brick-content {

    padding: 18px 16px;

  }



  .brick-content h3 {

    font-size: 1.1rem !important;

  }

}



/* DESKTOP: 3 columns; TABLET: 2 columns; MOBILE: 1 column */

.services-grid-modern {

  grid-template-columns: repeat(3, 1fr) !important;

  gap: 30px !important;

}



@media (max-width: 1024px) {

  .services-grid-modern {

    grid-template-columns: repeat(2, 1fr) !important;

    gap: 24px !important;

  }

}



@media (max-width: 768px) {

  .services-grid-modern {

    grid-template-columns: 1fr !important;

    gap: 20px !important;

  }

}



@media (max-width: 480px) {

  .services-grid-modern {

    grid-template-columns: 1fr !important;

    gap: 18px !important;

  }

}



/* MAIN SERVICE PAGES LIGHT THEME */

.service-page {

  background: #ffffff !important;

  color: #1f2937 !important;

}



.service-page h1,

.service-page h2,

.service-page h3,

.service-page h4,

.service-page h5,

.service-page h6 {

  color: var(--accent-blue) !important;

}



.service-page p,

.service-page a,

.service-page li,

.service-page .service-feature-item,

.service-page .service-content,

.service-page .section-tag {

  color: var(--accent-blue) !important;

}



.service-page .service-feature-item svg,

.service-page .service-content svg {

  color: #0f172a !important;

}



.service-page .btn-primary {

  color: #ffffff !important;

  background: var(--accent-cyan) !important;

}

.service-page .btn-primary:hover {

  color: var(--accent-blue) !important;

  /* background:var(--accent-cyan) !important; */

}



.service-page .btn-outline {

  color: #2b4d8d !important;

  border-color: #6ec0fb !important;

}



/* ============================================

   LOADER STYLES

   ============================================ */

.loader-wrapper {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 9999;

  transition: opacity 0.5s ease, visibility 0.5s ease;

}



.loader-wrapper.hidden {

  opacity: 0;

  visibility: hidden;

}



.loader {

  width: 64px;

  height: 64px;

  position: relative;

  background-image:

    linear-gradient(var(--accent-cyan) 16px, transparent 0),

    linear-gradient(var(--accent-blue) 16px, transparent 0),

    linear-gradient(var(--accent-blue) 16px, transparent 0),

    linear-gradient(var(--accent-cyan) 16px, transparent 0);

  background-repeat: no-repeat;

  background-size: 16px 16px;

  background-position: left top, left bottom, right top, right bottom;

  animation: rotate 1s linear infinite;

  filter: drop-shadow(0 0 20px var(--accent-glow));

}



@keyframes rotate {

  0% {

    width: 64px;

    height: 64px;

    transform: rotate(0deg)
  }

  50% {

    width: 30px;

    height: 30px;

    transform: rotate(180deg)
  }

  100% {

    width: 64px;

    height: 64px;

    transform: rotate(360deg)
  }

}



/* Hide main content initially */

body.loaded .loader-wrapper {

  opacity: 0;

  visibility: hidden;

}



/* ============================================

   RESPONSIVE CONTACT FORM STYLES

   ============================================ */



/* Tablet styles */

@media (max-width: 768px) {

  .contact-single-wrap {

    max-width: 100% !important;

    padding: 30px 20px !important;

    margin: 0 auto;

  }



  .form-grid {

    grid-template-columns: 1fr !important;

    gap: 16px !important;

  }



  .form-row {

    flex-direction: column !important;

    gap: 16px !important;

  }



  .contact-form-content h1 {

    font-size: 1.8rem !important;

    margin-bottom: 16px !important;

  }



  .form-input,

  .form-textarea {

    padding: 12px 16px 12px 42px !important;

    font-size: 0.95rem !important;

  }



  .input-icon,

  .textarea-icon {

    width: 18px !important;

    height: 18px !important;

    left: 14px !important;

  }



  .form-input:focus+.input-icon,

  .form-textarea:focus+.textarea-icon {

    left: calc(100% - 32px) !important;

  }



  .btn-primary {

    padding: 14px 20px !important;

    font-size: 0.95rem !important;

  }

}



/* Mobile styles */

@media (max-width: 480px) {

  .contact-single-wrap {

    padding: 20px 16px !important;

  }



  .contact-form-content h1 {

    font-size: 1.6rem !important;

    margin-bottom: 14px !important;

  }



  .form-grid {

    gap: 14px !important;

  }



  .form-row {

    gap: 14px !important;

  }



  .form-group {

    margin-bottom: 0 !important;

  }



  .form-label {

    font-size: 0.85rem !important;

    margin-bottom: 6px !important;

  }



  .form-input,

  .form-textarea {

    padding: 10px 14px 10px 38px !important;

    font-size: 0.9rem !important;

    border-radius: 10px !important;

  }



  .input-icon,

  .textarea-icon {

    width: 16px !important;

    height: 16px !important;

    left: 12px !important;

  }



  .form-input:focus+.input-icon,

  .form-textarea:focus+.textarea-icon {

    left: calc(100% - 28px) !important;

  }



  .textarea-icon {

    top: 12px !important;

  }



  .btn-primary {

    padding: 12px 16px !important;

    font-size: 0.9rem !important;

    border-radius: 10px !important;

  }



  .form-error {

    font-size: 0.8rem !important;

    margin-top: 4px !important;

  }

}



/* Small mobile styles */

@media (max-width: 360px) {

  .contact-single-wrap {

    padding: 16px 12px !important;

  }



  .contact-form-content h1 {

    font-size: 1.4rem !important;

  }



  .form-input,

  .form-textarea {

    padding: 10px 12px 10px 36px !important;

    font-size: 0.85rem !important;

  }



  .input-icon,

  .textarea-icon {

    width: 14px !important;

    height: 14px !important;

    left: 10px !important;

  }



  .form-input:focus+.input-icon,

  .form-textarea:focus+.textarea-icon {

    left: calc(100% - 26px) !important;

  }



  .btn-primary {

    padding: 10px 14px !important;

    font-size: 0.85rem !important;

  }

}

/* ── HOW CYBERSILO PROTECTS SECTION ── */

.cybersilo-process {

  width: 100%;

  margin: 0 auto;

  padding: 80px 32px;

  font-family: 'Poppins', sans-serif;

  background: #ffffff;

}



.process-header {

  text-align: center;

  margin-bottom: 56px;

}



.process-header h2 {

  font-size: clamp(1.6rem, 3vw, 2.4rem);

  font-weight: 700;

  color: #1a2340;

  letter-spacing: -0.01em;

}



.process-rule {

  width: 46px;

  height: 4px;

  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));

  border-radius: 2px;

  margin: 14px auto 18px;

}



.process-header p {

  font-size: 0.92rem;

  color: #64748b;

  font-weight: 400;

}



.process-timeline {

  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

}



/* Horizontal connector line */

.process-timeline::before {

  content: '';

  position: absolute;

  top: 22px;

  left: 12.5%;

  right: 12.5%;

  height: 2px;

  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-cyan) 60%, #c0392b 100%);

  z-index: 0;

}



.process-step {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  padding: 0 10px;

  position: relative;

  z-index: 1;

}



.process-badge {

  width: 44px;

  height: 44px;

  border-radius: 50%;

  background: linear-gradient(145deg, #1f3a6e, var(--accent-blue));

  color: #fff;

  font-size: 0.95rem;

  font-weight: 600;

  font-family: 'Poppins', sans-serif;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  z-index: 2;

  box-shadow: 0 0 0 3px #fff, 0 3px 14px rgba(43, 77, 141, 0.35);

  flex-shrink: 0;

}



.process-icon {

  margin-top: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 46px;

}



.process-icon svg {

  width: 36px;

  height: 36px;

}



.process-title {

  margin-top: 14px;

  font-size: 0.92rem;

  font-weight: 600;

  color: #1a2340;

}



.process-desc {

  margin-top: 8px;

  font-size: 0.78rem;

  color: #64748b;

  line-height: 1.75;

  font-weight: 400;

  max-width: 190px;

}



/* Responsive */

@media (max-width: 720px) {

  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 48px 16px;
  }

  .process-timeline::before {
    display: none;
  }

}

@media (max-width: 440px) {

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}