@import url("../NexaUi/css/grid.css");
@import url("../NexaUi/css/button.css");
@import url("../NexaUi/css/form.css");
@import url("../NexaUi/css/modal.css");
@import url("../NexaUi/css/mediaobject.css");
@import url("../NexaUi/css/table.css");
@import url("../NexaUi/css/badge.css");
@import url("../NexaUi/css/alerts.css");
@import url("../NexaUi/css/navigasi.css");
@import url("../fonts/montserrat/fonts.css");
@import url("../fonts/material-icons/material-icons.css");


/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
}

body {
  margin: 0;
   font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #001737;
  text-align: left;
  background-color: #fff;
 }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; 
}

ul li{
  display:block;
}
.hero{
   color:#fff;
 background: #202731;
}
.header {
  margin: 0 auto;
  background: #202731;
  color:#fff;
  position: sticky;
  top: 0;
  z-index: 100;

  overflow-y: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  /*position: relative;*/
/*  position: sticky;
  top: 0;
  overflow-y: auto;*/
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-icon:hover {
  transform: scale(1.1);
}

.nav-brand h1 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.brand  {
  font-size: 24px;

  color: #ffffff;

}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #ffffff;
}

.login-btn {
  background: #ffffff;
  color: #2c3e50;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
  background: #ecf0f1;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Section #28ACE2 */
.hero-section {
  flex: 1;
 color:#fff;
 background: #202731;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 0;
  height: calc(100vh - 80px);
}

.network-diagram {
  position: relative;
  margin-bottom: 1px;
  opacity: 0.8;
  z-index: 1;
}
a {
  text-decoration: none;
}

.network-diagram img {
  width: 100%;
  max-width: 500px;
  height: auto;
  opacity: 0.9;
}

/* Hero Content */
.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.brand-highlight {
  color: #28ACE2;
  position: relative;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #bdc3c7;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .login-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-section {
    padding: 5px 0;
  }

  .network-diagram {
    margin-bottom: 15px;
  }

  .network-diagram img {
    max-width: 400px;
  }

  .network-diagram svg {
    max-width: 400px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 0;
  }

  .nav-links {
    gap: 15px;
  }

  .hero-section {
    padding: 5px 0;
  }

  .network-diagram {
    margin-bottom: 10px;
  }

  .network-diagram img {
    max-width: 300px;
  }

  .network-diagram svg {
    max-width: 300px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}



/* Additional styling for better visual hierarchy */
.hero-title br {
  display: block;
}




code {
    background-color: #f6f8fa;
    border: 1px solid #e1e4e8;
    border-radius: 3px;
    padding: 2px 4px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 85%;
    color: #e36209;
}

pre {
    margin: 20px 0;
    border-radius: 6px;
    overflow: hidden;
}

pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}

