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

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-color: #1f2937;
  --light-text: #6b7280;
  --background: #ffffff;
  --light-background: #f3f4f6;
  --border-color: #e5e7eb;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Skip Navigation */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 0;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown {
  position: relative;
}

.dropbtn {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.dropbtn i {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn {
  color: #007bff;
}

.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.5rem;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  padding: 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.dropdown-item i {
  font-size: 1.2rem;
  color: #007bff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item-content {
  flex: 1;
}

.dropdown-item-content h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.dropdown-item-content p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #666;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 1rem;
}

.nav-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.nav-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #38bdf8;
  position: relative;
}

.nav-btn-outline:hover {
  background: #38bdf8;
  color: #15395b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.nav-btn-primary {
  background: #38bdf8;
  color: #15395b;
  border: 2px solid #38bdf8;
  position: relative;
}

.nav-btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: #15395b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }
  
  .nav-btn {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .nav-actions {
    margin: 1rem 0;
    width: 100%;
    flex-direction: column;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.primary-button, .secondary-button {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.primary-button {
  background: var(--primary-color);
  color: white;
}

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

.primary-button:hover {
  background: var(--secondary-color);
}

.secondary-button:hover {
  background: var(--primary-color);
  color: white;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: var(--light-background);
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* Solutions Section */
.solutions {
  padding: 4rem 0;
}

.solutions h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.solutions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  margin-top: 2rem;
}

.solution-features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.solution-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.solution-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: var(--light-background);
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--text-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Abtec-Inspired Navbar Styles --- */
.abtec-header {
  background: #15395b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: fixed;
  width: 100%;
  z-index: 1000;
  height: 72px;
  min-height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.abtec-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  padding: 0 1.5rem;
}

.abtec-navbar .logo {
  display: flex;
  align-items: center;
  height: 48px;
  max-height: 48px;
  margin-right: 3rem;
  transition: transform 0.3s ease;
}

.abtec-navbar .logo:hover {
  transform: scale(1.05);
}

.abtec-navbar .logo img {
  height: 100%;
  width: auto;
  display: block;
  max-height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem; /* Reduced gap */
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.nav-links .dropbtn {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap; /* Prevent text wrapping */
}

.nav-links a:hover,
.nav-links .dropbtn:hover {
  color: #38bdf8;
}

.nav-links .dropbtn::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.nav-links .dropbtn:hover::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2338bdf8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

/* Dropdowns */
.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #1e293b;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border-radius: 12px;
  z-index: 1001;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.21, 1.11, 0.7, 1.1);
}

.dropdown-inner {
  padding: 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}

.dropdown-item:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateX(5px);
}

.dropdown-item i {
  font-size: 1.2rem;
  color: #38bdf8;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown-item:hover i {
  background: rgba(56, 189, 248, 0.2);
  transform: scale(1.1);
}

.dropdown-item-content {
  flex: 1;
}

.dropdown-item-content h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.dropdown-item-content p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.menu-open .hamburger {
  background: transparent;
}

.menu-open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-open .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 2rem;
  }
  
  .nav-btn {
    padding: 0.5rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .abtec-navbar {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .abtec-navbar .nav-links,
  .abtec-navbar .nav-actions {
    display: none;
  }

  body.menu-open .abtec-navbar .nav-links,
  body.menu-open .abtec-navbar .nav-actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #15395b;
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .nav-links > li {
    width: 100%;
  }

  .dropdown .dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
    border-radius: 8px;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .nav-actions {
    margin: 1rem 0 0 0;
    width: 100%;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.primary-button, .secondary-button {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.primary-button {
  background: var(--primary-color);
  color: white;
}

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

.primary-button:hover {
  background: var(--secondary-color);
}

.secondary-button:hover {
  background: var(--primary-color);
  color: white;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: var(--light-background);
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* Solutions Section */
.solutions {
  padding: 4rem 0;
}

.solutions h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.solutions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  margin-top: 2rem;
}

.solution-features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.solution-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.solution-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: var(--light-background);
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--text-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Hero Section --- */
.abtec-hero {
  background: linear-gradient(120deg, #15395b 70%, #2563eb 100%);
  color: #fff;
  padding: 8rem 0 4rem 0;
  position: relative;
  overflow: hidden;
}
.abtec-hero-content {
  text-align: center;
  margin-bottom: 2.5rem;
}
.abtec-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.abtec-hero-content .accent {
  color: #38bdf8;
  background: linear-gradient(90deg, #38bdf8 30%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abtec-hero-content p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 0;
}

.hero-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-card {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21,57,91,0.18);
  background: #1e293b;
  display: flex;
  align-items: flex-end;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(21,57,91,0.95) 60%, rgba(21,57,91,0.2) 100%);
  color: #fff;
  padding: 1.5rem 1rem 1.2rem 1rem;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  display: flex;
  align-items: flex-end;
  min-height: 80px;
}
.hero-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(21,57,91,0.22);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .hero-cards {
    gap: 1rem;
  }
  .hero-card {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 900px) {
  .hero-cards {
    flex-direction: column;
    align-items: center;
  }
  .hero-card {
    width: 90vw;
    max-width: 350px;
    height: 220px;
  }
}
@media (max-width: 768px) {
  .abtec-hero {
    padding: 6rem 0 2rem 0;
  }
  .abtec-hero-content h1 {
    font-size: 2rem;
  }
  .navbar .nav-links,
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hide dropdowns on mobile, show on click */
@media (max-width: 768px) {
  .abtec-navbar .nav-links,
  .abtec-navbar .nav-actions {
    display: none;
  }
  body.menu-open .abtec-navbar .nav-links,
  body.menu-open .abtec-navbar .nav-actions {
    display: flex;
    flex-direction: column;
    background: #15395b;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 1.5rem 0;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .abtec-navbar .nav-links > li {
    width: 100%;
  }
  .dropdown .dropdown-content {
    position: static;
    box-shadow: none;
    background: #1e293b;
    border-radius: 0;
    min-width: 0;
    padding: 0.5rem 0;
  }
}

/* Keep rest of the site styles as before */

.partners-section {
  padding: 3rem 0;
  background: var(--background);
}
.partners-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-color);
}
.partners-scroll {
  display: flex;
  overflow-x: auto;
  gap: 2.5rem;
  padding: 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-background);
  justify-content: center;
  align-items: center;
}
.partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 180px;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s, transform 0.2s;
}
.partner-logo:hover img {
  filter: none;
  transform: scale(1.07);
}
@media (max-width: 600px) {
  .partners-scroll {
    gap: 1rem;
  }
  .partner-logo {
    min-width: 90px;
    max-width: 120px;
    padding: 0.5rem;
  }
  .partner-logo img {
    max-height: 40px;
  }
}

.advanced-solutions {
  position: relative;
  padding: 5rem 0 0 0;
  background: #18446a;
  color: #fff;
  overflow: hidden;
}
.advanced-solutions h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}
.advanced-solutions .accent {
  color: #38bfec;
}
.advanced-solutions-subhead {
  text-align: center;
  color: #b6c6d9;
  font-size: 1.18rem;
  margin-bottom: 3.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.advanced-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto 0 auto;
}
.advanced-solution-card {
  background: #1e466b;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(21,57,91,0.18), 0 1.5px 8px rgba(56,191,236,0.10);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  min-height: 180px;
}
.advanced-solution-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 16px 40px rgba(56,191,236,0.18), 0 2px 12px rgba(56,191,236,0.10);
}
.solution-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.7rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem;
  box-shadow: 0 4px 18px 0 #38bfec33, 0 1.5px 8px rgba(56,191,236,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.advanced-solution-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
  position: relative;
}
.advanced-solution-card h3::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 0.5rem;
  background: url('data:image/svg+xml;utf8,<svg width="22" height="22" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="10" stroke="%2338bfec" stroke-width="2" fill="none"/><path d="M8 11h6m0 0-2-2m2 2-2 2" stroke="%2338bfec" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center/contain;
}
.advanced-solution-card p {
  color: #b6c6d9;
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .advanced-solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
}
@media (max-width: 700px) {
  .advanced-solutions {
    padding: 2.5rem 0 0 0;
  }
  .advanced-solutions h2 {
    font-size: 2rem;
  }
  .advanced-solutions-grid {
    gap: 1.2rem;
  }
  .advanced-solution-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}
