body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 🔺 Header */
.header_section {
  background-color: #030d47;
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.navbar-brand span {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.menu-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

/* 🪟 Pikore Alumini Section */
.about_section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  color: #030d47;
  margin-bottom: 15px;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-item {
  flex: 1 1 30%;
  max-width: 300px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🛠️ Service Icons */
.service_icons {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
}

.icon-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.icon-box span {
  font-size: 14px;
  font-weight: 500;
  color: #030d47;
}

/* 📣 Social Section */
.social_section {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.social_section h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #030d47;
}

.social_container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social_container a {
  width: 35px;
  height: 35px;
  background-color: #030d47;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 16px;
  transition: background-color 0.3s;
}

.social_container a:hover {
  background-color: #e41a2b;
}
/* 🖱️ Social Link Hover & Label */
.social-link {
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.icon-label {
  display: block;
  font-size: 12px;
  color: #030d47;
  margin-top: 4px;
  text-align: center;
}
/* 🔻 Footer */
.footer_section {
  background-color: #030d47;
  text-align: center;
  padding: 25px 0;
  color: #ffffff;
  font-size: 14px;
}
