 /* General Reset */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styles */
header {
  background-color: #1ab6f6; /* Dark background color */
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeIn 1s ease-out;
}

.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: slideIn 1s forwards;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: logoSlide 1s ease-out;
}

/* Navigation */
nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  opacity: 0;
  animation: fadeIn 2s 0.5s forwards; /* Delay the nav items */
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 1s;
}

.nav-links li a:hover {
  background-color: #f39c12; /* Gold color on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Section Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  padding: 20px;
}

h1, h2, p {
  animation: fadeIn 1s ease-out;
}

.section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slideIn 1s forwards;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.section p {
  font-size: 1rem;
  line-height: 1.6;
}

.key-benefits ul {
  list-style-type: none;
  padding-left: 20px;
}

.key-benefits li {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.key-benefits li::before {
  content: "✔";
  margin-right: 10px;
  color: #f39c12;
}

/* Directions for Use */
.directions ul {
  list-style-type: none;
  padding-left: 20px;
  margin-top: 20px;
}

.directions li {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.directions li p {
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Animation Effects */
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes slideIn {
  0% {
      transform: translateY(50px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes logoSlide {
  0% {
      transform: translateX(-100px);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

/* Hover Effect on List */
.directions li:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes slideIn {
  0% {
      transform: translateY(-50px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes logoSlide {
  0% {
      transform: translateX(-100px);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: center;
  }

  nav {
      width: 100%;
      margin-top: 20px;
  }

  .nav-links {
      flex-direction: column;
      margin-top: 10px;
  }

  .nav-links li {
      margin: 10px 0;
  }

  .logo {
      font-size: 2.5rem;
      margin-bottom: 15px;
  }
}


/* Hero Section */
.hero {
  background: linear-gradient(120deg, #004aad, #ffce00);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  animation: slideIn 1s ease-in-out;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-content .btn {
  display: inline-block;
  background-color: #ffce00;
  color: #004aad;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.hero-content .btn:hover {
  background-color: #ffc107;
}

/* Features Section */
.features {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature h3 {
  color: #004aad;
}

/* Applications Section */
.applications {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #1ab6f6;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

/* Animations */
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Sliding Banner */
/* Slider Section */
.slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 300%; /* 3 slides */
  animation: slide-animation 9s infinite;
}

.slide {
  flex: 0 0 100%; /* Each slide takes full width */
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); /* Background overlay for text */
  padding: 20px;
  border-radius: 10px;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.content p {
  font-size: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Sliding Animation */
@keyframes slide-animation {
  0%, 33.33% {
    transform: translateX(0);
  }
  33.34%, 66.66% {
    transform: translateX(-100%);
  }
  66.67%, 100% {
    transform: translateX(-200%);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .slider {
    height: 200px; /* Reduce height for smaller screens */
  }
  .content h2 {
    font-size: 1.5rem;
  }
  .content p {
    font-size: 0.9rem;
  }
}


  
  /* Product Section */
  .product {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
  }
  
  .product-photo img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
  }  

  /* Applications Section */
.applications {
  background-color: #f9f9f9;
  text-align: center;
  padding: 50px 20px;
}

.applications h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 20px;
}

.applications p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Animated List */
.animated-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.animated-list li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.animated-list li:nth-child(1) {
  animation-delay: 0.2s;
}

.animated-list li:nth-child(2) {
  animation-delay: 0.4s;
}

.animated-list li:nth-child(3) {
  animation-delay: 0.6s;
}

.animated-list h3 {
  font-size: 1.2rem;
  color: #004aad;
  margin-bottom: 10px;
}

.animated-list p {
  font-size: 0.9rem;
  color: #555;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Product Section */
.product {
  background-color: #f9f9f9;
  text-align: center;
  padding: 50px 20px;
}

.product h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 20px;
}

.product-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeIn 1s ease-in-out;
}

.product-photo img {
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-photo img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-description {
  max-width: 600px;
  font-size: 1rem;
  color: #555;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.3s;
}

.product-description strong {
  color: #004aad;
}

/* Keyframes for Fade-in Effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product {
  background: linear-gradient(120deg, #f0f4ff, #f9f9f9);
}
@media (min-width: 768px) {
  .product-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .product-photo img {
    max-width: 650px;
  }

  .product-description {
    text-align: left;
    margin-left: 20px;
  }
}

/* Features Section */
.features {
  background-color: #f9f9f9;
  text-align: center;
  padding: 50px 20px;
}

.features h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-in-out forwards;
}

.feature {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature h3 {
  font-size: 1.2rem;
  color: #004aad;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.9rem;
  color: #555;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Grid for Larger Screens */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* General Carousel Styling */
.carousel {
  position: relative;
  width: 100%;
  height: 400px; /* Default height for desktop */
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-content {
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  width: 90%; /* Ensures content is not too wide */
  max-width: 500px;
}

/* Carousel Content Styling */
.carousel-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.carousel-content p {
  font-size: 1rem;
}

/* Navigation Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Hover Effect for Navigation Buttons */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Fade-In Animation for each slide */
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .carousel {
      height: 300px; /* Reduced height on smaller screens */
  }

  .carousel-content h2 {
      font-size: 1.5rem; /* Adjust text size for smaller screens */
  }

  .carousel-content p {
      font-size: 0.9rem; /* Adjust text size for smaller screens */
  }
}

@media only screen and (max-width: 480px) {
  .carousel {
      height: 250px; /* Further reduced height on extra small screens */
  }

  .carousel-content {
      width: 80%; /* Adjust content width for very small screens */
  }

  .carousel-content h2 {
      font-size: 1.2rem;
  }

  .carousel-content p {
      font-size: 0.8rem;
  }
}
/* General Carousel Styling */
.carousel {
  position: relative;
  width: 100%;
  height: 400px; /* Default height for desktop, adjust as needed */
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;  /* Ensure background image covers the entire slide */
  background-position: center center;  /* Center the background image */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

/* Adjust height for smaller screens */
@media only screen and (max-width: 768px) {
  .carousel {
      height: 650px; /* Reduced height for tablets */
  }
}

@media only screen and (max-width: 480px) {
  .carousel {
      height: 250px; /* Further reduced height for mobile */
  }
}

/* Optional: Customize the height of the carousel background on specific slides */
.carousel-slide:nth-child(1) {
  background-image: url('power_burn_all.png');
  height: 650px;  /* Custom height for the first slide */
}

.carousel-slide:nth-child(2) {
  background-image: url('banner2.jpg');
  height: 450px;  /* Custom height for the second slide */
}

.carousel-slide:nth-child(3) {
  background-image: url('banner3.jpg');
  height: 400px;  /* Custom height for the third slide */
}
/* General Carousel Styling */
.carousel {
  position: relative;
  width: 100%;
  height: 400px; /* Default height for desktop, adjust as needed */
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;  /* Ensure background image covers the entire slide */
  background-position: center center;  /* Center the background image */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

/* Adjust height for smaller screens */
@media only screen and (max-width: 768px) {
  .carousel {
      height: 700px; /* Reduced height for tablets */
  }
}

@media only screen and (max-width: 480px) {
  .carousel {
      height: 250px; /* Further reduced height for mobile */
  }
}

/* Optional: Customize the height of the carousel background on specific slides */
.carousel-slide:nth-child(1) {
  background-image: url('power_burn_all.png');
  height: 650px;  /* Custom height for the first slide */
}

.carousel-slide:nth-child(2) {
  background-image: url('banner2.jpg');
  height: 650px; /* Custom height for the second slide */
}

.carousel-slide:nth-child(3) {
  background-image: url('banner3.jpg');
  height: 650px; /* Custom height for the third slide */
}

/* Styling for the section */
.powerburn-ceramic {
  padding: 50px 20px;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
}

.powerburn-ceramic h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d2d2d;
  animation: fadeIn 1s ease-in-out;
}

.powerburn-methods {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.method {
  background-color: #ffffff;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideUp 1s ease-out;
}

.method h3 {
  font-size: 1.8rem;
  color: #0a64d7;
  margin-bottom: 10px;
}

.method p {
  font-size: 1rem;
  line-height: 1.5;
}

.recommendations {
  background-color: #ffffff;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.recommendations h3 {
  font-size: 1.8rem;
  color: #0a64d7;
  margin-bottom: 15px;
}

.recommendations ul {
  list-style-type: none;
  padding: 0;
}

.recommendations li {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  animation: fadeIn 1s ease-in-out;
}

.recommendations li:nth-child(odd) {
  animation-delay: 0.5s;
}

.recommendations li:nth-child(even) {
  animation-delay: 1s;
}

/* Animations */
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes slideUp {
  0% {
      transform: translateY(30px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .powerburn-methods {
      flex-direction: column;
      align-items: center;
  }

  .method {
      width: 80%;
      margin-bottom: 20px;
  }

  .recommendations {
      width: 90%;
  }
}
