@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* Base Styles */
:root {
  --primary-color: #003f8c;
  --primary-hover: #0056b3;
  --bg-color: #f4f6f8;
  --text-dark: #333;
  --text-light: #555;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-hover: 0 15px 35px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header & Navigation */
header {
  background: #fff;
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 60px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav a:hover, nav a.active {
  color: var(--primary-color);
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 250px;
  padding: 8px 0;
  background: #fff;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.dropdown-menu a {
  display: block;
  margin: 0;
  padding: 9px 16px;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--bg-color);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-dropdown > a::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0, 63, 140, 0.75), rgba(0, 0, 0, 0.65));
}

.hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInDown 1s ease-out;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Cards Section */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-color);
}

.card-image-wrapper {
  position: relative;
}

.tag-logo {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 55px !important;
  height: auto !important;
  background: rgba(255,255,255,0.85);
  border-radius: 4px;
  padding: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  border: none !important;
  object-fit: contain !important;
}

.card h3 {
  color: var(--primary-color);
  margin: 25px 20px 10px;
  font-size: 1.4rem;
}

.card p {
  color: var(--text-light);
  margin: 0 20px 25px;
  flex-grow: 1;
}

/* Content Sections (Solutions, Managed, About, Contact) */
.content {
  background: #fff;
  padding: 50px 60px;
  margin: 50px auto;
  max-width: 900px;
  flex-grow: 1;
  width: 90%;
  box-sizing: border-box;
}

.content h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e5ec;
  padding-bottom: 10px;
}

.content h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
}

.content p, .content ul {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.content ul {
  padding-left: 20px;
}

.content li {
  margin-bottom: 12px;
}

.solution-page-hero {
  position: relative;
  min-height: 330px;
  margin: -10px 0 38px;
  overflow: hidden;
  border-radius: 8px;
  background: #002d62;
  box-shadow: 0 14px 32px rgba(0, 31, 72, 0.14);
}

.solution-page-image {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
  object-position: center;
  opacity: 0.9;
}

.solution-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 28, 64, 0.9), rgba(0, 28, 64, 0.2));
}

.solution-page-hero-content {
  position: absolute;
  left: 38px;
  bottom: 36px;
  z-index: 1;
  max-width: 75%;
  color: #fff;
}

.solution-page-hero-content span {
  color: #f48024;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.solution-page-hero-content h1 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
}

/* Network Solutions Detail */
.network-page {
  max-width: 1180px;
  width: 92%;
  padding: 42px 0 70px;
  background: #fff;
}

.network-page .solution-page-hero {
  min-height: 440px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.network-page .solution-page-image {
  height: 440px;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.network-page .solution-page-hero::after {
  background: linear-gradient(90deg, rgba(0, 30, 70, 0.48) 0%, rgba(0, 30, 70, 0.2) 42%, rgba(0, 30, 70, 0.02) 100%);
}

.network-page .solution-page-hero-content {
  left: 56px;
  bottom: 54px;
  max-width: 610px;
}

.network-page .solution-page-hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.02em;
}

.network-page .network-intro {
  grid-template-columns: 0.28fr 1fr;
  gap: 48px;
  padding: 58px 6% 48px;
  border-bottom: 0;
}

.network-page .network-intro p {
  max-width: 780px;
  font-size: 1.55rem;
  line-height: 1.55;
}

.network-page .network-stats {
  margin: 0 6%;
  padding: 0 0 48px;
  border-bottom: 1px solid #d8e0e7;
}

.network-page .network-section {
  padding: 58px 6% 50px;
}

.network-page .network-capabilities {
  padding: 0 6% 58px;
}

.network-page .capability-tile {
  min-height: 170px;
  padding: 28px 24px;
  border-top: 4px solid #003f8c;
  background: #f4f6f8;
}

.network-page .network-benefits {
  margin: 0 6%;
  padding: 46px 38px;
}

.network-page .network-close {
  padding: 44px 6% 0;
}

.network-intro {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 8px 0 34px;
  border-bottom: 1px solid #d8e0e7;
}

.network-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--text-dark);
  font-size: 1.45rem;
  line-height: 1.5;
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0 42px;
}

.network-stats div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 2px solid #f48024;
}

.network-stats strong {
  color: var(--primary-color);
  font-size: 1.6rem;
}

.network-stats span {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.network-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  padding: 35px 0 42px;
}