.advanced-solutions::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
  background: url('data:image/svg+xml;utf8,<svg width="1920" height="90" viewBox="0 0 1920 90" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0C0 0 320 90 960 90C1600 90 1920 0 1920 0V90H0V0Z" fill="white"/></svg>') no-repeat bottom center/cover;
  z-index: 2;
}

/* Managed IT Support Section */
.managed-it-support {
  background: #0d2942;
  color: #fff;
  padding: 5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}
.managed-it-support-container {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.managed-it-support-left {
  flex: 1 1 340px;
  max-width: 400px;
  padding-right: 2rem;
}
.managed-it-support-left h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #fff;
}
.managed-it-support-left .accent {
  color: #38bfec;
}
.managed-it-support-left p {
  color: #b6c6d9;
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
}
.managed-it-support-btn {
  background: #18446a;
  color: #fff;
  box-shadow: 0 4px 18px 0 #38bfec33;
  border: none;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-size: 1.08rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.managed-it-support-btn:hover {
  background: #38bfec;
  color: #18446a;
  box-shadow: 0 8px 32px rgba(56,191,236,0.18);
}
.managed-it-support-right {
  flex: 2 1 500px;
  min-width: 340px;
}
.managed-it-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
}
.managed-it-support-card {
  background: #16375a;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 #38bfec33, 0 1.5px 8px rgba(56,191,236,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 150px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.managed-it-support-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(56,191,236,0.18), 0 2px 12px rgba(56,191,236,0.10);
}
.managed-it-support-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px #38bfec22;
  padding: 0.5rem;
}
.managed-it-support-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.managed-it-support-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.managed-it-support-card p {
  color: #b6c6d9;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .managed-it-support-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  .managed-it-support-left {
    max-width: 100%;
    padding-right: 0;
  }
  .managed-it-support-right {
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .managed-it-support {
    padding: 2.5rem 0 1.5rem 0;
  }
  .managed-it-support-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .managed-it-support-card {
    padding: 1.2rem 0.8rem 1rem 0.8rem;
  }
}

