/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  scroll-behavior: smooth;
}

a {
  color: #131618;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

/* Header */
.navbar {
  background: #ffffff;
  padding: 35px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}


.logo {
  float: left;
  font-size: 1.8rem;
  color: #111;
}

.logo img {
  display: block;
  height: auto;
  margin-top: -80px;
  max-height: 100; /* Adjust this value as needed */
}



.nav-links {
  font-family: Arial, sans-serif;
  list-style: none;
  float: right;
}

.nav-links li {
  display: inline-block;
  margin-left: 20px;
}

.nav-links a {
  font-weight: 600;
}

.nav-links li a:hover {
  color: #0057a3;
}

/* Hero Section */
.hero {
  background: #0057a3;
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Sections */
.section {
  background: #fff;
}

.alt-bg {
  background: #eef2f5;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Technologies Grid */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tech-card {
  background: white;
  padding: 20px;
  flex: 1 1 30%;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Grocerlink */
.grocerlink-demo {
  background: #ccc;
  padding: 60px;
  text-align: center;
  margin-top: 20px;
  border-radius: 8px;
}

 /* ===== Footer ===== */
footer {
  background: #0b1f33;
  color: #fff;
  padding: 40px 8% 20px 8%;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffeaa7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00cec9;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #6c5ce7;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    float: none;
    text-align: center;
    margin-top: 10px;
  }
  .nav-links li {
    display: block;
    margin: 10px 0;
  }

  .tech-grid {
    flex-direction: column;
  }
}