/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


/* Navbar */
.navbar {
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
}
.logo span {
  color: #00b894;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #00b894;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Hide mobile nav on desktop */
.mobile-nav {
  display: none;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 2rem auto 5rem;
  flex-grow: 1;
}

/* Dynamic columns on home */
.dynamic-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.col {
  background-size: cover;
  background-position: center;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgb(8, 6, 6);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(8, 8, 8, 0.3);
  transition: transform 0.2s ease;
  position: relative;
  text-align: center;
}

.col:hover {
  transform: scale(1.05);
}

.coming-soon {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
  z-index: 1;
  pointer-events: none;
}

/* Disable interactivity on the whole block */
.col.disabled {
  pointer-events: none; /* disables click */
  filter: grayscale(0.3) brightness(0.7); /* visual cue */
  cursor: default;
}


/* Random lines on home */
.random-lines {
  margin-top: 1rem;
  font-style: italic;
  font-size: 1rem;
}
.random-lines a {
  color: #00b894;
  text-decoration: none;
}
.random-lines a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 2rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}
.footer-graphic {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at center, #00b894 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

/* About page */
.about-page h1, .projects-page h1, .contact-page h1 {
  margin-bottom: 1rem;
  color: #222;
}
.founder, .team, .cool-addition {
  background: white;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.team-card {
  background: #00b894;
  color: white;
  padding: 1rem;
  border-radius: 6px;
  flex: 1 1 180px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.team-card h4 {
  margin-bottom: 0.5rem;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1rem;
}
.project-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.project-card h3 {
  padding: 0.5rem 1rem 1rem;
  font-weight: 600;
  color: #222;
  text-align: center;
}

/* Contact */
.contact-page .contact-invite {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #222;
  font-weight: 600;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00b894;
}
.contact-form button {
  background: #00b894;
  color: white;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #019e7f;
}


    @media (max-width: 768px) {
  .desktop-nav {
    display: flex !important;  /* Show desktop nav always */
  }
}

/* Social icon in about */
    .social-icons {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 1rem;
    }

    .social-icons img {
      width: 24px;
      margin: 0 0.5rem;
      transition: transform 0.2s ease;
    }

    .social-icons img:hover {
      transform: scale(1.2);
    }


    /* Home page layout 2 */
    
.hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .highlight {
  color: #00b894;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero .btn {
  padding: 0.75rem 1.5rem;
  background-color: #00b894;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.hero .btn:hover {
  background-color: #019170;
}
.team-preview {
  text-align: center;
  padding: 3rem 1rem;
  background: #f6f9fc;
}

.team-preview h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.team-preview p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: #666;
}

.team-preview .btn {
  padding: 0.6rem 1.2rem;
  background-color: #0984e3;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.team-preview .btn:hover {
  background-color: #086cd4;
}


.trusted-by {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #f9f9f9;
}

.trusted-by h2 {
  font-size: 1.9rem;
  margin-bottom: 1.8rem;
  color: #333;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.logo-row img {
  max-width: 60px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-row img:hover {
  filter: none;
  transform: scale(1.05);
}


/* Testimonials */


.services {
  padding: 3rem 1rem;
  text-align: center;
}
.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}
.service-grid .card {
  background: #f4f4f4;
  padding: 1.5rem;
  border-radius: 8px;
}