.network-section-heading h2,
.network-benefits h2 {
  margin: 10px 0 0;
  color: var(--primary-color);
  font-size: 2rem;
  line-height: 1.2;
}

.network-section-copy p {
  margin: 0 0 18px;
  color: var(--text-light);
  line-height: 1.75;
}

.network-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 10px 0 48px;
}

.capability-tile {
  padding: 24px 22px;
  border-top: 3px solid var(--primary-color);
  background: #f4f6f8;
}

.capability-tile > span {
  color: #f48024;
  font-weight: 700;
}

.capability-tile h3 {
  margin: 14px 0 8px;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.capability-tile p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.network-benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  padding: 38px 30px;
  background: #002d62;
  color: #fff;
}

.network-benefits h2 {
  color: #fff;
}

.network-benefits ul {
  margin: 0;
  padding-left: 20px;
}

.network-benefits li {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.network-close {
  padding: 32px 0 0;
  text-align: center;
}

.network-close p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--text-light);
}

/* Cisco-inspired Cloud and Support Details */
.cisco-detail {
  max-width: 1180px;
  width: 92%;
  padding: 42px 0 70px;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.cisco-detail .solution-page-hero {
  min-height: 440px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.cisco-detail .solution-page-image {
  height: 440px;
  object-fit: cover;
  opacity: 0.84;
}

.cisco-detail .solution-page-hero::after {
  background: linear-gradient(90deg, rgba(0, 30, 70, 0.94) 0%, rgba(0, 30, 70, 0.58) 48%, rgba(0, 30, 70, 0.08) 100%);
}

.support-detail .solution-page-image {
  opacity: 1;
}

.support-detail .solution-page-hero::after {
  background: linear-gradient(90deg, rgba(0, 30, 70, 0.48) 0%, rgba(0, 30, 70, 0.2) 48%, rgba(0, 30, 70, 0.02) 100%);
}

.cisco-detail .solution-page-hero-content {
  left: 56px;
  bottom: 54px;
  max-width: 680px;
}

.cisco-detail .solution-page-hero-content h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  letter-spacing: -0.02em;
}

.cisco-detail .solution-page-hero-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.6;
}

.detail-lead {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 58px 6% 48px;
  border-bottom: 1px solid #d8e0e7;
}

.detail-lead p {
  max-width: 800px;
  margin: 0;
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1.55;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 6%;
  padding: 28px 0 42px;
}

.detail-stats div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 2px solid #f48024;
}

.detail-stats strong,
.detail-feature > span {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.detail-stats span {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  padding: 48px 6% 42px;
}

.detail-split h2,
.detail-benefits h2 {
  margin: 10px 0 0;
  color: var(--primary-color);
  font-size: 2rem;
  line-height: 1.2;
}

.detail-split p {
  margin: 0 0 18px;
  color: var(--text-light);
  line-height: 1.75;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 10px 6% 52px;
}

.detail-feature {
  min-height: 165px;
  padding: 26px 22px;
  border-top: 4px solid var(--primary-color);
  background: #f4f6f8;
}

.detail-feature h3 {
  margin: 14px 0 8px;
  color: var(--text-dark);
  font-size: 1.18rem;
}

.detail-feature p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.6;
}

.detail-benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  margin: 0 6%;
  padding: 44px 38px;
  background: #002d62;
  color: #fff;
}

.detail-benefits h2 {
  color: #fff;
}

.detail-benefits ul {
  margin: 0;
  padding-left: 20px;
}

.detail-benefits li {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.detail-close {
  padding: 42px 6% 0;
  text-align: center;
}

.detail-close p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--text-light);
}

/* Solutions Overview */
.solutions-hero {
  min-height: 480px;
  background-position: center;
  background-size: cover;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.solutions-hero::before {
  background: linear-gradient(rgba(0, 42, 82, 0.28), rgba(0, 0, 0, 0.2));
}

.solutions-hero .hero-text {
  width: min(1180px, 90%);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  animation: fadeInDown 0.8s ease-out;
}

.solutions-hero .hero-text h1 {
  max-width: 680px;
  margin: 16px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.solutions-hero .hero-text p {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.65;
}

.eyebrow,
.section-kicker,
.card-number {
  display: block;
  color: #f48024;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.solutions-showcase {
  padding: 78px 5% 96px;
  background: #fff;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.solutions-intro {
  display: block;
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 0 0 34px;
  border-bottom: 1px solid #d8e0e7;
}

.solutions-intro-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary-color);
  font-size: 1.35rem;
}

