/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

/* Container Utility */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #ff5e9c, #ffc1e3);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background-color: black;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #333;
}

/* Services Section */
.section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
}

/* Grid Layout */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card {
  flex: 1 1 30%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: #ff5e9c;
}

/* Footer */
.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 0;
}
/* Header Bar */
.header-bar {
  background-color: white;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff5e9c;
}
html {
  scroll-behavior: smooth;
}

#about p,
#contact p,
#contact ul {
  margin-top: 15px;
  line-height: 1.6;
}

#contact ul {
  list-style-type: none;
  padding-left: 0;
}

#contact ul li {
  margin-bottom: 10px;
}
.calculator-box {
  margin-top: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 400px;
}

.calculator-box label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.calculator-box input,
.calculator-box select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
}

.calculator-box button {
  width: 100%;
  padding: 12px;
  background-color: #ff5e9c;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.calculator-box button:hover {
  background-color: #e64787;
}

.result {
  margin-top: 15px;
  font-size: 1.2em;
  font-weight: bold;
}
/* Testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  margin-top: 30px;
}

.testimonial {
  display: none;
  text-align: center;
  font-style: italic;
  font-size: 1.1em;
  padding: 20px;
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial h4 {
  margin-top: 15px;
  font-weight: normal;
  color: #ff5e9c;
}

.testimonial-controls {
  text-align: center;
  margin-top: 20px;
}

.testimonial-controls button {
  background: #ff5e9c;
  border: none;
  color: white;
  padding: 10px 15px;
  margin: 0 10px;
  border-radius: 50%;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-controls button:hover {
  background: #e64a86;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.features {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
  max-width: 600px;
  margin: 20px auto;
}

.features li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5e9c;
  font-weight: bold;
  font-size: 1.2em;
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

.why-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex: 1 1 30%;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card img {
  height: 80px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ff5e9c;
}

.why-card p {
  font-size: 1em;
  color: #333;
  line-height: 1.5;
}
.about-logo {
  display: block;
  margin: 0 auto 50px auto;
  height: 90px; /* Adjust as needed */
}
.giftcard-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
}
.sliding-banner {
  width: 100%;
  height: 150px; /* Adjust based on image height */
  background-image: url('giftcards-banner.png');
  background-repeat: repeat-x;
  background-size: cover;
  background-position: 0 50%;
  animation: slide-left 20s linear infinite;
  margin-bottom: 30px;
  border-radius: 10px;
}

/* Keyframe Animation */
@keyframes slide-left {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Trusted by Section */
.trusted {
  background-color: #f9f9f9;
  text-align: center;
  padding: 40px 0;
  margin-bottom: 30px;
}

.trusted h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 20px;
}

/* Trusted by Section */
.stars {
  font-size: 2em;
  color: #ffcc00; /* Gold color for the stars */
  transition: transform 0.3s ease;
}

.stars span {
  margin: 0 3px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.stars span:hover {
  transform: scale(1.2); /* Slightly grow the star on hover */
  color: #ff9900; /* Change color to a brighter yellow on hover */
}

.stars span:active {
  transform: scale(1.1); /* Slightly shrink the star when clicked */
}
/* Black Container Below About Us */
.black-container {
  background-color: #000;
  padding: 10x 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  border-radius: 8px;
}

/* Logo inside black container */
.about-logo {
  width: auto;
  max-width: 100%; /* Keep logo size original but responsive */
}
