html {
    margin-top: 0 !important;
}

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: #0a0a23;
      color: #fff;
      line-height: 1.6;
    }
    header {
      background: linear-gradient(90deg, #000428, #004e92);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 999;
    }
    header h1 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
    }
    nav a {
      margin-left: 30px;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #00e6ff;
    }
    .hero {
      background: radial-gradient(circle at center, #0f0c29, #302b63, #24243e);
      text-align: center;
      padding: 120px 40px;
    }
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.4rem;
      color: #ddd;
      max-width: 800px;
      margin: auto;
    }
    .section {
      padding: 80px 40px;
      max-width: 1200px;
      margin: auto;
    }
    .section h2 {
      font-size: 2.8rem;
      text-align: center;
      font-weight: 700;
      color: #fff;
      margin-bottom: 60px;
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }
    .card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 15px;
      padding: 40px 30px;
      flex: 1 1 300px;
      transition: transform 0.4s, box-shadow 0.4s;
      backdrop-filter: blur(10px);
    }
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 30px rgba(0,230,255,0.2);
    }
    .card h3 {
      font-size: 1.8rem;
      color: #fff;
      margin-bottom: 15px;
    }
    .card p {
      font-size: 1rem;
      color: #ccc;
    }
	#services .cards {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 20px;
	  max-width: 1200px; /* optional: controls overall width */
	  margin: 0 auto;    /* centers the grid */
	}

	.hero {
	  position: relative;
	  width: 94%;
	  height: 500px; /* adjust height as needed */
	  background: url('../images/banner.png') no-repeat center center/cover;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  text-align: center;
	  color: #fff;
	}

	.hero-overlay {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: rgba(0, 0, 0, 0.5); /* dark overlay */
	  z-index: 1;
	}

	.hero-content {
	  position: relative;
	  z-index: 2;
	  padding: 0 20px;
	}

	.hero h1 {
	  font-size: 3rem;
	  margin-bottom: 1rem;
	}

	.hero p {
	  font-size: 1.5rem;
	}
	.services-section {
	  position: relative;
	  padding: 80px 20px;
	  color: #222;
	  overflow: hidden;
	  background-color: #f5f7fa; /* fallback color */
	}

	.services-section h2 {
	  text-align: center;
	  font-size: 2.5rem;
	  margin-bottom: 40px;
	  color: #111;
	  position: relative;
	  z-index: 2;
	}

	.services-section .cards {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 30px;
	  justify-content: center;
	  position: relative;
	  z-index: 2;
	}

	.services-section .card {
	  background: #ffffffee;
	  padding: 25px;
	  border-radius: 12px;
	  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	  flex: 1 1 280px;
	  max-width: 320px;
	  transition: transform 0.3s ease;
	}

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

	.services-section .card h3 {
	  font-size: 1.3rem;
	  margin-bottom: 15px;
	  color: #007bff;
	}

	.services-section .card ul {
	  list-style: none;
	  padding: 0;
	  margin: 0;
	}

	.services-section .card ul li {
	  padding: 6px 0;
	  border-bottom: 1px solid #eaeaea;
	  font-size: 0.95rem;
	  color: #333;
	}

	/* Background + Overlay */
	.background-wrapper {
	  position: absolute;
	  inset: 0;
	  overflow: hidden;
	  z-index: 1;
	}

	.background-wrapper .background-image {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  opacity: 0.9;
	}

	.background-wrapper .overlay {
	  position: absolute;
	  inset: 0;
	  background: linear-gradient(to bottom right, rgba(255,255,255,0.8), rgba(245,245,245,0.95));
	}


	.projects-section {
	  position: relative;
	  overflow: hidden;
	  min-height: 600px; /* Adjust height as needed */
	  color: #fff;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  padding: 4rem 2rem;
	}

	.video-container {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  z-index: 1;
	  overflow: hidden;
	}

	.video-container video {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}

	.video-overlay {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: rgba(20, 20, 20, 0.6); /* semi-transparent overlay */
	  z-index: 2;
	}

	.projects-content {
	  position: relative;
	  z-index: 3;
	  text-align: center;
	  max-width: 1200px;
	  margin: 0 auto;
	}
	.projects-content .cards {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 30px;
	  justify-items: center;
	}


	.projects-content h2 {
	  font-size: 3rem;
	  margin-bottom: 2rem;
	}

    @media (max-width: 768px) {
      .hero {
        padding: 80px 20px;
      }
      .hero h1 {
        font-size: 2.5rem;
      }
      .section {
        padding: 60px 20px;
      }
      .section h2 {
        font-size: 2rem;
      }
	  #services .cards {
		grid-template-columns: 1fr;
	  }

    }