:root {
  --blue: #0b6c96;
  --orange: #ff7a18;
  --bg: #edf1fa;
  --dark: #1f2933;
}



/* HERO */
.gallery-hero {
  background: linear-gradient(135deg, #050b2e, #0b1c3d);
  color: white;
  padding: 20px;
}
.gallery-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
}



.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  width: 100%;
}


.hero-text {
  max-width: 600px;
}

.hero-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}


@media (max-width: 900px) {
  .hero-img {
    width: 260px;
    height: 260px;
  }
}



.gallery-hero h1 {
  font-size: 58px;
}

.gallery-hero p {
  font-size: 32px;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
   line-height: 1.3; 
}

@media (max-width: 600px) {
  .gallery-hero p {
    white-space: normal;
    text-align: center;
  }
}

/* Typing */
.typing {
  border-right: 3px solid #050b2e;
  white-space: nowrap;
  overflow: hidden;
   
  display: inline-flex;
  align-items: center;
  
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-robot img {
    width: 240px;
  }
}

/* OUR EVENTS */
.events-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 40px;
}

.events-title::after {
  content: "";
  display: block;
  width: 270px;
  height: 4px;
  background: var(--orange);
  margin: 10px auto;
  border-radius: 2px;
}

/* GALLERY */
.gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(255, 122, 24, 0.3);
  transition: 0.4s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 12px;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.modal span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

/* PAGINATION */
.pagination {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;  
  align-items: center;
  gap: 15px;               
  margin-top: 20px;
}

.pagination button {
  background: var(--blue);
  color: white;
  border: none;
  padding: 10px 18px;
  
  border-radius: 20px;
  cursor: pointer;
 
 
}

.pagination button:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.typing-line {
  white-space: nowrap;
  overflow: hidden;
  font-size: 24px;
  color: #fff;
}

.brand {
  color: #ff7a18;
  font-weight: 600;
}




