/* Modern Grid Layout Design */

:root {
  --primary-color: #008cff;
  --secondary-color: #000826;
  --accent-color: #ffffff;
  --accent-light-blue: #98d2f9;
  --accent-purple: #6876a5;
  --light-gray: #c5c5c5;
  --dark-gray: #484848;
  --text-color: #000826;
  --light-text: #ffffff;
  --font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --grid-gap: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f5f5f5;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* Grid Layouts */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, transparent, rgba(0, 140, 255, 0.5), transparent) 1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav {
  display: flex;
  justify-content: center;
  padding: 0.2rem 0.3rem 0.2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
}

.logo {
  opacity: 0;
  transform: translateY(-15px);
  transition: opacity 0.4s ease, transform 0.4s ease, height 0.4s ease;
  height: 0; /* Start with no height when hidden */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo.visible {
  opacity: 1;
  transform: translateY(0);
  animation: logoAppear 0.6s ease-out;
  height: 75px; /* Show full height when visible */
}

.logo.disappearing {
  animation: logoDisappear 0.6s ease-out forwards;
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: translateY(-15px);
    height: 0;
    margin-bottom: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    height: 75px;
    margin-bottom: 0.3rem;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logoDisappear {
  0% {
    opacity: 1;
    transform: translateY(0);
    height: 75px;
    margin-bottom: 0.3rem;
  }
  30% {
    opacity: 0.9;
    height: 75px;
    margin-bottom: 0.3rem;
  }
  100% {
    opacity: 0;
    transform: translateY(-15px);
    height: 0;
    margin-bottom: 0;
  }
}

.logo img {
  height: 75px;
  width: auto;
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  padding: 0.1rem 0;
  margin-right: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--light-text);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-light-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Disable underline effect for engage button */
.nav-links .engage-btn::after {
  content: "✦" !important;
  position: absolute !important;
  right: -15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 0.6rem !important;
  color: #e0aaff !important;
  animation: sparkle 2s ease-in-out infinite 1s !important;
  opacity: 0.6 !important;
  width: auto !important;
  height: auto !important;
  background-color: transparent !important;
  bottom: auto !important;
  left: auto !important;
}

.nav-links .engage-btn:hover::after {
  width: auto !important;
  animation-duration: 1s !important;
  opacity: 1 !important;
}

/* Engage Text Styling - Spacey Blue Effects */
.engage-btn {
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  background: linear-gradient(45deg, #008cff, #98d2f9, #008cff, #98d2f9, #008cff) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: 0 0 10px rgba(0, 140, 255, 0.5), 0 0 20px rgba(152, 210, 249, 0.3), 0 0 30px rgba(152, 210, 249, 0.2) !important;
  transition: all 0.3s ease !important;
  animation: blueGradientShift 4s ease-in-out infinite, spaceyGlow 3s ease-in-out infinite !important;
  position: relative !important;
  filter: drop-shadow(0 0 8px rgba(0, 140, 255, 0.4)) !important;
}

.engage-btn::before {
  content: "✦" !important;
  position: absolute !important;
  left: -15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 0.8rem !important;
  color: #98d2f9 !important;
  animation: sparkle 2s ease-in-out infinite !important;
  opacity: 0.7 !important;
}

.engage-btn::after {
  content: "✦" !important;
  position: absolute !important;
  right: -15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 0.6rem !important;
  color: #98d2f9 !important;
  animation: sparkle 2s ease-in-out infinite 1s !important;
  opacity: 0.6 !important;
}

.engage-btn:hover {
  transform: translateY(-1px) !important;
  text-shadow: 0 0 15px rgba(0, 140, 255, 0.8), 0 0 25px rgba(152, 210, 249, 0.5), 0 0 35px rgba(152, 210, 249, 0.3) !important;
  filter: drop-shadow(0 0 12px rgba(0, 140, 255, 0.6)) !important;
  letter-spacing: 3px !important;
}

.engage-btn:hover::before,
.engage-btn:hover::after {
  animation-duration: 1s !important;
  opacity: 1 !important;
}

@keyframes blueGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes spaceyGlow {
  0% {
    text-shadow: 0 0 10px rgba(0, 140, 255, 0.5), 0 0 20px rgba(152, 210, 249, 0.3), 0 0 30px rgba(152, 210, 249, 0.2);
  }
  50% {
    text-shadow: 0 0 15px rgba(0, 140, 255, 0.7), 0 0 25px rgba(152, 210, 249, 0.4), 0 0 35px rgba(152, 210, 249, 0.3);
  }
  100% {
    text-shadow: 0 0 10px rgba(0, 140, 255, 0.5), 0 0 20px rgba(152, 210, 249, 0.3), 0 0 30px rgba(152, 210, 249, 0.2);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  font-size: 2.1rem;
  cursor: pointer;
  color: var(--light-text);
  margin-top: 0.5rem;
  z-index: 1002;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.menu-text {
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #008cff, #98d2f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile navigation styles */
.nav-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  padding: 0.1rem 0;
  margin-right: 1.5rem;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 280px;
  height: 100vh;
  height: 100dvh; /* Use dynamic viewport height for mobile */
  background-color: rgba(10, 10, 10, 0.95);
  padding: 80px 0 0;
  z-index: 999;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  animation: slideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  margin: 0;
  border: none;
  outline: none;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav-links.active a {
  color: var(--light-text);
  padding: 15px 30px;
  margin: 5px 0;
  font-size: 1.4rem;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-links.active a:hover {
  color: var(--accent-light-blue);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.menu-toggle.active i:before {
  content: "\f00d"; /* Font Awesome close icon */
}

/* No-scroll class to prevent scrolling */
.no-scroll {
  overflow: hidden;
}

html.no-scroll,
body.no-scroll {
  height: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.hero-video {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Black background */
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

.video-hidden {
  opacity: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 4rem;
  color: var(--light-text);
  position: relative;
  z-index: 2;
}

.hero-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  max-width: 60%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(0, 140, 255, 0.6));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
}

.hero-cta .btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-light-blue));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 140, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-cta .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 140, 255, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--light-text);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Company Introduction Section */
.company-intro {
  background-color: #f5f5f5;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.company-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 140, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.company-intro .grid-layout {
  min-height: 500px;
}

.intro-content {
  grid-column: 1 / 8;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.intro-visual {
  grid-column: 8 / 13;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.intro-visual:hover .intro-image {
  transform: scale(1.05);
}

.intro-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.intro-tagline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-light-blue));
}

.intro-heading {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  line-height: 1.2;
  position: relative;
}

.intro-heading::before {
  content: "\201C";
  position: absolute;
  left: -40px;
  top: -20px;
  font-size: 6rem;
  color: var(--accent-light-blue);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-color);
  opacity: 0.9;
  max-width: 90%;
}

.intro-cta {
  position: relative;
  margin-top: 1rem;
}

.intro-cta .btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-light-blue));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 25px rgba(0, 140, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.intro-cta .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.intro-cta .btn:hover::before {
  left: 100%;
}

.intro-cta .btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 140, 255, 0.5);
}

