.elementor-6 .elementor-element.elementor-element-927076e{--display:flex;}.elementor-6 .elementor-element.elementor-element-54296c0{--display:flex;}.elementor-6 .elementor-element.elementor-element-546d99bd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:10em;--padding-bottom:5em;--padding-left:0em;--padding-right:0em;}.elementor-6 .elementor-element.elementor-element-bbc1f24{--display:flex;}.elementor-6 .elementor-element.elementor-element-36b6f72{--display:flex;}.elementor-6 .elementor-element.elementor-element-3f6823f{--display:flex;}.elementor-6 .elementor-element.elementor-element-f4b3be7{--display:flex;}@media(max-width:1366px){.elementor-6 .elementor-element.elementor-element-546d99bd{--padding-top:5em;--padding-bottom:3em;--padding-left:0em;--padding-right:0em;}}@media(min-width:768px){.elementor-6 .elementor-element.elementor-element-546d99bd{--content-width:1400px;}}/* Start custom CSS for html, class: .elementor-element-6515173 */.roofing-materials {
  padding: 100px 10%;
  background-color: #f9f9fb;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.materials-header h5 {
  color: #ff1fa9;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.materials-header h2 {
  color: #0cc0df;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
}

.materials-header p {
  color: #444;
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 1.1em;
  line-height: 1.6em;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.material-card {
  background: white;
  border-radius: 15px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.material-icon {
  font-size: 2.5em;
  color: #0cc0df;
  margin-bottom: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.material-card h3 {
  color: #222;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.material-card p {
  color: #555;
  font-size: 1em;
  line-height: 1.6em;
  transition: color 0.3s ease;
}

/* ✨ Hover Effects */
.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(12, 192, 223, 0.2);
}

.material-card:hover .material-icon {
  color: #ff1fa9;
  transform: rotate(8deg) scale(1.2);
}

.material-card:hover h3 {
  color: #0cc0df;
}

.material-card:hover p {
  color: #333;
}

/* 🎬 Floating Animation for Dynamic Feel */
.material-card {
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}/* End custom CSS */