:root {
  --color-dark: #0F192A;
  --color-accent: #007BFF;
  --color-light: #F8FAFC;
  --color-text: #333;
  --font-main: 'Arial', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: var(--color-dark);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff; /* White text */
    white-space: nowrap;
}

.logo {
  height: 60px;
  width: auto;
}

.nav-toggle-input {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-accent);
}

/* Hero */
.hero {
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn-primary:hover {
  background: #005bb5;
}

.btn-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none; /* Ensures no click action */
}

/* Services */
.services {
  background: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

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

.icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.coming-soon {
  background: #f8fafc;
  padding: 4rem 1rem;
}

.coming-soon-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.text-area {
  flex: 1 1 400px;
}

.text-area h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0f192a;
}

.text-area p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.image-area {
  flex: 1 1 400px;
  text-align: center;
}

.image-area img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*.btn-primary {*/
/*  display: inline-block;*/
/*  background: #007bff;*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*  padding: 0.75rem 1.5rem;*/
/*  border-radius: 5px;*/
/*  font-weight: 600;*/
/*}*/
/**/
/*.btn-primary:hover {*/
/*  background: #005bb5;*/
/*}*/

/* Footer */
.footer {
  background: #f5f5f5;
  padding: 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-links a {
  margin-left: 1rem;
  color: var(--color-dark);
  text-decoration: none;
}

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

@media (max-width: 600px) {
    .nav-bar {
        position: relative;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 1rem 1rem 1rem 2rem;
        box-sizing: border-box;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--color-dark);
    }

    .nav-toggle-input:checked + .nav-toggle + nav .nav-links {
        display: flex;
    }

    .coming-soon-content {
        flex-direction: column;
    }

    .text-area,
    .image-area {
        flex: 1 1 100%;
    }
}
