/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: f4f4f4;
  color: white;
  overflow-x: hidden;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('images/PXL_20250603_111343757.jpg') no-repeat center/cover;
  background-attachment: fixed;
  backdrop-filter: brightness(0.9);
  color: rgb(22, 22, 22);
  padding: 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-size: bolder;
}

.btn-scroll {
  background-color: rgba(0, 0, 0, 0.534);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-scroll:hover {
  background-color: #00bcd4;
  color: black;
}

/* Logo Container */
.logo-container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.zoom-logo {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.zoom-logo:hover {
  transform: scale(1.05);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: black;
  text-align: center;
}

/* Element Grid */
.element-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.element-card {
  background: rgba(170, 167, 167, 0.384);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.element-card:hover {
  transform: translateY(-0.30px);


}

.element-card:after{
    content: "";
    border-top: solid #008a9c;
}

.element-card::before{
  content: "";
    border-left:solid #008a9c ;
}

.element-card h3 {
  margin-top: 10px;
  color: #008a9c;
}

.element-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: black;
}

/* Icons */
.icon-circle,
.icon-wrench,
.icon-star,
.icon-book,
.icon-banner,
.icon-text {
  width: 150px;
  height:150px;
  color: white;
  /* background: rgb(255, 255, 255); */
  /* border-radius: 50%; */
  margin: auto;
  background-size: cover;
  background-position: center;
}

.icon-banner {width: 200px; height: 150px;
  background-size:contain ;
  background-repeat: no-repeat;
}

.icon-wrench {
  background-size: contain ;
  background-repeat: no-repeat;
}

.icon-circle { background-image: url('images/Layer_2-removebg-preview.png'); }
.icon-wrench { background-image: url('images/HAMMER.png');}
.icon-star { background-image: url('images/star.png'); }
.icon-book { background-image: url('images/1134090-200book.png'); }
.icon-banner { background-image: url('images/1RLayer\ 1.png'); }