/* Angled Image Showcase Section */
.showcase-section {
  padding: 0;
  background-color: #1e3a7b;
}

.showcase-item {
  display: flex;
  height: 500px;
  position: relative;
  overflow: hidden;
  background-color: #1e3a7b;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
  background-color: #2a4494;
}

.showcase-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Horizontal clip for all showcase images */
.showcase-image {
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  transition: clip-path 0.5s ease;
}

/* Reverse horizontal clip for alternating sections */
.showcase-item.reverse .showcase-image {
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
}

/* Horizontal overlay effect */
.showcase-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 140, 255, 0.2) 0%, transparent 25%, transparent 75%, rgba(152, 210, 249, 0.2) 100%);
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.showcase-item:hover .showcase-image::after {
  opacity: 0.5;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.05);
}

.showcase-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  position: relative;
  z-index: 2;
}

/* Horizontal edge for content sections */
.showcase-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  background-color: #1e3a7b;
  z-index: 1;
}

.showcase-item.reverse .showcase-content::before {
  background-color: #2a4494;
}

.showcase-item .showcase-content::before {
  top: -15px;
  transform: skewY(-1.5deg);
}

.showcase-item.reverse .showcase-content::before {
  bottom: -15px;
  top: auto;
  transform: skewY(1.5deg);
}

