:root {
  --primary-color: #00b7b3;
  --dark-blue: #0c2340;
  --light-gray: #f5f7fa;
  --accent-color: #ff6f61;
  --heading-color: #0c2340;
  --default-color: #000;
  --heading-font: 'Montserrat', sans-serif;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);	
  color: var(--default-color);
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  padding: 1rem 2rem;
  background-color: rgba(12, 35, 64, 0.9);
  z-index: 1030;
}

/* Demo Button */
.navbar .btn-demo {
  background: var(--primary-color);
  color: #fff;
  border-radius: 25px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
}
/* HERO SECTION WRAPPER */
.hero {
  position: relative;
  width: 100%;
  min-height: 50vh;       /* Adjust height */
  padding: 120px 0 80px;  /* Space for navbar + bottom spacing */
  display: flex;
  align-items: center;
  background-image: url("../graphics/Download.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;         /* Default text color */
}
/* Optional dark overlay for readability */
.hero .content {
  position: relative;
  z-index: 2; /* keeps text above overlay */
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 15px;
  max-width: 600px;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  background-color: black;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: white;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: white);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: white;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: white;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}



