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

:root {
  /* Colors */
  --primary: #0047AB;
  --primary-dark: #002855;
  --primary-light: #4A90E2;
  --secondary: #FF6B35;
  --secondary-light: #FFB347;
  --neutral-bg: #F8F9FA;
  --gray-text: #6C757D;
  --white: #FFFFFF;
  --border-glass: rgba(0, 71, 171, 0.15);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
  --grad-accent: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  --grad-dark-overlay: linear-gradient(135deg, rgba(0, 71, 171, 0.9), rgba(0, 40, 85, 0.95));

  /* Typography */
  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 71, 171, 0.1);
  --shadow-md: 0 8px 32px rgba(0, 71, 171, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 71, 171, 0.15);
  --shadow-hover: 0 12px 48px rgba(0, 71, 171, 0.2);

  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--gray-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: clip;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

/* Typography Classes */
.heading-hero {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
}

.heading-section {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.heading-sub {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

.text-body {
  font-size: 1.125rem;
}

.text-small {
  font-size: 0.875rem;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
}

.glass-panel-dark {
  background: rgba(0, 40, 85, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-pill {
  background: rgba(0, 71, 171, 0.08);
  border: 1px solid var(--primary);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 1.5rem 0;
}

.site-header.scrolled {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 1.2rem 2.5rem;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  background: var(--white);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 120%;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-overlay .nav-menu {
  flex-direction: column;
  text-align: center;
  gap: 2rem;
}

.mobile-menu-overlay .nav-link {
  font-size: 2rem;
  font-family: var(--font-heading);
}
.logo img{
    height: 45px;
}
@media (max-width: 1200px) {
  .nav-container .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
  .logo img{
      height: 40px;
  }
  .nav-container {
    padding: 1rem 1.5rem;
    width: 95%;
  }

  .desktop-only {
    display: none !important;
  }
}

/* Animations Variables */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes float-rotate {

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

  50% {
    transform: rotate(5deg);
  }
}

@keyframes pulse-scale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Reveal Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding-top: 6rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: url('../images/colorful-plastic-polymer-granules-cable.webp') center/cover;
  filter: blur(8px);
  z-index: 0;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 40, 85, 0.95) 0%, rgba(0, 40, 85, 0.75) 100%);
  z-index: 1;
}

.site-footer>.container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col .logo {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  margin-bottom: 1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.social-icon:hover {
  background: var(--secondary);
  transform: scale(1.1) rotate(5deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Animated Gradient Hero (Silky Gradient) */
.hero.framer-hero {
  background: linear-gradient(to bottom left, #000000, #00122e, #0047AB, #00122e, #000000);
  background-size: 300% 300%;
  animation: silkyGradient 15s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes silkyGradient {
  0% {
    background-position: 100% 0%;
  }

  50% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 100% 0%;
  }
}

.hero-grain,
.framer-hero::before,
.framer-hero::after,
.hero-gradient-layer {
  display: none;
}

/* Glowing Blue CTA */
.glowing-btn {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(0, 71, 171, 0.6), 0 0 40px rgba(0, 71, 171, 0.3) inset;
  border: 1px solid rgba(74, 144, 226, 0.4);
  transition: all 0.4s ease;
}

.glowing-btn:hover {
  box-shadow: 0 0 30px rgba(74, 144, 226, 0.8), 0 0 50px rgba(74, 144, 226, 0.4) inset !important;
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px) scale(1.02);
}

.hero-container {
  position: relative;
  z-index: 10;
}

/* NEW STYLES: Sticky Stack Sections */
.sticky-wrapper {
  position: relative;
  width: 100%;
}

.sticky-section {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.sticky-section:nth-child(1) {
  z-index: 10;
  background: var(--white);
}

.sticky-section:nth-child(2) {
  z-index: 11;
  background: var(--primary-dark);
  color: var(--white);
}

.sticky-section:nth-child(3) {
  z-index: 12;
  background: var(--white);
}

.sticky-section:nth-child(4) {
  z-index: 13;
  background: var(--primary-dark);
  color: var(--white);
}
.sticky-content {
  max-width: 1400px;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sticky-content-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {

  .sticky-content,
  .sticky-content-reverse {
    flex-direction: column !important;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
    margin-top: 2rem;
  }

  .sticky-content h2 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }

  .sticky-content p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
}

/* NEW STYLES: Swiper */
.swiper-container {
  width: 100%;
  padding: 2rem 0 4rem;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet-active {
  background: var(--secondary) !important;
}

/* NEW STYLES: Newsletter */
.section-newsletter {
  padding: 6rem 0;
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.newsletter-btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--secondary-light);
  transform: scale(1.05);
}

/* Bento Image Overlays */
.industry-card-bg {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0 !important;
  transition: var(--transition-normal);
}

.industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 40, 85, 0.9) 0%, rgba(0, 40, 85, 0.4) 100%);
  z-index: 1;
}

.industry-card>*:not(.industry-card-bg) {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.industry-card .industry-title {
  color: var(--white);
}

.industry-card:hover .industry-card-bg {
  transform: scale(1.1);
}

/* Page Loader Animations */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
}

.rotating-circuit {
  width: 100%;
  height: 100%;
  animation: rotate-circuit 10s linear infinite;
  display: block;
}

.centered-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: auto;
  display: block;
  z-index: 2;
}

@keyframes rotate-circuit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Commitments Section */
.section-commitments {
  padding: 8rem 0;
  background-color: var(--white);
  color: var(--primary-dark);
}

.commitment-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.commitment-eyebrow {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.commitment-text {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.commitment-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, #002855 0%, #0047AB 100%);
  border-radius: 24px;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.commitment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: none;
}

.commitment-card:hover::before {
  left: 100%;
  transition: 0.8s ease-in-out;
}

.commitment-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.commitment-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.commitment-icon {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.commitment-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.2rem;
  display: inline-block;
  border-radius: 8px;
  border-right: 4px solid var(--secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.commitment-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
    .commitment-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2.5rem;
        margin-top: 4rem;
    }
}