/* Global Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f9f9fb;
  height: 100%;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1600px;
  padding: 40px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.header img {
  width: 50px;
}

.powered-text {
  font-size: 14px;
  line-height: 1.2;
}

/* Sidebar Icons */
.sidebar-icons {
  position: absolute;
  left: 10px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.sidebar-icons img {
  width: 40px;
  height: 40px;
}

/* Main Section */
.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 120px;
  flex-wrap: wrap;
  gap: 40px;
}

.company-name {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: bold;
  text-align: left;
  flex: 1 1 300px;
  margin-left: 40px;
}

.company-name span {
  display: block;
  font-size: clamp(28px, 8vw, 52px);
  background: linear-gradient(to right, #7a3ef2, #e47ebf);
  -webkit-background-clip: text;
  color: transparent;
}

/* Card */
.card {
  background: #f4edf9;
  border-radius: 20px;
  padding: 40px;
  flex: 1 1 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-right: 40px;
  max-width: 600px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: -70px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.name {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: bold;
  margin: 0;
}

.role {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.contact, .email, .address {
  font-size: 16px;
  color: #7a3ef2;
  margin: 6px 0;
}

.email a {
  color: #7a3ef2;
  text-decoration: none;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  padding: 4px;
}

/* Features Section */
.features-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 80px;
  gap: 40px;
  background: #f0eff4;
  padding: 40px 20px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.features-section.fade-in-up {
  opacity: 1;
}

.features-section .image-box,
.features-section .text-box {
  flex: 1 1 400px;
  text-align: center;
  min-width: 280px;
}

.features-section img {
  border-radius: 10px;
}

.text-box h2 {
  font-size: 28px;
  color: #333;
}

.text-box h3 {
  font-size: 22px;
  color: #b75df5;
  margin-bottom: 20px;
}

.text-box button {
  display: block;
  width: 100%;
  max-width: 250px;
  padding: 10px;
  background: #a56df7;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  margin-bottom: 15px;
  cursor: pointer;
}

.text-box p {
  font-size: 15px;
  color: #555;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease forwards;
}

.zoom-in {
  animation: zoomIn 0.8s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

/* Header Carousel */
.header-carousel-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.header-carousel {
  display: flex;
  overflow: auto;
}

.header-carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
}

.header-carousel-item {
  flex-shrink: 0;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.header-carousel-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Video Carousel */
.video-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.video-card {
  flex: 0 0 auto;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 315px;
  border: none;
}

/* Arrow Buttons */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.arrow-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .main,
  .features-section {
    flex-direction: column;
    align-items: center;
  }

  .company-name,
  .card {
    margin: 0;
    text-align: center;
  }

  .card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .company-name {
    font-size: 24px;
    margin-left: 0;
    text-align: center;
  }

  .company-name span {
    font-size: 32px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .sidebar-icons {
    flex-direction: row;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .text-box button {
    max-width: 100%;
  }

  .video-card {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .company-name span {
    font-size: 28px;
  }

  .card {
    padding: 20px;
  }

  .profile-pic {
    width: 100px;
    height: 100px;
  }

  .sidebar-icons img {
    width: 30px;
    height: 30px;
  }

  .social-icons img {
    width: 36px;
    height: 36px;
  }

  .arrow-btn {
    padding: 8px;
    font-size: 20px;
  }
}
.downloads-section {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.downloads-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: bold;
  background: linear-gradient(to right, #7a3ef2, #e47ebf);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}

.downloads-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.download-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-bubble {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icon-bubble img {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .icon-bubble {
    width: 80px;
    height: 80px;
  }

  .icon-bubble img {
    width: 40px;
    height: 40px;
  }
}
.payments-section {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.payments-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: bold;
  background: linear-gradient(to right, #7a3ef2, #e47ebf);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}

.payment-box {
  background: #edd9fc;
  border-radius: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.payment-info {
  flex: 1 1 250px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.payment-info p {
  margin: 0;
}

.payment-info strong {
  font-size: 16px;
  color: #111;
}

.payment-info span {
  color: #777;
  font-size: 15px;
}

.payment-qr {
  flex: 1 1 300px;
  text-align: center;
}

.bank-logo {
  max-width: 180px;
  margin-bottom: 10px;
}

.qr-image {
  width: 200px;
  height: 200px;
  margin: 10px 0;
}

.payment-qr p {
  margin: 10px 0 0;
  font-size: 15px;
  color: #333;
}

.payment-qr span {
  color: #777;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payment-box {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .payment-info {
    text-align: center;
    align-items: center;
  }
}
/* Base Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
}

/* Spacer for map overlap */
.map-wrapper {
  position: relative;
  height: 200px; /* Keeps space above footer */
}

/* Responsive Square Map */
.map-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90vw;
  max-width: 500px;
  aspect-ratio: 1 / 1; /* Ensures perfect square */
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 10;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  position: relative;
  background-color: #000;
  color: white;
  text-align: center;
  padding: 300px 20px 40px;
  overflow: hidden;
  z-index: 1;
}

.footer .footer-content {
  position: relative;
  z-index: 2;
}

.footer p {
  margin: 10px 0;
}

.ecard-logo {
  width: 100px;
  max-width: 60%;
  margin: 10px 0;
}

/* Background Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: float 8s infinite ease-in-out;
}

.particle.red { background: red; top: 30%; left: 5%; }
.particle.purple { background: purple; top: 70%; left: 15%; }
.particle.orange { background: orange; top: 40%; right: 10%; }
.particle.red.small { background: red; width: 6px; height: 6px; top: 85%; right: 25%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Decorative Wave */
.wave-overlay {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 150%;
  background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(255, 255, 255, 0.05) 70%);
  z-index: 0;
  pointer-events: none;
}

/* ✅ Responsive Enhancements */
@media (max-width: 600px) {
  .map-container {
    width: 90vw;
    aspect-ratio: 1 / 1;
  }

  .footer {
    padding-top: 250px;
  }

  .ecard-logo {
    width: 80px;
  }
}
