:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --background-color: #f8fafc;
  --text-color: #1f2937;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background-color: var(--primary-color);
  padding: 0.6rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  color: white;
}

.logo img {
  height: 64px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.hero-content img {
  height: 120px;
  max-width: 260px;
  margin-bottom: 1rem;
}

.footer-section img {
  height: 80px;
  max-width: 180px;
  margin-bottom: 0.5rem;
}

.logo i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  background: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}


.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  display: inline-block;
  position: relative;
}

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

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Dashboard */
.dashboard {
  padding: 1rem 2rem 2rem 2rem;
  background-color: var(--card-bg);
  border-radius: 1rem;
  margin: 1rem auto 2rem auto;
  max-width: 1920px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding-top: 32px;
}

.dashboard-info-box {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-left: 6px solid #007acc;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 1.1rem 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0rem;
  color: #222;
  font-size: 1.15rem;
  text-align: center;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}


.powerbi-container {
  margin: 0;
}

.powerbi-container h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.button-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* About Section */
.about {
  padding: 4rem 2rem 2rem 2rem;
  background-color: var(--card-bg);
  border-radius: 1rem;
  margin: 2rem auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background-color: var(--background-color);
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

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

.stat i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--text-color);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--background-color);
}

/* Action Buttons */
.action-buttons {
  text-align: center;
  margin: 2rem 0;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button-primary i {
  font-size: 1.2rem;
}

.button-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.button-primary:active {
  transform: translateY(0);
}

.feature-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-page {
  max-width: 800px;
  margin: 4rem auto 2rem auto;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-page h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

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

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.social-media {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-media a {
  color: #222;
  margin: 0 0.8rem;
  font-size: 2.4rem;
  transition: color 0.3s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.22));
}

.social-media a:hover {
  color: var(--primary-color);
  transform: scale(1.18);
  box-shadow: 0 0 12px var(--primary-color), 0 2px 8px rgba(0,0,0,0.18);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
}

/* Force footer mail link to be white regardless of browser default or visited/active state */
.footer-section a[href^="mailto:"] {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
}
.footer-section a[href^="mailto:"]:visited,
.footer-section a[href^="mailto:"]:active,
.footer-section a[href^="mailto:"]:focus {
  color: #fff !important;
}
.footer-section a[href^="mailto:"]:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

  /* .nav-links {
    display: none;
  } */
  
  .hero h1 {
    font-size: 2rem;
  }
  
  /* .features {
    grid-template-columns: 1fr;
  } */


.buton {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007acc;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 20px;
}

.buton:hover {
  background-color: #005fa3;
}
