/* General Styles */
body {
  font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #2d3748;
  background-color: #FFFFFF;
  line-height: 1.6;
  /* White background */
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Header Section */


header {
  background-color: #34849c;
  color: #FFFFFF;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  margin: 0;
}

header p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
  padding: 80px 20px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Headline */
.hero h1 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Hero Subtext */
.hero p {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #e2e8f0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1.15rem;
  }
}

/* Hero CTA Button */
.hero .btn-cta {
  background-color: #3b82f6;
  color: #ffffff;
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.hero .btn-cta:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
  color: #ffffff;
}



.btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}


/* About Section */
#about {
  padding: 100px 0;
  background-color: #f8fafc;
  text-align: center;
}

#about h2 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a2332;
  letter-spacing: -0.01em;
}

#about p {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
#services {
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center;
}

#services h2 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a2332;
}

#services .services-intro {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#services .service-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  #services .service-tiers {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

#services .service-tier {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

#services .service-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(26, 35, 50, 0.1);
  border-color: #3b82f6;
}

#services .service-tier h3 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 15px;
}

#services .service-tier .price {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 20px;
}

#services .service-tier ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

#services .service-tier ul li {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #475569;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

#services .service-tier ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background-color: #f8fafc;
  text-align: center;
}

.blog h2 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 20px;
}

.blog p {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 50px;
  color: #64748b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-preview {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.blog-post {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 350px;
  transition: all 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.blog-post h3 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 15px;
}

.blog-post p {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Blog Cards */
.card {
  border: none;
  transition: transform 0.3s ease;
}

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

.card-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
}

.card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

.btn-primary {
  background-color: #fcbc2c;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #d9a025;
}


/* Portfolio Section */
#portfolio {
  padding: 100px 0;
  background-color: #FFFFFF;
  text-align: center;
}

#portfolio h2 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a2332;
}

#portfolio p {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.15rem;
  color: #64748b;
}

/* Contact Section */
#contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
  text-align: center;
  color: #ffffff;
}

#contact h2 {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

#contact .contact-intro {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

#contact .form-group {
  margin-bottom: 20px;
}

#contact label {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
}

#contact input,
#contact select {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

#contact input:focus,
#contact select:focus {
  outline: none;
  border-color: #3b82f6;
}

#contact button {
  background-color: #3b82f6;
  color: #FFFFFF;
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 30px auto 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

#contact button:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

/* Footer Section */
footer {
  background-color: #1a2332;
  color: #e2e8f0;
  padding: 40px 0;
  text-align: center;
}

footer p {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  margin: 10px 0;
  font-size: 0.95rem;
}

/* Navbar Styles */
.navbar {
  padding: 20px 0;
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .btn-audit {
  background-color: #3b82f6;
  color: #ffffff;
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.navbar .btn-audit:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
  color: #ffffff;
}

.navbar-nav .nav-link {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 500;
  color: #475569 !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #1a2332 !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.dropdown-item {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  padding: 10px 20px;
  color: #475569;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8fafc;
  color: #1a2332;
}

/* Custom Styles to Override Bootstrap */
.bg-primary {
  background-color: #1a2332 !important;
}

.text-primary {
  color: #1a2332 !important;
}

.bg-secondary {
  background-color: #2d3748 !important;
}

.btn-warning {
  background-color: #3b82f6 !important;
  border-color: #3b82f6 !important;
}

.btn-warning:hover {
  background-color: #2563eb !important;
  border-color: #2563eb !important;
}