.solutions-intro-label .section-kicker {
  color: var(--primary-color);
}

.intro-line {
  display: block;
  width: 34px;
  height: 2px;
  background: #f48024;
}

.solutions-intro p {
  max-width: none;
  margin: 0;
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.8;
}

.solutions-list-heading {
  max-width: 1180px;
  margin: 0 auto 8px;
  padding-left: 0;
}

.solutions-list-heading .section-kicker {
  color: var(--primary-color);
  font-size: 1.15rem;
}

.solution-list {
  max-width: 1180px;
  margin: 0 auto;
}

.solution-row {
  display: grid;
  grid-template-columns: 54px minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
  gap: 38px;
  min-height: 250px;
  padding: 30px 0;
  border-top: 1px solid #d8e0e7;
}

.solution-row:last-child {
  border-bottom: 1px solid #d8e0e7;
}

.solution-index {
  align-self: start;
  padding-top: 8px;
  color: #f48024;
  font-size: 1.25rem;
  font-weight: 700;
}

.solution-row-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0;
  background: #edf4f8;
}

.solution-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-row:hover .solution-row-image img {
  transform: scale(1.05);
}

.solution-row:nth-child(even) .solution-row-image {
  order: 3;
}

.solution-row:nth-child(even) .solution-row-copy {
  order: 2;
}

.solution-row:nth-child(even) .solution-index {
  order: 1;
}

.solution-row-copy h3 {
  margin: 10px 0 14px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.solution-row-copy h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.solution-row-copy h3 a:hover,
.solution-row-copy h3 a:focus {
  color: var(--primary-hover);
  text-decoration: underline;
}

.solution-row-copy p {
  margin: 0 0 22px;
  color: var(--text-light);
}

.text-link {
  color: var(--primary-color);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus span {
  transform: translateX(4px);
}

/* === New BIMGOC Style Sections === */

/* What we do */
.section-intro {
  text-align: center;
  padding: 86px 5% 72px;
  background: #fff;
}

.section-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section-intro p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
  color: var(--text-light);
}

/* Redesigned Cards (BIMGOC Style) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 28px;
  padding: 24px 5% 88px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-block {
  display: flex;
  background: #fff;
  transition: transform 0.3s ease;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 31, 72, 0.07);
}

.service-block > a {
  display: flex !important;
  flex: 1;
  flex-direction: column;
  padding-bottom: 28px;
}

.service-block:hover {
  transform: translateY(-8px);
}

.service-block img.main-img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  height: auto;
  object-fit: cover;
}

.service-block h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin: 25px 22px 14px;
  line-height: 1.2;
}

.service-block p {
  flex: 1;
  margin: 0 22px 8px;
  color: var(--text-light);
  line-height: 1.65;
}

.service-block .btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 15px;
  transition: background 0.3s;
}

.service-block .btn:hover {
  background: var(--primary-hover);
}

/* Vision/Mission Section */
.vision-mission {
  padding: 0 5% 72px;
  background: #fff;
  color: var(--text-dark);
}

.vm-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  max-width: 1240px;
  min-height: 270px;
  margin: 0 auto;
  padding: 48px 0;
  border-bottom: 1px solid #e4e9ee;
}