.showcase-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  color: var(--light-text);
}

.showcase-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-light-blue));
}

.showcase-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

/* Industries Served Section */
.industries-served {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-light-blue));
}

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1rem auto 0;
  opacity: 0.8;
  color: var(--light-text);
}

.industries-served .section-title p {
  color: var(--light-text);
  opacity: 0.9;
}

.horizontal-scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.horizontal-scroll-content {
  display: flex;
  gap: 20px;
  padding: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.horizontal-scroll-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.industry-card {
  flex: 0 0 300px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-light-blue);
}

.industry-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.industry-card p {
  color: var(--light-text);
  opacity: 0.9;
  font-size: 0.9rem;
}

.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--light-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Technology Expertise Section */
.technology-expertise {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.technology-expertise .section-title h2 {
  color: var(--light-text);
}

.technology-expertise .section-title p {
  color: var(--light-text);
  opacity: 0.9;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.expertise-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.expertise-icon i {
  font-size: 2.5rem;
  color: var(--accent-light-blue);
}

.expertise-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--light-text);
}

.expertise-card p {
  color: var(--light-text);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* Client Partnerships Section */
.client-partnerships {
  background-color: #0a1a40;
  color: var(--light-text);
}

.client-partnerships .section-title h2 {
  color: white;
}

.client-partnerships .section-title p {
  color: rgba(255, 255, 255, 0.85);
  opacity: 0.9;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partnership-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.7);
  transition: all 0.5s ease;
  border-radius: 10px;
  background-color: #e0e0e0;
  padding: 1rem;
}

.partnership-logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.partnership-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  background-color: var(--secondary-color);
  color: var(--light-text);
  min-height: 80vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  text-align: left;
  color: var(--light-text);
  position: relative;
  padding-bottom: 1rem;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-light-blue));
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent-light-blue);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  font-family: var(--font-family);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
  padding-right: 2.5rem;
}

.contact-form select option {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Form status messages */
.form-status {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  display: none;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.success {
  background-color: rgba(39, 174, 96, 0.2);
  color: #2ecc71;
  border-left: 4px solid #2ecc71;
}

.form-status.error {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border-left: 4px solid #e74c3c;
}

.form-status.loading {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border-left: 4px solid #3498db;
}

.submit-button {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-light-blue));
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #000000;
  color: var(--light-text);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  grid-column: 1 / 6;
}

.footer-logo img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  grid-column: 6 / 13;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--light-text);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-light-blue);
}

/* Social links removed as requested */

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    padding: 0 2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .intro-content {
    grid-column: 1 / 7;
  }

  .intro-visual {
    grid-column: 7 / 13;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-column: 1;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
  }

  .intro-content {
    grid-column: 1 / -1;
  }

  .intro-visual {
    grid-column: 1 / -1;
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo,
  .footer-links,
  .social-links,
  .copyright {
    grid-column: 1;
  }

  .footer-links,
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  /* Mobile navigation styles for engage button */
  .nav-links.active .engage-btn {
    margin-top: 1rem;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
  }

  .hero-logo img {
    max-width: 80%;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-item.large {
    grid-column: 1;
    height: 400px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive styles for showcase section */
  .showcase-item,
  .showcase-item.reverse {
    flex-direction: column;
    height: auto;
  }

  .showcase-image {
    height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }

  .showcase-item.reverse .showcase-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
  }

  .showcase-content {
    padding: 3rem 2rem;
  }

  .showcase-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-logo img {
    max-width: 90%;
  }

  .showcase-image {
    height: 250px;
  }

  .showcase-content {
    padding: 2.5rem 1.5rem;
  }

  .showcase-content h3 {
    font-size: 1.8rem;
    padding-bottom: 0.8rem;
  }

  .showcase-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .intro-heading {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .industry-card {
    flex: 0 0 250px;
    height: 300px;
  }

  .showcase-image {
    height: 200px;
  }

  .showcase-content {
    padding: 2rem 1rem;
  }

  .showcase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .showcase-content h3::after {
    width: 60px;
    height: 2px;
  }

  .showcase-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
