/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, rgba(177, 64, 200, 1) 0%, rgba(109, 9, 121, 1) 35%, rgba(45, 1, 62, 1) 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navigation */
nav {
  background-color: #6a9529;
  height: 50px;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

nav ul li {
  width: 150px;
  text-align: center;
}

nav ul li a {
  display: block;
  text-decoration: none;
  color: white;
  line-height: 50px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: yellow;
  color: green;
}

/* Banner */
.banner {
  background-image: url("kamshi/perfumes2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title {
  font-size: 80px;
  color: #6a9529;
  text-align: center;
}

/* Services Section */
.container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
}

.box {
  position: relative;
  width: 250px;
  background: #fff;
  padding: 100px 40px 60px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
}

.box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #6a9529;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
  z-index: 0;
}

.box:hover::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.box h2 {
  position: absolute;
  top: 60px;
  left: 40px;
  font-size: 4em;
  font-weight: 800;
  z-index: 1;
  opacity: 0.1;
  transition: opacity 0.5s, transform 0.5s, color 0.5s;
}

.box:hover h2 {
  opacity: 1;
  transform: translateY(-40px);
  color: #fff;
}

.box h3,
.box p {
  position: relative;
  z-index: 2;
  transition: color 0.5s;
}

.box h3 {
  font-size: 1.5em;
  color: #333;
}

.box p {
  color: #555;
}

.box:hover h3,
.box:hover p {
  color: #fff;
}

/* About Section */
.about-us {
  padding: 60px 20px;
  text-align: center;
}

.about-col h1 {
  margin-bottom: 20px;
  font-size: 2em;
  color: #ffffff;
}

.about-col p {
  color: #ffffff;
  padding-bottom: 60px;
  max-width: 600px;
  margin: auto;
}

/* Glowing CTA */
.glow {
  font-size: 70px;
  color: #ffffff;
  text-align: center;
  margin: 40px auto;
  display: block;
  text-decoration: none;
  animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #eee, 0 0 20px #000, 0 0 30px #000,
      0 0 40px #000, 0 0 50px #9554b3, 0 0 60px #9554b3, 0 0 70px #9554b3;
  }
  to {
    text-shadow: 0 0 20px #eee, 0 0 30px #ff4da6, 0 0 40px #ff4da6,
      0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}

/* Footer */
.footer {
  background-color: #24262b;
  padding: 40px 0;
  color: #ffffff;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 20%;
  padding: 0 15px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e91e63;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #bbbbbb;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col-2 {
  text-align: center;
  color: #ffffff;
  flex: 1;
}

.footer-col-2 img {
  width: 60px;
  margin-bottom: 20px;
}

.footer-col-2 h3,
.footer-col-2 p {
  margin-top: 20px;
}

/* Social Links */
.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ffffff;
  color: #24262b;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-col {
    flex: 1 1 50%;
    margin-bottom: 30px;
  }

  .container1 {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 574px) {
  .footer-col {
    flex: 1 1 100%;
  }

  .page-title {
    font-size: 50px;
  }

  .glow {
    font-size: 40px;
  }
}