.vm-row-image-text {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.vm-copy {
  max-width: 470px;
}

.vm-copy h3 {
  margin: 10px 0 22px;
  color: #006b3c;
  font-size: 1.6rem;
  letter-spacing: 0;
}

.vm-copy p {
  margin: 0 0 14px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.vm-copy strong {
  color: var(--text-dark);
}

.vm-label {
  color: #f48024;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.vm-image {
  height: 220px;
  overflow: hidden;
  border-radius: 125px 0 0 125px;
}

.vm-row-image-text .vm-image {
  border-radius: 0 125px 125px 0;
}

.vm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Call To Action */
.cta-banner {
  text-align: center;
  padding: 100px 5%;
  background-image: linear-gradient(rgba(0, 63, 140, 0.85), rgba(0, 63, 140, 0.85)), url('../images/hero.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.cta-banner h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.cta-banner .btn {
  display: inline-block;
  padding: 15px 40px;
  background: #f48024;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s, background 0.3s;
}

.cta-banner .btn:hover {
  background: #e06c10;
  transform: scale(1.05);
}

/* Home Contact Grid */
.home-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 58px 5% 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
}

.contact-form button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 0 0 5px 0;
}

.info-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .home-contact {
    grid-template-columns: 1fr;
    padding: 42px 7% 48px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 25px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-top: auto;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
  }
  
  nav {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .section-intro {
    padding: 58px 7% 42px;
  }

  .section-intro h2 {
    font-size: 2rem;
  }

  .section-intro p {
    font-size: 1rem;
  }
  
  .content {
    margin: 30px auto;
    padding: 30px 20px;
  }

  .solutions-showcase {
    padding: 55px 5% 68px;
  }

  .services-grid {
    gap: 22px;
    padding: 12px 7% 62px;
  }

  .service-block h3 {
    font-size: 1.35rem;
  }

  .service-block p {
    margin-right: 20px;
    margin-left: 20px;
    font-size: 0.98rem;
  }

  .solutions-intro {
    margin-bottom: 28px;
    padding: 0 0 24px;
  }

  .solutions-intro p {
    margin-left: 0;
  }

  .solution-row {
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 20px 0 24px;
  }

  .solution-row:nth-child(even) .solution-row-image,
  .solution-row:nth-child(even) .solution-row-copy,
  .solution-row:nth-child(even) .solution-index {
    order: initial;
  }

  .solution-row-image {
    grid-column: 2;
    aspect-ratio: 16 / 10;
  }

  .solution-row-copy {
    grid-column: 2;
  }

  .solution-row-copy h3 {
    font-size: 1.45rem;
  }

  .solution-page-hero {
    min-height: 260px;
  }

  .solution-page-image {
    height: 260px;
  }

  .solution-page-hero-content {
    left: 24px;
    right: 20px;
    bottom: 25px;
    max-width: none;
  }

  .network-intro,
  .network-section,
  .network-benefits {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .network-intro p {
    font-size: 1.2rem;
  }

  .network-stats,
  .network-capabilities {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .network-stats {
    padding-bottom: 26px;
  }

  .network-section {
    padding: 26px 0 30px;
  }

  .network-capabilities {
    padding-bottom: 32px;
  }

  .network-benefits {
    padding: 28px 22px;
  }

  .network-page {
    width: 100%;
    padding: 20px 0 48px;
  }

  .network-page .solution-page-hero,
  .network-page .solution-page-image {
    min-height: 300px;
    height: 300px;
  }

  .network-page .solution-page-hero-content {
    left: 24px;
    right: 20px;
    bottom: 28px;
  }

  .network-page .network-intro,
  .network-page .network-section,
  .network-page .network-capabilities {
    padding-left: 7%;
    padding-right: 7%;
  }

  .network-page .network-intro {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  .network-page .network-stats,
  .network-page .network-benefits {
    margin-left: 7%;
    margin-right: 7%;
  }

  .network-page .network-close {
    padding-left: 7%;
    padding-right: 7%;
  }

  .cisco-detail {
    width: 100%;
    padding: 20px 0 48px;
  }

  .cisco-detail .solution-page-hero,
  .cisco-detail .solution-page-image {
    min-height: 300px;
    height: 300px;
  }

  .cisco-detail .solution-page-hero-content {
    left: 24px;
    right: 20px;
    bottom: 28px;
    max-width: none;
  }

  .cisco-detail .solution-page-hero-content h1 {
    font-size: 2.35rem;
  }

  .cisco-detail .solution-page-hero-content p {
    font-size: 0.98rem;
  }

  .detail-lead,
  .detail-split,
  .detail-benefits {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-lead {
    padding: 38px 7% 30px;
  }

  .detail-lead p {
    font-size: 1.2rem;
  }

  .detail-stats,
  .detail-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-left: 7%;
    margin-right: 7%;
  }

  .detail-stats {
    padding-bottom: 26px;
  }

  .detail-split {
    padding: 30px 7% 28px;
  }

  .detail-features {
    padding: 6px 0 32px;
  }

  .detail-benefits {
    margin-left: 7%;
    margin-right: 7%;
    padding: 28px 22px;
  }

  .detail-close {
    padding: 34px 7% 0;
  }

  .vision-mission {
    padding: 0 5% 48px;
  }

  .vm-row,
  .vm-row-image-text {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 36px 0;
  }

  .vm-row-image-text .vm-image {
    order: -1;
  }

  .vm-image,
  .vm-row-image-text .vm-image {
    height: 190px;
    border-radius: 105px 0 0 105px;
  }
}