/* --- Updated Footer Styles --- */
.footer {
  background: #15395b; /* Match header background */
  color: #cbd5e1; /* Lighter text color */
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust minmax */
  gap: 2.5rem; /* Increased gap */
  margin-bottom: 3rem; /* Increased bottom margin */
  align-items: start; /* Align items to the top */
}

.footer-section {
  padding: 0 1rem; /* Add some padding within sections */
}

.footer-section h4 {
  margin-bottom: 1.5rem; /* Increased margin */
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff; /* White heading */
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem; /* Increased spacing */
  line-height: 1.5;
}

.footer-section a {
  color: #cbd5e1; /* Match base footer text */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #38bdf8; /* Accent color on hover */
  text-decoration: none; /* Remove underline */
}

/* Company Section Specifics */
.footer-company img {
  max-width: 180px; /* Adjust logo size if needed */
  margin-bottom: 1.5rem; /* Space below logo */
}

.footer-company h4 {
  margin-top: 0; /* Remove default margin if any */
  margin-bottom: 0.8rem;
}

.footer-company p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8; /* Slightly dimmer text for description */
}

/* Contact Details Specifics */
.contact-details li {
  display: flex;
  align-items: flex-start; /* Align icon with the start of the text */
  gap: 0.8rem; /* Space between icon and text */
}

.contact-details i {
  margin-top: 0.2em; /* Align icon slightly better vertically */
  color: #38bdf8; /* Accent color for icons */
  width: 16px; /* Fixed width for icons */
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem; /* Increased padding */
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* Slightly more visible border */
  font-size: 0.9rem;
  color: #94a3b8; /* Dimmer text for copyright */
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr; /* Stack columns on mobile */
    gap: 2rem;
  }
  .footer-section {
    padding: 0; /* Remove padding on mobile */
    text-align: center; /* Center text on mobile */
  }
  .footer-company img {
    margin-left: auto;
    margin-right: auto; /* Center logo */
  }
  .contact-details li {
    justify-content: center; /* Center contact items */
    text-align: left; /* Keep text left-aligned within the item */
  }
}
