/* Navbar Style Start */
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header Styles - ALL ORIGINAL STYLING PRESERVED */
#navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
}

.logo-text span {
  color: #f37e21;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-logo {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  display: none;
}

.mobile-logo span {
  color: #f37e21;
}

/* Navigation - ORIGINAL STYLING PRESERVED */
nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  transition: color 0.3s;
  display: block;
  padding: 10px 0;
  position: relative;
}

nav ul li a:hover {
  color: #f37e21;
}

/* Dropdown Styles - ONLY HOVER FIXES APPLIED */
.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.6rem;
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  background-color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  z-index: 1000;
  padding: 30px;
  margin-top: 10px;
}

/* HOVER FIX: Only these lines changed */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Invisible hover bridge - ONLY ADDITION */
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}

/* ALL ORIGINAL DROPDOWN COLUMN STYLING PRESERVED */
.dropdown-column {
  flex: 1;
  padding: 0 15px;
  min-width: 250px;
}

.dropdown-column:not(:last-child) {
  border-right: 1px solid #f0f0f0;
}

.dropdown-column h4 {
  color: #2c3e50;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.dropdown-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #fe7200;
}

.dropdown-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dropdown-column ul li a {
  color: #555;
  padding: 0.5rem 0.9rem;
  display: block;
  transition: all 0.2s ease;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-column ul li a:hover {
  color: #ff7300;
  background-color: #f9f9f9;
  padding-left: 1.2rem;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .header-container {
    padding: 15px 20px;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .mobile-logo {
    display: block;
    text-align: center;
    font-size: 30px;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    padding-top: 40px;
    overflow-y: auto;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  nav ul li {
    margin: 15px 0;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    transform: none;
    display: none;
    box-shadow: none;
    padding: 15px;
    margin: 10px 0 0;
    opacity: 1;
    visibility: visible;
    flex-direction: column;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }

  .dropdown-column {
    padding: 10px 0;
    flex: 1 1 100%;
  }

  .dropdown-column:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 768px) {
  .dropdown-content {
    width: calc(100vw - 40px);
    left: 20px;
    transform: none;
  }
}

/* Hero Section */
.slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slide {
  width: 100%;
  height: 500px;
  display: none;
  position: relative;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s ease;
}

.slide:hover .slide-image {
  transform: scale(1.03);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 6rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  color: white;
}

.slide-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-weight: bold;
  text-shadow: 3px 8px 8px rgba(0, 0, 0, 0.3);
}

.slide-desc {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-style: italic;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ff790a;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 0px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-btn:hover {
  background-color: #f97a12;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-btn ion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.slide-btn:hover ion-icon {
  transform: translateX(4px);
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
}

.slider-nav-btn {
  cursor: pointer;
  background-color: white;
  color: #f37e21;
  font-size: 1.8rem;
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
}

.slider-nav-btn:hover {
  background-color: #c0392b;
  color: white;
  transform: scale(1.1);
}

.dot-container {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active,
.dot:hover {
  background-color: #f37e21;
  transform: scale(1.2);
  border-color: white;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* Responsive CSS for Slider */
@media (max-width: 768px) {
  .slide {
    height: 450px;
  }

  .slide-content {
    padding: 2rem;
  }

  .slide-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .slide {
    height: 400px;
  }

  .slide-content {
    padding: 1.5rem;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-desc {
    font-size: 1rem;
  }

  .slider-nav-btn {
    width: 45px;
    height: 45px;
  }
}

/* Featured Products Section */
.featured {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.featured-Bottom {
  padding: 0 5% 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  cursor: pointer;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  cursor: pointer;
}

.section-title h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 4px;
  background: #f37e21;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.section-title p {
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

/* three section product style */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Product Card Styling */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

/* Slider wrapper */
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Images */
.slide-img {
  min-width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 6px 10px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.arrow.prev { left: 10px; }
.arrow.next { right: 10px; }

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}


.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.product-card:hover .product-img img {
  transform: scale(1.03);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.product-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

/* View More Button Styling */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #f37e21;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(42, 127, 98, 0.2);
}

.view-more-btn:hover {
  background: #f4c39b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 127, 98, 0.3);
}

.view-more-btn:active {
  transform: translateY(0);
}

.view-more-btn svg {
  transition: transform 0.3s ease;
}

.view-more-btn:hover svg {
  transform: translateX(3px);
}

/* Categories Section */
.categories {
  padding: 50px 5%;
  background-color: #f1f1f1;
}

.categories-grid {
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  height: 200px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.category-card:hover .category-overlay {
  background-color: rgba(231, 76, 60, 0.8);
}

.category-card:hover {
  background-color: rgba(231, 76, 60, 0.8);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-name a {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

/* Navbar Style End */

/* Summary Page Styles */
.summary-container {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.summary-header {
  text-align: center;
  margin-bottom: 2rem;
}

.summary-header h1 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.summary-header p {
  color: #7f8c8d;
  font-size: 1rem;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 1rem;
}

.summary-section {
  margin-bottom: 3rem;
}

.summary-section-title {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f37e21;
  display: inline-block;
}

.summary-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.summary-feature-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.summary-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.summary-feature-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #f37e21;
}

.summary-feature-content {
  padding: 1.2rem;
}

.summary-feature-title {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1rem;
}

.summary-feature-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  height: 1rem;
  width: 0.25rem;
  background-color: #f37e21;
}

.summary-feature-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.summary-feature-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.summary-feature-list li {
  padding: 0.3rem 0;
  color: #444;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
  font-size: 0.9rem;
}

.summary-feature-list li:before {
  content: "•";
  color: #f37e21;
  position: absolute;
  left: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}

.summary-cta {
  display: inline-block;
  background: #f37e21;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.3rem;
  text-decoration: none;
  margin-top: 0.5rem;
  font-weight: bold;
  transition: all 0.3s;
  border: 2px solid #f37e21;
  font-size: 0.9rem;
}

.summary-cta:hover {
  background: transparent;
  color: #f37e21;
}

/* Responsive CSS for detail page*/
@media (min-width: 576px) {
  .summary-container {
    padding: 2rem 1.5rem;
  }

  .summary-header h1 {
    font-size: 2rem;
  }

  .summary-header p {
    font-size: 1.1rem;
    max-width: 90%;
  }

  .summary-feature-img {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .summary-header h1 {
    font-size: 2.2rem;
  }

  .summary-header p {
    max-width: 800px;
  }

  .summary-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .summary-section-title {
    font-size: 1.5rem;
  }

  .summary-feature-content {
    padding: 1.5rem;
  }
}

@media (min-width: 992px) {
  .summary-container {
    padding: 2.5rem 2rem;
  }

  .summary-header h1 {
    font-size: 2.5rem;
  }

  .summary-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .summary-feature-img {
    height: 220px;
  }

  .summary-feature-title {
    font-size: 1.3rem;
  }

  .summary-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .summary-header h1 {
    font-size: 2.8rem;
  }

  .summary-features {
    gap: 2.5rem;
  }

  .summary-section-title {
    font-size: 1.7rem;
  }
}

/* About Page CSS */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.about-header {
  background:
    linear-gradient(rgba(21, 21, 21, 0.7), rgba(21, 21, 21, 0.7)),
    url(../images/about-image.png);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
  height: 520px;
}

.about-header h1 {
  font-size: 28px;
  margin-top: 40px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.about-header p {
  font-size: 14px;
  font-style: italic;
  margin-top: 15px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Our Story Section */
.about-story {
  padding: 40px 5%;
  /* Added horizontal padding */
  background-color: white;
}

.about-story-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-story-text {
  flex: 1;
}

.about-story-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  /* Added transition to container */
}

.about-story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-story-image:hover img {
  transform: scale(1.05);
}

.about-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 30px;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}
.about-section-count-tittle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 30px;
  color: white;
  position: relative;
  display: inline-block;
}
.about-section-title:after {
  content: "";
  position: absolute;
  width: 120px;
  height: 4px;
  background: #f37e21;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.about-section-count-tittle:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  height: 4px;
  width: 0;
  background-color: #e74c3c;
  animation: growLine 1.2s ease-out forwards;
}
@keyframes growLine {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}
#scrollTopBtn {
  position: fixed;
  bottom: 90px; /* above WhatsApp */
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: #f37e21;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transition:
    background 0.3s,
    transform 0.3s;
}

#scrollTopBtn:hover {
  background-color: #ff0000;
  transform: scale(1.1);
}
html {
  scroll-behavior: smooth;
}

/* Responsive CSS for about page */
@media (max-width: 992px) {
  .about-story-content {
    gap: 30px;
  }

  .about-section-title:after {
    width: 60px;
    height: 3px;
    bottom: -8px;
  }
}

@media (max-width: 768px) {
  .about-story-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-story-text,
  .about-story-image {
    width: 100%;
    flex: none;
  }

  .about-story-image {
    order: -1;
    /* Image first on mobile */
  }

  .about-section-title {
    margin-bottom: 20px;
  }

  .about-section-title:after {
    width: 50px;
    bottom: -6px;
  }
}

@media (max-width: 480px) {
  .about-story {
    padding: 30px 5%;
  }

  .about-story-content {
    gap: 30px;
  }

  .about-section-title {
    font-size: 1.5rem;
  }

  .about-section-title:after {
    width: 40px;
    height: 2px;
  }
}

/* Mission Section */
.about-mission {
  padding: 50px 0;
  background-color: #f1f1f1;
}

.about-mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-mission-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.about-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-mission-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #f37e21;
}

.about-mission-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

/* Team Section */
.about-team {
  padding: 80px 0;
  background-color: white;
}

.about-team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-team-member {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-team-info {
  padding: 20px;
  background: white;
}

.about-team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.about-team-info p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.about-team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(231, 76, 60, 0.9);
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.about-team-member:hover .about-team-social {
  bottom: 0;
}

.about-team-social a {
  color: white;
  font-size: 1rem;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.about-team-social a:hover {
  transform: translateY(-5px);
}

/* Stats Section */
.about-stats {
  padding: 80px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/about-counter.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-stat-item h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #f37e21;
}

.about-stat-item p {
  font-size: 1.2rem;
}

/* Testimonials */
.about-testimonials {
  padding: 80px 0;
  background-color: #f1f1f1;
}

.about-testimonial-slider {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.about-testimonial-slide {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 15px;
  text-align: center;
  display: none;
}
.about-why-img {
  width: 500px;
  height: 500px;
}

.about-testimonial-slide:hover {
  transform: translateY(-10px);
}

.about-testimonial-slide.active {
  display: block;
}

.about-testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.about-testimonial-quote:before,
.about-testimonial-quote:after {
  content: '"';
  font-size: 2rem;
  color: #f37e21;
  opacity: 0.5;
}

.about-testimonial-author {
  font-weight: bold;
  margin-top: 20px;
}

.about-testimonial-role {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.about-testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.about-testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-testimonial-dot.active {
  background: #f37e21;
}

/*Contact Page CSS */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header Styles */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 35px;
  color: #2c3e50;
  margin-bottom: 0.9rem;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: #f37e21;
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.contact-subtitle {
  font-size: 15px;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-info {
  flex: 1;
  min-width: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-form-map-container {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Info Cards */
.contact-info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  max-height: 350px;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 1.8rem;
  color: #f37e21;
  margin-bottom: 1rem;
}

.contact-info-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: #2c3e50;
}

.contact-info-text {
  color: #7f8c8d;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}

.contact-form-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form-group {
  margin-bottom: 1.5rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #f37e21;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: #f37e21;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: block;
  margin: 1.5rem auto 0;
  font-weight: 500;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  background-color: #c0392b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Map Container */
.contact-map-container {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.contact-map-title {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.contact-map-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f37e21;
  border-radius: 3px;
}

.contact-map {
  height: 400px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

/* Email Link */
.contact-email-link {
  color: #7f8c8d;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
  word-break: break-all;
  /* Prevent long emails from overflowing */
}

.contact-email-link:hover {
  color: #f37e21;
  text-decoration: underline;
}

/* Responsive CSS for contact page */
@media (min-width: 768px) {
  .contact-submit-btn {
    width: auto;
    min-width: 200px;
  }

  .contact-form-title,
  .contact-map-title {
    text-align: left;
  }

  .contact-map-title::after {
    left: 0;
    transform: none;
  }
}

@media (max-width: 600px) {
  .contact-form,
  .contact-map-container {
    width: 100%;
    padding: 1.5rem;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-form,
  .contact-map-container {
    padding: 1.2rem;
    width: 100%;
    border-radius: 6px;
  }

  .contact-input,
  .contact-textarea {
    padding: 0.7rem;
  }

  .contact-map {
    height: 250px;
  }

  .contact-submit-btn {
    padding: 0.7rem 1.2rem;
  }
}

/* For very small devices */
@media (max-width: 360px) {
  .contact-form,
  .contact-map-container {
    padding: 1rem;
    width: 100%;
  }

  .contact-map {
    height: 200px;
  }
}

/* Compare page css start */
.tile-comparison {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  padding-top: 80px;
  color: #2c3e50;
}

.comparison-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.comparison-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #f37e21;
}

.comparison-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.comparison-alert {
  background-color: #f37e21;
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alert-icon {
  font-weight: bold;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.8rem 0;
}

.comparison-row.header {
  flex-direction: row;
  background-color: #f8f9fa;
  font-weight: bold;
  padding: 1rem 0;
}

.comparison-category {
  flex: 1;
  padding: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-item {
  flex: 1.5;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

.tile-select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
}

.comparison-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 5px;
  background-color: #f5f5f5;
}

.spec-icon {
  color: #f37e21;
  font-size: 1.1rem;
}

/* Responsive CSS for comparison page */
@media (min-width: 768px) {
  .comparison-row {
    flex-direction: row;
  }

  .comparison-row.header {
    flex-direction: row;
  }

  .comparison-category {
    padding: 1rem;
  }

  .comparison-item {
    padding: 1rem;
  }

  .comparison-img {
    height: 250px;
  }
}

@media (min-width: 992px) {
  .tile-comparison {
    padding: 3rem 2rem;
  }

  .comparison-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .comparison-container {
    padding: 2rem;
  }
}

/* Compare page css end */

/* Footer Style Start */
footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 50px 5% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #f37e21;
}

.footer-col p {
  margin-bottom: 15px;
  color: #bdc3c7;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-links a:hover {
  color: #f37e21;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #34495e;
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: #f37e21;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
}

@media (max-width: 768px) {
  .footer-container {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .footer-col h3 {
    margin-bottom: 15px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

@media (max-width: 605px) {
  footer {
    padding: 40px 5% 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .copyright {
    padding-top: 20px;
    margin-top: 20px;
  }
}

/* Footer Style End */

/* About page responsive css */
@media (min-width: 768px) {
  .about-header h1 {
    font-size: 32px;
    margin-top: 60px;
  }

  .about-header p {
    font-size: 15px;
    margin-top: 18px;
  }
}

@media (min-width: 992px) {
  .about-header h1 {
    font-size: 36px;
    margin-top: 70px;
  }

  .about-header p {
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (min-width: 1200px) {
  .about-header h1 {
    font-size: 40px;
    margin-top: 80px;
  }
}
/* Main contact icons (map, mail, phone, share, directions) */
.contact-icon {
  font-size: 32px;
  color: #f37e21; /* premium tile-gold shade */
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Card hover effect */
.contact-info-card:hover .contact-icon,
.contact-extra-card:hover .contact-icon {
  transform: scale(1.1);
  color: #f37e21;
}

/* Social media icons container */
.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
}

/* Social media icons */
.contact-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Social hover effect */
.contact-social-links a:hover {
  background: #f37e21;
  color: #fff;
  transform: translateY(-3px);
}

/* Smooth animation */
.contact-icon,
.contact-social-links a {
  transition: all 0.3s ease;
}
.copyright a {
  color: #bdc3c7; /* premium gold */
  text-decoration: none;
  font-weight: 500;
}

.copyright a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* home about  */

.about-section {
  padding: 80px 20px;
  background-image: url("../images/bg-home.png"); /* NEW BG IMAGE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

/* TEXT + IMAGE */
.about-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-subtitle {
  font-size: 36px;
  margin: 10px 0 25px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
}

/* POINTS SECTION */
.about-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-points {
  padding: 0;
  margin: 0;
}

.about-points li {
  list-style: none;
  font-size: 16px;
  color: #ffffff;
  padding: 15px 18px;
  background-color: #f37e21;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }

  .about-image img {
    height: 300px;
  }

  .about-subtitle {
    font-size: 28px;
  }

  .about-points-grid {
    grid-template-columns: 1fr;
  }
}

.dropdown-toggle::after {
  display: none !important;
}

/* Our Process Section */
.about-process {
  background: #f9f9f9;
}

.process-card {
  position: relative;
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 16px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f37e21;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}

.process-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
}

.process-step {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
}

/* Section Styling */
.modern-categories {
  padding: 80px 8% 0px 8%;
  background: #f9f9f9;
}

.modern-categories .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.modern-categories .section-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #222;
}

.modern-categories .section-title p {
  color: #777;
  font-size: 16px;
  margin-top: 10px;
}

/* Grid Layout */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 30px;
}

/* Card Style */
.modern-category-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.modern-category-card img {
  width: 100%;
  height: 220px;
  object-fit: fill;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.modern-category-card:hover img {
  transform: scale(1.1);
}

.modern-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Overlay */
.modern-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  text-align: center;
}

.modern-overlay h4 {
  margin: 0;
}

.modern-overlay a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.modern-overlay a:hover {
  color: #f8a25b;
}

/* Tablet */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* Overlay Improvement */
.modern-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  text-align: center;
  transition: 0.4s ease;
}

.modern-overlay h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Explore Button */
.explore-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #f37e21;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
}

.explore-btn span {
  margin-left: 5px;
  transition: 0.3s ease;
}

/* Hover Effects */
.modern-category-card:hover .explore-btn {
  background: #ec9c5b;
  color: #ffffff;
}

.modern-category-card:hover .explore-btn span {
  margin-left: 10px;
}
/* Materials Section */
.materials-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Card */
.material-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Icon */
.material-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.material-icon i {
  font-size: 26px;
  color: #333;
  transition: 0.4s ease;
}

.material-card:hover .material-icon {
  background: #f37e21;
}

.material-card:hover .material-icon i {
  color: #ffffff;
}

/* Title */
.material-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #222;
}

/* Description */
.material-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}

.scroll-down-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  padding: 12px 28px;
  background: #ffffff;
  color: #222;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.scroll-down-btn:hover {
  background: #f57e1b;
  color: #fff;
}

/* Arrow animation */
.scroll-down-btn .arrow {
  font-size: 18px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.materials-section {
  padding: 80px 8%;
  background: #f8f9fa;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.material-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.material-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.material-icon i {
  font-size: 26px;
  color: #333;
  transition: 0.4s ease;
}

.material-card:hover .material-icon {
  background: #f4b400;
}

.material-card:hover .material-icon i {
  color: #ffffff;
}

.material-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.material-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;   /* change as needed */
  width: auto;
}


.catalogue-button{
  padding: 12px ;
  background-color: #f37e21;
  color: white;
  font-size: 15px;
  font-weight: 500; 
  border: none;
  border-radius: 8px; 
}

.catalogue-button:hover {
  background-color: #c0392b;
  cursor: pointer;
}