/* Global Styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f9fafa;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  display: inline-block;
  vertical-align: middle;
}

/* Navigation */
nav {
  display: flex;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 80px;
  right: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 10;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

nav.active {
  opacity: 1;
  pointer-events: auto;
}

nav a {
  margin: 10px 0;
  text-decoration: none;
  color: #555;
  font-weight: 600;
}

nav a:hover {
  color: #007bff;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: 
    #eef3f8 url('../assets/images/hero-background.svg') center center / cover no-repeat;
}

.hero h1 {
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
  margin: 10px 0 30px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 25px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.button:hover {
  background: #0056b3;
}

.button-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

.button-secondary:hover {
  background: #007bff;
  color: white;
}

/* Services (Home Page Brief) */
.services-brief .service-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.service-card i {
  color: #007bff;
  margin-bottom: 15px;
}

.service-card img {
  width: 60px;
  margin-bottom: 15px;
}

/* Centered View All Services button */
.services-button-container {
  text-align: center;
  margin-top: 30px;
}

/* Page Hero (Other Pages) */
.page-hero {
  text-align: center;
  padding: 60px 20px;
  background: 
    #eef3f8 url('../assets/images/hero-background.svg') center center / cover no-repeat;
}

.page-hero h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.2em;
  color: #666;
}

/* Services List (Services Page) */
.services-list {
  margin-top: 40px;
}

.service-detail {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-detail h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.service-detail i {
  color: #007bff;
  font-size: 1.2em;
}

.service-detail p {
  color: #444;
  font-size: 1em;
  margin-top: 10px;
}

/* About Page */
.about-content {
  margin-top: 40px;
}

.about-content h2 {
  color: #007bff;
  margin-top: 30px;
}

.about-content p,
.about-content ul {
  margin-top: 15px;
  font-size: 1em;
  line-height: 1.6em;
  color: #555;
}

.about-content ul {
  padding-left: 20px;
}

.about-content ul li {
  margin-bottom: 10px;
}

.about-cta {
  text-align: center;
  margin-top: 40px;
}

/* Blog Page */
.blog-post {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.blog-post h2 {
  color: #007bff;
}

.blog-post p {
  margin-top: 15px;
  line-height: 1.6em;
  color: #555;
}

/* Contact Page */
.contact-form-section {
  margin-top: 40px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 20px;
  font-weight: 600;
  color: #333;
  display: block;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 20px;
  align-self: center;
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background: white;
  border-top: 1px solid #eee;
  margin-top: 30px;
}

/* Responsive Settings */
@media (max-width: 768px) {
  /* Logo resize */
  .logo img {
    height: 30px;
  }

  /* Mobile Nav */
  nav {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 80px;
    right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  nav.active {
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }

  .services-brief .service-grid {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 10px 0;
  }
}

@media (min-width: 769px) {
  nav {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  nav a {
    margin: 0 10px;
  }

  .menu-toggle {
    display: none;
  }
}

/* Pricing Plans Enhancement */
.service-card h5 {
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  background: #f0f0f0;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  color: #555;
}

.service-card h6 {
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  background: #007bff;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-card h7 {
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  background: #000;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-card strong {
  display: block;
  font-size: 1.8em;
  margin: 10px 0;
  color: #000;
}

.service-card ul {
  text-align: left;
  padding-left: 30px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.service-card ul li {
  margin-bottom: 2px;
  font-size: 0.95em;
}

.service-card p {
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  color: #444;
  font-size: 0.95em;
}


/* Button Variants */
.button.outline {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
}

.button.outline:hover {
  background: #007bff;
  color: white;
}

.button.dark {
  background: #333;
  color: white;
  border: none;
}

.button.dark:hover {
  background: #000;
}


