/*css website wide style sheet*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    z-index: 10;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
}

#try-interactive-demo{
    display: flex;
    justify-content: space-between;
}

.three-d-visuals img {
    width: 250px;
    height: auto
}

.projects-grid, .media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    overflow-x: auto;
    grid-auto-flow: column;
}

.project-card img {
    width: 200px;
    height: auto
}

.media-item img {
    width: 300px;
    height: auto
}
.faq-question{
    display: flex;
    align-items: center;
}

.faq-item img {
    width: 30px;
    height: auto;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-links img {
    width: 80px;
}

.social-links a {
    color: #fff;
    font-size: 24px;
}

.whole-background {
  display: flex;
  flex-direction: column;
  padding: 20px clamp(16px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-color: #000;

  /* --- GRID LINES --- */
  background-image:
      linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* ===== TOP GRADIENT ===== */
.whole-background::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 0, 128, 0.35),
      rgba(0, 0, 0, 0) 10%
    );
}

/* ===== BOTTOM GRADIENT ===== */
.whole-background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(255, 0, 128, 0.35),
      rgba(0, 0, 0, 0) 10%
    );
}


#try-interactive-demo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 80px 10%;
    position: relative;
    color: #fff;
}

.try-interactive-demo-content h1 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 20px;
}

.try-interactive-demo-meta {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.try-interactive-demo-btn {
  padding: 8px 22px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 14px;
  border: 1px solid #fff;
  background: white;
  color: black;
  cursor: pointer;
  transition: 0.25s;

}

.try-interactive-demo-btn:hover {
  background: rgba(255,255,255,0.1);
}

#about {
    padding: 80px 10%;
    position: relative;
    z-index: 1;
}

#about h1 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
}

.about-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 128, 0.6);
    transform: translateY(-5px);
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.about-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 15px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.about-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.about-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgba(255, 0, 128, 0.7);
    font-weight: bold;
}

#about h2{
    margin-bottom: 20px;
    font-size: 32px;
}

#projects {
    padding: 80px 10%;
}
#projects h2{
    margin-bottom: 20px;
    font-size: 32px;
}

#media {
    padding: 80px 10%;
}

#media h2{
    margin-bottom: 20px;
    font-size: 32px;
}

