/* Base Styles */
:root {
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: white;
  background: linear-gradient(to bottom, var(--gray-900), var(--gray-800));
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--orange-800);
  padding: 0.5rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: bold;
}

.address,
.phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

/* Navigation */
.main-nav {
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #d1d5db;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-link:hover {
  color: white;
  background-color: var(--orange-900);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.menu-icon {
  font-size: 28px;
  line-height: 1;
}
/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--orange-500);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--orange-700);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  margin-top: 2rem;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--orange-800);
}

/* Services Sections */
.services {
  padding: 5rem 0;
}

.cloud-services {
  background-color: var(--gray-800);
}

.on-premise-services {
  background-color: var(--gray-900);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #9ca3af;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--gray-900);
  padding: 2rem;
  border-radius: 0.5rem;
  border-top: 4px solid var(--orange-600);
  transition: transform 0.3s;
}

.on-premise-services .service-card {
  background-color: var(--gray-800);
  border-top-color: var(--orange-500);
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card i {
  font-size: 2rem;
  color: var(--orange-500);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: #9ca3af;
}

/* Footer */
footer {
  background-color: var(--gray-900);
  padding: 2rem 0;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .address {
    display: none;
  }

  .nav-content {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--gray-900);
    padding: 1rem;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
  }

  .mobile-menu-btn {
    display: block !important;
    z-index: 100;
    background-color: tra;
    color: #ffffff;
    border-radius: 50%;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
.menu-icon {
  font-size: 28px;
  line-height: 1;
}
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
}
