/* Base Styles */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

header {
  background: linear-gradient(to right, #cce7ff 0%, #cce7ff 10%, #0055aa 100%);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.logo-img {
  max-width: 320px;
  height: auto;
}

.logo-heading {
  font-size: 1.8rem;
  margin: 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #0078D7, #000000);
  color: white;
}

.about h2, p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-button,
form button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #ff8c00, #ffa500);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Section Styles */
.services,
.portfolio,
.about,
.contact {
  padding: 3rem 2rem;
  background: white;
  margin: 1rem 0;
}

/* Package Cards */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
}

.package {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideIn 1s ease-in-out;
  min-width: 220px;
}

.package h2 {
  margin-top: 0;
}

.price {
  font-size: 1.5em;
  color: #0078D7;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "✔️ ";
  margin-right: 5px;
}

.bonus {
  background: #e6f7ff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 15px;
}

/* Form Styles */
form input,
form textarea,
form select {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
}

/* Swiper Slider Styles */
.swiper {
  width: 100%;
  height: 400px;
  margin-top: 2rem;
  position: relative;
  padding: 0 64px; /* space so navigation sits outside slides */
}

/* make sure wrapper & slides fill container */
.swiper-wrapper { height: 100%; display: flex; align-items: center; }
.swiper-slide {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 12px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  max-height: 100%;
  max-width: 100%;
}

/* Prev/Next buttons: circular with centered icon using SVG background */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  padding: 0;
  overflow: visible;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

/* place buttons a bit outside the main content so they do not overlap controls */
.swiper-button-prev { left: 12px; }
.swiper-button-next { right: 12px; }

/* white arrow SVG icons (URL-encoded) */
.swiper-button-prev {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/></svg>");
}
.swiper-button-next {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>");
}

/* hide any textual fallback some browsers inject */
.swiper-button-prev span,
.swiper-button-next span,
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
  content: none !important;
}

.swiper-pagination-bullet {
  background: #0078D7;
}

/* Image zoom overlay */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .swiper { padding: 0 48px; height: 320px; }
  .logo-img { max-width: 280px; }
}

@media (max-width: 768px) {
  header { flex-direction: column; align-items: flex-start; }
  nav ul { flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
  .logo-img { max-width: 200px; margin-bottom: 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .cta-button { padding: 0.5rem 1rem; font-size: 0.9rem; }
  .container { flex-wrap: wrap; justify-content: center; padding: 20px; }
  .package { flex: 1 1 100%; max-width: 100%; margin-bottom: 1rem; }
  form button { width: 100%; }
  footer { font-size: 0.9rem; padding: 0.5rem; }
  .swiper { height: 250px; padding: 0 24px; }
  .swiper-button-prev, .swiper-button-next { width: 40px; height: 40px; background-size: 14px 14px; left: 8px; right: 8px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.9rem; }
  .cta-button { font-size: 0.8rem; }
  .package { padding: 15px; }
  .price { font-size: 1.2em; }
  .swiper { height: 200px; padding: 0 12px; }
  /* hide nav arrows on very small screens to avoid overlap */
  .swiper-button-prev, .swiper-button-next { display: none; }
}

/* small animation */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* filepath: c:\Web\InfinitySL\InfinitySL\css\LandingPage.css */
/* Base Styles */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

header {
  background: linear-gradient(to right, #cce7ff 0%, #cce7ff 10%, #0055aa 100%);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.logo-img {
  max-width: 320px;
  height: auto;
}

.logo-heading {
  font-size: 1.8rem;
  margin: 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #0078D7, #000000);
  color: white;
}

.about h2, p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-button,
form button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #ff8c00, #ffa500);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Section Styles */
.services,
.portfolio,
.about,
.contact {
  padding: 3rem 2rem;
  background: white;
  margin: 1rem 0;
}

/* Package Cards */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
}

.package {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideIn 1s ease-in-out;
  min-width: 220px;
}

.package h2 {
  margin-top: 0;
}

.price {
  font-size: 1.5em;
  color: #0078D7;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "✔️ ";
  margin-right: 5px;
}

.bonus {
  background: #e6f7ff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 15px;
}

/* Form Styles */
form input,
form textarea,
form select {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
}

/* Swiper Slider Styles */
.swiper {
  width: 100%;
  height: 400px;
  margin-top: 2rem;
  position: relative;
  padding: 0 64px; /* space so navigation sits outside slides */
}

/* make sure wrapper & slides fill container */
.swiper-wrapper { height: 100%; display: flex; align-items: center; }
.swiper-slide {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 12px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  max-height: 100%;
  max-width: 100%;
}

/* Prev/Next buttons: circular with centered icon using SVG background */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  padding: 0;
  overflow: visible;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

/* place buttons a bit outside the main content so they do not overlap controls */
.swiper-button-prev { left: 12px; }
.swiper-button-next { right: 12px; }

/* white arrow SVG icons (URL-encoded) */
.swiper-button-prev {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/></svg>");
}
.swiper-button-next {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>");
}

/* hide any textual fallback some browsers inject */
.swiper-button-prev span,
.swiper-button-next span,
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
  content: none !important;
}

.swiper-pagination-bullet {
  background: #0078D7;
}

/* Image zoom overlay */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .swiper { padding: 0 48px; height: 320px; }
  .logo-img { max-width: 280px; }
}

@media (max-width: 768px) {
  header { flex-direction: column; align-items: flex-start; }
  nav ul { flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
  .logo-img { max-width: 200px; margin-bottom: 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .cta-button { padding: 0.5rem 1rem; font-size: 0.9rem; }
  .container { flex-wrap: wrap; justify-content: center; padding: 20px; }
  .package { flex: 1 1 100%; max-width: 100%; margin-bottom: 1rem; }
  form button { width: 100%; }
  footer { font-size: 0.9rem; padding: 0.5rem; }
  .swiper { height: 250px; padding: 0 24px; }
  .swiper-button-prev, .swiper-button-next { width: 40px; height: 40px; background-size: 14px 14px; left: 8px; right: 8px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.9rem; }
  .cta-button { font-size: 0.8rem; }
  .package { padding: 15px; }
  .price { font-size: 1.2em; }
  .swiper { height: 200px; padding: 0 12px; }
  /* hide nav arrows on very small screens to avoid overlap */
  .swiper-button-prev, .swiper-button-next { display: none; }
}

/* small animation */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}