/* CSS Boilerplate */

/* Contact Page Styles */
.contact-section-modern {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.contact-modern-header {
  margin-bottom: 60px;
}

.contact-modern-icon {
  font-size: 1.5rem;
  color: #7c4dff;
  margin-bottom: 1rem;
}

.contact-modern-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 1rem;
}

.contact-modern-subtitle {
  font-size: 1.1rem;
  color: #636e72;
}

.contact-modern-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(123, 111, 242, 0.2);
}

.contact-modern-card-icon {
  font-size: 2rem;
  color: #7c4dff;
  margin-bottom: 1.5rem;
}

.contact-modern-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3436;
}

.contact-modern-card-desc {
  color: #636e72;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-modern-card-link {
  color: #7c4dff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.contact-modern-card-link:hover {
  color: #6c3fff;
  text-decoration: none;
}

.contact-modern-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.15);
}

.contact-modern-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2d3436;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-floating {
  position: relative;
}

.contact-modern-input,
.contact-modern-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1rem;
  background: #f8f9fa;
}

.contact-modern-input:focus,
.contact-modern-textarea:focus {
  border-color: #7c4dff;
  box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.1);
  background: white;
}

.form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  color: #636e72;
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:focus ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-0.5rem) scale(0.85);
  background: white;
  padding: 0 0.5rem;
  left: 0.5rem;
  color: #7c4dff;
}

.contact-modern-btn {
  background: #7c4dff;
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  font-size: 1rem;
}

.contact-modern-btn:hover {
  background: #6c3fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* FAQ Section Styles */
.faq-section {
  /* background: #f8f9fa; */
  padding: 80px 0;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: #636e72;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: #2d3436;
  background: white;
}

.accordion-button:not(.collapsed) {
  color: #7c4dff;
  background: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(124, 77, 255, 0.1);
}

.accordion-body {
  padding: 1.5rem;
  color: #636e72;
  background: white;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-chat:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #333;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-chat:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Map Section Styles */
.contact-map-section {
  padding: 80px 0;
  /* background: white; */
}

.contact-map-header {
  margin-bottom: 40px;
}

.contact-map-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 1rem;
}

.contact-map-desc {
  color: #636e72;
  font-size: 1.1rem;
}

.contact-map-container {
  margin-bottom: 40px;
}

.contact-map-address,
.contact-map-hours {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.15);
  height: 100%;
}

.contact-map-address h4,
.contact-map-hours h4 {
  color: #2d3436;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-map-address p,
.contact-map-hours p {
  color: #636e72;
  line-height: 1.6;
  margin: 0;
}
/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set base font styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
/* Add more utilities as needed */
.plus-jakarta-sans {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
body {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Anchor styles */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Image styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* List styles */
ul,
ol {
  list-style: none;
}

/* Button reset */
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Form elements */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

/* Container utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Utility classes (optional) */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}

.framer-1kwgrva {
  align-content: center;
  align-items: center;
  background-color: #f6fbff;
  border-radius: 16px;
  box-shadow: inset 0 -3px 0 2px #8dc2eb40,
    0 0.7065919983928324px 0.7065919983928324px -0.5833333333333333px #10314d36,
    0 1.8065619053231785px 1.8065619053231785px -1.1666666666666665px #10314d33,
    0 3.6217592146567767px 3.6217592146567767px -1.75px #10314d33,
    0 6.8655999097303715px 6.8655999097303715px -2.333333333333333px #10314d2e,
    0 13.646761411524492px 13.646761411524492px -2.916666666666667px #10314d29,
    0 30px 30px -3.5px #10314d17;
  cursor: pointer;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  /* height: min-content; */
  justify-content: center;
  overflow: visible;
  padding: 10px;
  position: relative;
  width: 120px;
  z-index: 2;
  /* margin-top: 80px; */
}

.main-logo {
  padding-top: 140px;
}

.banner-txt h2 {
  font-size: 56px;
  color: #16101e;
  font-weight: 400;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s ease-out 1s forwards;
  /* delay 1s */
}

/* Keyframes */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-txt {
  text-align: center;
  padding: 0px 10px;
  font-family: Plus Jakarta Sans;
}

.bnr-btn {
  /* display: grid; */
  display: flex;
  place-items: center;
  background: linear-gradient(125deg, rgb(119, 75, 229)) -4%,
    rgb(119, 75, 229) 100%;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(123, 111, 242, 0.3);
  border: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.bnr-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.bnr-btn:hover::before {
  left: 100%;
}

.bnr-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(123, 111, 242, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.bnr-btn1 {
  background: linear-gradient(125deg, #0e1c29 -68%) -4%, #323d68 100% !important;
}

.banner-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.banner-txt p {
  margin: 20px 0px;
}

main {
  position: relative;
  overflow: hidden;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/i.webp);
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  z-index: -1;
}

.section01 {
  padding: 50px 0px;
  height: 100vh;
}

.section03 {
  padding-bottom: 80px;
}

.section05 {
  padding: 80px 0px;
}

.dashboard-card {
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 28px 24px 20px 24px;
  min-width: 220px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 111, 242, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.dashboard-card:hover::before {
  left: 100%;
}

.dashboard-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.dashboard-icon {
  font-size: 2.2rem;
  opacity: 0.3;
  position: absolute;
  top: 24px;
  right: 24px;
}

.dashboard-label {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.2rem;
}

.dashboard-value {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}

.dashboard-trend {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-top: 10px;
}

.dashboard-trend .trend-up {
  color: #1ecb89;
  font-weight: 500;
}

.dashboard-trend .trend-down {
  color: #f25767;
  font-weight: 500;
}

.dashboard-trend .trend-arrow {
  font-size: 1.1rem;
  margin-right: 4px;
}

.why-section {
  background: #f6fafd;
  border-radius: 20px;
  margin: 36px auto 0 auto;
  padding: 36px 0 32px 0;
  /* max-width: 1100px; */
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
}

.why-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #222c36 0%, #7b6ff2 50%, #5a4fcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.why-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7b6ff2 0%, #5a4fcf 100%);
  border-radius: 2px;
  opacity: 0.8;
}

.why-title::before {
  content: "✨";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.7;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  width: 300px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 111, 242, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.why-card:hover::before {
  left: 100%;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-icon {
  font-size: 2rem;
  color: #7b6ff2;
  margin-bottom: 10px;
}

.why-card-title {
  font-weight: 600;
  color: #222c36;
  margin-bottom: 6px;
}

.why-card-desc {
  color: #555;
  font-size: 1rem;
}

.enterprises-section {
  background: rgba(255, 255, 255, 0);
  padding: 36px 0 32px 0;
  margin-top: 32px;
  border-radius: 0 0 24px 24px;
  /* box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04); */
}

.enterprises-divider {
  border-top: 2px dashed #8b8b8b;
  opacity: 0.7;
  margin-bottom: 12px;
}

.enterprises-heading {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #222c36 0%, #7b6ff2 50%, #5a4fcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.enterprises-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #7b6ff2 0%, #5a4fcf 100%);
  border-radius: 1px;
  opacity: 0.8;
}

.enterprises-heading::before {
  content: "🌟";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  opacity: 0.8;
  animation: twinkle 2s infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

.enterprises-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 48px;
  margin-top: 8px;
}

.enterprise-logo {
  display: flex;
  align-items: center;
  font-size: 1.45rem;
  color: #555;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.5px;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
}

.enterprise-logo:hover {
  opacity: 1;
  color: #7b6ff2;
  transform: translateY(-2px);
  background: rgba(123, 111, 242, 0.1);
}

.enterprise-logo svg {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.enterprise-logo:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

.enterprise-logo.underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-section {
  background: #f6fafd;
  border-radius: 20px;
  margin: 36px auto 0 auto;
  padding: 36px 0 32px 0;
  /* max-width: 1100px; */
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
  position: relative;
}

.services-badge {
  display: inline-block;
  background: #fff;
  color: #222c36;
  font-size: 0.95rem;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 500;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.04);
  margin-bottom: 10px;
}

.services-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(
    135deg,
    #222c36 0%,
    #7b6ff2 30%,
    #5a4fcf 70%,
    #222c36 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.services-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #7b6ff2 20%,
    #5a4fcf 80%,
    transparent 100%
  );
  border-radius: 2px;
  opacity: 0.9;
}

.services-title::before {
  content: "🚀";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  opacity: 0.8;
}

.services-subtitle {
  color: #555;
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 32px;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  padding: 32px 28px 28px 28px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 111, 242, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.service-icon {
  background: #e9eef2;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: #7b6ff2;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222c36;
  margin-bottom: 10px;
  text-align: center;
}

.service-desc {
  color: #555;
  font-size: 1rem;
  text-align: center;
}

.hero-section {
  background: #e9eef2;
  border-radius: 24px;
  margin: 32px auto 0 auto;
  padding: 48px 0 32px 0;
  max-width: 1200px;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.07);
  position: relative;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hero-left {
  flex: 1 1 380px;
  min-width: 320px;
  padding-left: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #222c36;
  font-size: 1rem;
  border-radius: 16px;
  padding: 4px 18px 4px 10px;
  font-weight: 500;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.04);
  margin-bottom: 18px;
  gap: 7px;
}

.hero-badge svg {
  width: 22px;
  height: 22px;
  color: #7b6ff2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.05;
  background: linear-gradient(
    135deg,
    #222c36 0%,
    #7b6ff2 25%,
    #5a4fcf 50%,
    #7b6ff2 75%,
    #222c36 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #7b6ff2 0%, #5a4fcf 100%);
  border-radius: 2px;
  opacity: 0.8;
}

.hero-title::before {
  content: "⚡";
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 2rem;
  opacity: 0.7;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-desc {
  color: #555;
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 18px;
}

.hero-btn-primary {
  background: linear-gradient(90deg, #7b6ff2 0%, #6a5ae0 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(123, 111, 242, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(123, 111, 242, 0.4);
  background: linear-gradient(90deg, #6a5ae0 0%, #7b6ff2 100%);
}

.hero-btn-secondary {
  background: #222c36;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(34, 44, 54, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .hero-btn-secondary {
    padding: 8px 17px;
  }
}

.hero-btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.hero-btn-secondary:hover::before {
  left: 100%;
}

.hero-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(34, 44, 54, 0.3);
  background: #fff;
  color: #222c36;
  border: 1px solid #222c36;
}

.hero-right {
  flex: 1 1 420px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 32px;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  padding: 32px 32px 24px 32px;
  min-width: 340px;
  max-width: 400px;
  position: relative;
  top: -80px;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222c36;
  margin-bottom: 0;
}

.hero-card-status {
  color: #1ecb89;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 10px;
  vertical-align: middle;
}

.hero-card-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #1ecb89;
  border-radius: 50%;
  margin-right: 5px;
}

.hero-chart-card {
  background: #f6fafd;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 18px 18px 10px 18px;
  position: absolute;
  left: 50px;
  top: 70px;
  min-width: 270px;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 900px) {
  .hero-chart-card {
    left: 0px;
    top: auto;
  }
}

.hero-chart-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-chart-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222c36;
  margin-bottom: 0;
}

.hero-chart-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222c36;
  margin-bottom: 8px;
}

.hero-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 80px;
  margin-bottom: 6px;
  margin-top: 8px;
}

.hero-bar {
  width: 18px;
  border-radius: 6px 6px 0 0;
  background: #dbe2ea;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-bar:hover {
  background: #7b6ff2;
  transform: scaleY(1.1);
}

.hero-bar.active {
  background: #7b6ff2;
  animation: glow 2s ease-in-out infinite;
}

.hero-bar-labels {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: #888;
  justify-content: space-between;
}

.inspired-section {
  background: rgba(10, 11, 13, 0);
  color: #fff;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.inspired-title {
  font-size: 12vw;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    #515151 0%,
    #7b6ff2 30%,
    #5a4fcf 60%,
    #515151 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.inspired-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #7b6ff2 20%,
    #5a4fcf 50%,
    #7b6ff2 80%,
    transparent 100%
  );
  border-radius: 3px;
  opacity: 0.8;
}

.inspired-title::before {
  content: "💫";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
  -webkit-text-fill-color: darkcyan;
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.inspired-subtitle {
  font-size: 1.5rem;
  color: #494949;
  margin-bottom: 18px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.inspired-btns {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.inspired-btn {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 40px;
  padding: 18px 38px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.inspired-btn:hover {
  background: #e0e0e0;
  color: #111;
}

.inspired-btn.secondary {
  background: transparent;
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: none;
  text-decoration: underline 0.15em #fff00a00;
  padding: 18px 28px;
}

.inspired-btn.secondary:hover {
  color: #e0e0e0;
  background: transparent;
  text-decoration: underline 0.15em #e0e0e0;
}

.creators-section {
  background: #e9eef2;
  color: #fff;
  border-radius: 24px;
  margin: 48px auto 0 auto;
  padding: 48px 20px 48px 20px;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.07);
  /* position: relative; */
}

.creators-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: black;
  margin-bottom: 8px;
}

.creators-subtitle {
  color: #888;
  font-size: 1.08rem;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

.creators-grid {
  columns: 4;
  column-gap: 20px;
  text-align: left;
}

.creator-card {
  background: #f6fafd;
  border-radius: 12px;
  border: 1px solid #c5c5c5;
  padding: 20px;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  break-inside: avoid;
  box-sizing: border-box;
}

/* .creator-card::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 60px;
                background: linear-gradient(to top,
                        rgba(17, 17, 17, 1) 0%,
                        rgba(17, 17, 17, 0.8) 30%,
                        rgba(17, 17, 17, 0.4) 60%,
                        transparent 100%);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                pointer-events: none;
                z-index: 2;
            } */

.creator-card:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(65, 65, 65, 0.4);
}

.creator-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
}

.creator-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.creator-info {
  flex: 1;
}

.creator-name {
  font-weight: 600;
  color: black;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.2;
}

.creator-company {
  color: #888;
  font-size: 0.9rem;
  margin: 2px 0 0 0;
  font-weight: 400;
}

.creator-quote {
  color: #2b2b2b;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

/* Add bottom section blur overlay */
/* .creators-section::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 100px;
                background: linear-gradient(to top,
                        rgba(10, 10, 10, 1) 0%,
                        rgba(10, 10, 10, 0.8) 30%,
                        rgba(10, 10, 10, 0.4) 60%,
                        transparent 100%);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                pointer-events: none;
                z-index: 10;
            } */

/* Different avatar gradients */
.creator-card:nth-child(1) .creator-avatar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.creator-card:nth-child(2) .creator-avatar {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.creator-card:nth-child(3) .creator-avatar {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.creator-card:nth-child(4) .creator-avatar {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.creator-card:nth-child(5) .creator-avatar {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.creator-card:nth-child(6) .creator-avatar {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.creator-card:nth-child(7) .creator-avatar {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.creator-card:nth-child(8) .creator-avatar {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.creator-card:nth-child(9) .creator-avatar {
  background: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%);
}

.creator-card:nth-child(10) .creator-avatar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.creator-card:nth-child(11) .creator-avatar {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.creator-card:nth-child(12) .creator-avatar {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.creator-card:nth-child(13) .creator-avatar {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.creator-card:nth-child(14) .creator-avatar {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.creator-card:nth-child(15) .creator-avatar {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.footer-dark {
  /* background: #18191b; */
  background: #e9eef2;
  color: #272727;
  border-radius: 40px 40px 0px 0px;
  margin: 0px auto 0 auto;
  padding: 48px 36px 18px 36px;
  /* max-width: 1250px; */
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.13);
  position: relative;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-logo::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 180deg at 50% 50%, #c850c0 0%, #4158d0 100%);
  z-index: 0;
}

.footer-logo svg {
  position: relative;
  z-index: 1;
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #010101;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-link-col {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-link-col a {
  color: #202020;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.88;
  transition: color 0.2s, opacity 0.2s;
}

.footer-link-col a:hover {
  color: #c850c0;
  opacity: 1;
}

.footer-newsletter {
  min-width: 260px;
  max-width: 340px;
  margin-left: auto;
}

.footer-newsletter label {
  font-weight: 500;
  color: #1b1b1b;
  margin-bottom: 8px;
  display: block;
}

.footer-newsletter-desc {
  color: #303030;
  font-size: 0.98rem;
  margin-bottom: 18px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}

.footer-newsletter-input {
  background: #232325;
  border: none;
  border-radius: 24px 0 0 24px;
  color: #fff;
  padding: 12px 18px;
  font-size: 1rem;
  flex: 1 1 auto;
  outline: none;
  width: 100%;
}

.footer-newsletter-btn {
  background: #fff;
  color: #18191b;
  border: none;
  border-radius: 0 24px 24px 0;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  margin-left: -2px;
}

.footer-newsletter-btn:hover {
  background: #c850c0;
  color: #fff;
}

.footer-copyright {
  text-align: center;
  color: #282828;
  font-size: 1rem;
  margin-top: 32px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .creators-grid {
    columns: 3;
  }
}

@media (max-width: 991.98px) {
  .footer-row {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-direction: row;
  }

  .footer-newsletter {
    max-width: 100%;
  }

  .why-cards {
    gap: 24px;
  }

  .why-card {
    width: 280px;
  }

  .dashboard-card {
    margin-bottom: 16px;
  }

  .services-cards {
    gap: 24px;
  }

  .service-card {
    width: 280px;
  }

  .hero-row {
    flex-direction: column;
    gap: 40px;
    flex-wrap: nowrap !important;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-section {
    padding: 40px 0;
  }

  .hero-card,
  .hero-chart-card {
    max-width: 100%;
  }

  .about-row {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-left {
    max-width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-image-container {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .creators-grid {
    columns: 2;
    column-gap: 16px;
  }

  .creator-card {
    margin-bottom: 16px;
  }

  .creators-title {
    font-size: 1.8rem;
  }

  .creators-section {
    padding: 32px 16px 32px 16px;
  }

  .mobile-header {
    display: flex;
  }

  .navheader {
    display: none !important;
  }

  .about-image {
    height: auto !important;
  }
  .about-image-container {
    height: 100% !important;
  }

  .hero-row {
    flex-direction: column;
    gap: 40px;
    flex-wrap: nowrap !important;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
  }
}

@media (max-width: 767.98px) {
  .enterprises-logos {
    gap: 24px 32px;
  }

  .enterprise-logo {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-card,
  .hero-chart-card {
    padding: 20px;
  }

  .footer-dark {
    padding: 32px 20px;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-link-col {
    min-width: 100px;
  }

  .footer-newsletter {
    max-width: 100%;
  }

  .inspired-title {
    font-size: 16vw;
  }

  .inspired-subtitle {
    font-size: 1.1rem;
  }

  .inspired-btn {
    font-size: 1rem;
    padding: 14px 22px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-content {
    font-size: 1rem;
  }

  .about-image-container {
    width: 250px;
    height: 250px;
  }

  .why-title {
    font-size: 2rem;
  }

  .services-title {
    font-size: 2.2rem;
  }

  .enterprises-heading {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .banner-txt h2 {
    font-size: 32px;
  }
  .dashboard-card {
    margin-bottom: 0px;
  }
  .enterprises-heading {
    font-size: 1rem;
  }
  .section05 {
    padding: 0px;
  }

  .hero-btn-primary {
    font-size: 12px;
    padding: 13px 17px;
  }

  .hero-chart-card {
    top: 93px;
  }
  .inspired-section {
    min-height: 60vh;
  }
  .creators-section {
    margin-top: 0px;
  }
  .footer-newsletter-btn {
    padding: 12px 18px;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .services-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-title {
    font-size: 2rem !important;
  }

  .inspired-title {
    font-size: 18vw;
  }
}

@media (max-width: 480px) {
  .creators-grid {
    columns: 1;
  }
}

.about-section {
  background: linear-gradient(135deg, #f8fafd 0%, #e8f4fd 100%);
  border-radius: 24px;
  margin: 48px auto 0 auto;
  padding: 48px 0;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(123, 111, 242, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #7b6ff2 0%, #5a4fcf 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(123, 111, 242, 0.3);
}

.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.about-left {
  flex: 1;
  max-width: 600px;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    #222c36 0%,
    #7b6ff2 40%,
    #5a4fcf 70%,
    #222c36 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.03em;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #7b6ff2 0%, #5a4fcf 100%);
  border-radius: 2px;
  opacity: 0.8;
}

.about-title::before {
  content: "🏢";
  position: absolute;
  top: -20px;
  left: -15px;
  font-size: 1.8rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.about-content {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 600px) {
  .about-feature{
    display: block;
  }
}

.about-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 111, 242, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.about-feature:hover::before {
  left: 100%;
}

.about-feature:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.about-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.about-feature:hover .about-feature-icon {
  transform: scale(1.2) rotate(5deg);
}

.about-image-container {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  /* background: linear-gradient(135deg, #7b6ff2 0%, #5a4fcf 100%); */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.about-image-container:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.1);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 111, 242, 0.1) 0%,
    rgba(90, 79, 207, 0.1) 100%
  );
  pointer-events: none;
}

/* Modern Animations and Interactions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(123, 111, 242, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(123, 111, 242, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Interactive Elements */
.interactive-card {
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
}
.interactive-card:hover,
.interactive-card:focus {
  box-shadow: 0 12px 32px rgba(123, 111, 242, 0.18),
    0 2px 8px rgba(30, 203, 137, 0.08);
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}
@media (hover: none) {
  .interactive-card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(123, 111, 242, 0.1);
  }
}
/* Service image hover zoom */
.service-img {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}
.interactive-card:hover .service-img,
.interactive-card:focus .service-img {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(123, 111, 242, 0.18);
}
/* Ripple effect for buttons */
.service-alt-btn {
  position: relative;
  overflow: hidden;
}
.service-alt-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(123, 111, 242, 0.25);
  pointer-events: none;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  opacity: 0.7;
  z-index: 1;
}
@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
/* Scroll reveal animation */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(123, 111, 242, 0.1);
  z-index: 10000;
  overflow: hidden;
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #7b6ff2 0%, #5a4fcf 100%);
  width: var(--scroll-width, 0%);
  transition: width 0.3s ease;
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(123, 111, 242, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Body Loading State */
body.loaded {
  opacity: 1;
  transition: opacity 0.5s ease;
}

body {
  opacity: 1;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: rgba(123, 111, 242, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.3s ease;
  mix-blend-mode: difference;
}

/* Animate on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Professional Hover State */
.professional-hover-state:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Navigation/Menu Styles */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 4px;
  background: linear-gradient(
    127deg,
    rgb(14, 28, 41) 0%,
    rgb(50, 61, 104) 100%
  );
  border: 2px solid #c0dfff;
  color: white;
  gap: 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  width: 180px;
}

.text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
}

.svg {
  padding-top: 5px;
  height: 100%;
  width: fit-content;
}

.svg svg {
  width: 40px;
  height: 30px;
}

.button:active {
  border: 5px solid #c0dfff;
}

.button:hover .svg svg {
  animation: jello-vertical 0.9s both;
  transform-origin: left;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.navheader {
  background-color: rgba(245, 250, 255, 0);
  border-radius: 16px;
  box-shadow: none;
  opacity: 1;
  padding: 20px 0px;
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 999;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbtn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pages {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.pages ul {
  display: flex;
  font-size: 18px;
  padding: 0px;
  list-style: none;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}

.pages ul li:hover {
  cursor: pointer;
}

header .container.scrolled {
  background-color: rgb(246, 251, 255) !important;
  border-radius: 16px !important;
  box-shadow: rgba(76, 80, 133, 0.2) 0px 10px 17px -5px !important;
  transform: none !important;
  transform-origin: 50% 50% 0px !important;
  will-change: auto !important;
  padding: 10px 10px;
  transition: all 0.4s ease;
  max-width: 800px;
}

/* Mobile Header Styles */
.mobile-header {
  position: fixed;
  top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

.mobile-header-container {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 10px 16px;
  width: 90%;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 18px;
}

.mobile-logo img {
  width: 100px;
}

.mobile-menu-toggle {
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 360px;
  background-color: #fff;
  height: 100vh;
  z-index: 9999;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 20px 20px 0 0;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-menu-close {
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.mobile-menu-links li {
  margin-bottom: 16px;
}

.mobile-menu-links a {
  text-decoration: none;
  font-size: 18px;
  color: #111;
}

.template-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(145deg, #111b4a, #23285d);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Mobile Navigation Media Queries */
@media (max-width: 2560px) {
  .mobile-header {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-header {
    display: flex;
  }

  .navheader {
    display: none !important;
  }
}

/* Aeggis Hero Section Styles */
.aeggis-hero-section {
  background: #f6fafd;
  border-radius: 24px;
  margin: 32px auto 0 auto;
  padding: 48px 0 32px 0;
  max-width: 1200px;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.07);
  position: relative;
}

.aeggis-hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.aeggis-hero-left {
  flex: 1 1 380px;
  min-width: 320px;
  padding-left: 48px;
}

.aeggis-hero-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #222c36;
  font-size: 1rem;
  border-radius: 16px;
  padding: 4px 18px 4px 10px;
  font-weight: 500;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.04);
  margin-bottom: 18px;
  gap: 7px;
}

.aeggis-hero-badge svg {
  width: 22px;
  height: 22px;
  color: #7b6ff2;
}

.aeggis-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #222c36;
  margin-bottom: 16px;
  line-height: 1.1;
}

.aeggis-hero-desc {
  color: #555;
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.aeggis-hero-btns {
  display: flex;
  gap: 18px;
}

.aeggis-hero-btn-primary {
  background: linear-gradient(90deg, #7b6ff2 0%, #6a5ae0 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 6px 18px 0 rgba(123, 111, 242, 0.18);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aeggis-hero-btn-primary:hover {
  background: linear-gradient(90deg, #6a5ae0 0%, #7b6ff2 100%);
  color: #fff;
}

.aeggis-hero-btn-secondary {
  background: #222c36;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 6px 18px 0 rgba(34, 44, 54, 0.1);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aeggis-hero-btn-secondary:hover {
  background: #fff;
  color: #222c36;
  border: 1px solid #222c36;
}

.aeggis-hero-right {
  flex: 1 1 420px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 32px;
}

.aeggis-hero-card {
  background: #f6fafd;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(123, 111, 242, 0.1);
  padding: 32px 32px 24px 32px;
  min-width: 340px;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.aeggis-hero-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222c36;
  margin-bottom: 0;
}

.aeggis-hero-card-status {
  color: #1ecb89;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 10px;
  vertical-align: middle;
}

.aeggis-hero-card-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #1ecb89;
  border-radius: 50%;
  margin-right: 5px;
}

.aeggis-hero-chart-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(123, 111, 242, 0.1);
  padding: 18px 18px 10px 18px;
  position: absolute;
  left: 50px;
  top: 70px;
  min-width: 270px;
  z-index: 3;
}

.aeggis-hero-chart-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222c36;
  margin-bottom: 0;
}

.aeggis-hero-chart-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222c36;
  margin-bottom: 8px;
}

.aeggis-hero-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-bottom: 6px;
  margin-top: 8px;
}

.aeggis-hero-bar {
  width: 18px;
  border-radius: 6px 6px 0 0;
  background: #e3e8f0;
  transition: background 0.2s;
}

.aeggis-hero-bar.active {
  background: #5d5efc;
}

.aeggis-hero-bar-labels {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: #888;
  justify-content: space-between;
}

/* Aeggis Hero Section Media Queries */
@media (max-width: 991.98px) {
  .aeggis-hero-row {
    flex-direction: column;
    gap: 0;
  }
  .aeggis-hero-left,
  .aeggis-hero-right {
    padding: 0 18px;
  }
  .aeggis-hero-section {
    padding: 32px 0 18px 0;
  }
  .aeggis-hero-card,
  .aeggis-hero-chart-card {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .aeggis-hero-title {
    font-size: 2rem;
  }
  .aeggis-hero-card,
  .aeggis-hero-chart-card {
    min-width: 90vw;
    max-width: 98vw;
  }
}

/* Custom CTA Section */
.custom-cta-section {
  background: radial-gradient(ellipse at 60% 40%, #7b6ff2 0%, #5a4fcf 100%);
  border-radius: 28px;
  margin: 40px auto 32px auto;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
  padding: 0;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}

.cta-badge {
  display: inline-block;
  background: #23232b;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 16px;
  padding: 6px 18px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(123, 111, 242, 0.1);
  letter-spacing: 0.01em;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-desc {
  color: #e0e0e0;
  font-size: 1.15rem;
  max-width: 520px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #7b6ff2;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 24px;
  padding: 14px 32px;
  box-shadow: 0 4px 18px rgba(123, 111, 242, 0.13);
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  outline: none;
  margin-top: 8px;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #7b6ff2 0%, #5a4fcf 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(123, 111, 242, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.cta-btn .arrow {
  font-size: 1.3em;
  margin-left: 4px;
  transition: margin-left 0.2s;
}

.cta-btn:hover .arrow {
  margin-left: 10px;
}

.cta-media-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(44, 62, 80, 0.1);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  width: 100%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.cta-video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
  background: #222c36;
}

/* Custom CTA Section Media Queries */
@media (max-width: 991.98px) {
  .cta-title {
    font-size: 1.5rem;
  }

  .cta-media-wrapper {
    max-width: 100%;
  }

  .cta-video {
    height: 100%;
  }
}

@media (max-width: 767.98px) {
  .custom-cta-section {
    border-radius: 18px;
    margin: 18px 0;
  }

  .cta-title {
    font-size: 1.1rem;
  }

  .cta-desc {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 12px 18px;
  }

  .cta-media-wrapper {
    padding: 4px;
  }

  .cta-video {
    height: 100%;
  }
}

/* Service Detail Section Alternative */
.service-detail-section-alt {
  position: relative;
  z-index: 1;
}

.service-alt-row {
  margin-bottom: 48px !important;
}

.service-alt-img {
  min-height: 180px;
  border-radius: 24px 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-alt-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #222c36;
  background: linear-gradient(135deg, #222c36 0%, #7b6ff2 50%, #5a4fcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.service-alt-desc {
  color: #555;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-alt-list {
  color: #555;
  font-size: 1.08rem;
  margin-bottom: 18px;
  padding-left: 18px;
}

.service-alt-list li {
  margin-bottom: 6px;
  list-style: disc;
}

.service-alt-btn {
  background: linear-gradient(125deg, #7b6ff2 0%, #5a4fcf 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 24px;
  padding: 14px 32px;
  box-shadow: 0 4px 18px rgba(123, 111, 242, 0.13);
  text-decoration: none;
  transition: all 0.2s, box-shadow 0.3s, transform 0.3s;
  border: none;
  outline: none;
  margin-top: 8px;
  display: inline-block;
}

.service-alt-btn:hover {
  background: linear-gradient(90deg, #7b6ff2 0%, #5a4fcf 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(123, 111, 242, 0.18);
  transform: translateY(-2px) scale(1.06);
}

/* Service Detail Section Media Queries */
@media (max-width: 991.98px) {
  .service-alt-title {
    font-size: 1.5rem;
  }
  .service-alt-row {
    margin-bottom: 32px !important;
  }
  .service-alt-img {
    min-height: 120px;
  }
}

@media (max-width: 767.98px) {
  .service-detail-section-alt {
    padding: 32px 0;
  }
  .service-alt-title {
    font-size: 1.2rem;
  }
  .service-alt-row {
    flex-direction: column !important;
  }
  .service-alt-img {
    min-height: 80px;
    justify-content: flex-start;
    margin-bottom: 12px;
    display: flex !important;
  }
  .service-img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
  }
  .service-alt-btn {
    font-size: 1rem;
    padding: 12px 18px;
  }
}

/* --- Contact Page Custom Styles --- */
.contact-section-custom {
  /* background: linear-gradient(135deg, #f6fafd 60%, #e9e6fa 100%); */
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0px 60px 0px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #f6fafd 60%, #e9e6fa 100%);
}
.contact-section-custom::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
      circle at 30% 30%,
      #b6aaff33 0%,
      #f6fafd 60%,
      transparent 100%
    ),
    radial-gradient(
      circle at 80% 80%,
      #7b6ff222 0%,
      #e9e6fa 60%,
      transparent 100%
    );
  z-index: 0;
  animation: gradientMove 12s ease-in-out infinite alternate;
}
@keyframes gradientMove {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.05) translateY(-20px);
  }
}
.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.contact-header {
  text-align: center;
  margin-bottom: 36px;
}
.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #222c36 0%,
    #7b6ff2 40%,
    #5a4fcf 70%,
    #222c36 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.contact-desc {
  color: #555;
  font-size: 1.1rem;
}
.contact-content {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
}
/* Divider for desktop */
.contact-content::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 10%;
  height: 80%;
  width: 2px;
  background: linear-gradient(180deg, #e9e6fa 0%, #7b6ff2 50%, #e9e6fa 100%);
  opacity: 0.12;
  border-radius: 2px;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .contact-content::before {
    display: none;
  }
}
.contact-form-card,
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.1);
  padding: 36px 28px;
  flex: 1 1 340px;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: visible;
}
.contact-form-card:hover,
.contact-info-card:hover {
  box-shadow: 0 12px 36px 0 #7b6ff244, 0 2px 8px #7b6ff222;
  transform: translateY(-4px) scale(1.025);
}
/* Floating icon for cards */
.contact-form-card::before,
.contact-info-card::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b6ff2 0%, #5a4fcf 100%);
  box-shadow: 0 4px 16px #7b6ff244;
  opacity: 0.12;
  z-index: 0;
}
.contact-form-card::before {
  background: linear-gradient(135deg, #7b6ff2 0%, #5a4fcf 100%);
}
.contact-info-card::before {
  background: linear-gradient(135deg, #5a4fcf 0%, #7b6ff2 100%);
  left: auto;
  right: 32px;
}
.contact-form-title,
.contact-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #7b6ff2;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.contact-form-custom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-weight: 600;
  color: #222c36;
  margin-bottom: 2px;
}
.contact-input,
.contact-textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
  background: #f9f9ff;
  resize: none;
  box-shadow: 0 1px 4px #7b6ff208;
}
.contact-input:focus,
.contact-textarea:focus {
  border: 1.5px solid #7b6ff2;
  outline: none;
  background: #fff;
  box-shadow: 0 2px 8px #7b6ff222;
}
.contact-btn {
  background: linear-gradient(125deg, #7b6ff2 0%, #5a4fcf 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 6px 20px rgba(123, 111, 242, 0.15);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.contact-btn::after {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff8, transparent);
  opacity: 0.5;
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.contact-btn:hover::after {
  left: 120%;
}
.contact-btn:hover {
  background: linear-gradient(125deg, #5a4fcf 0%, #7b6ff2 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(123, 111, 242, 0.18);
}
.contact-info-card {
  background: linear-gradient(135deg, #f6fafd 60%, #e9e6fa 100%);
  border: 2px solid #e9e6fa;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.contact-info-item i {
  color: #7b6ff2;
  font-size: 1.2rem;
}
.contact-info-socials {
  margin-top: 18px;
  display: flex;
  gap: 18px;
}
.contact-info-socials a {
  color: #7b6ff2;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}
.contact-info-socials a:hover {
  color: #5a4fcf;
  transform: scale(1.15) rotate(-6deg);
}
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .contact-form-card,
  .contact-info-card {
    max-width: 100%;
  }
  .contact-content::before {
    display: none;
  }
}
@media (max-width: 600px) {
  .contact-section-custom {
    padding: 24px 0;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 18px 8px;
    border-radius: 12px;
  }
  .contact-title {
    font-size: 2rem;
  }
}

/* --- Contact Page Map Styles --- */
.contact-map-container {
  margin: 36px auto 0 auto;
  max-width: 600px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #7b6ff222;
  padding: 18px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-map-container:hover {
  box-shadow: 0 12px 36px 0 #7b6ff244, 0 2px 8px #7b6ff222;
  transform: translateY(-2px) scale(1.02);
}
.contact-map-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #7b6ff2;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-align: center;
}
.contact-map-embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px #7b6ff211;
  animation: fadeInUp 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .contact-map-container {
    margin: 28px 0 0 0;
    max-width: 100%;
    padding: 12px 4px 8px 4px;
  }
  .contact-map-embed iframe {
    height: 180px !important;
  }
}
@media (max-width: 600px) {
  .contact-section-custom {
    padding: 12px 0 12px 0;
  }
  .contact-map-container {
    margin: 18px 0 0 0;
    padding: 8px 2px 4px 2px;
    border-radius: 10px;
  }
  .contact-map-title {
    font-size: 1rem;
  }
}

/* --- Compact Contact Page Styles --- */
.compact-contact-section {
  padding: 32px 0 16px 0 !important;
  min-height: unset !important;
}
.compact-contact-content {
  gap: 18px !important;
}
.compact-contact-card {
  padding: 18px 10px !important;
  min-width: 220px !important;
  max-width: 340px !important;
  border-radius: 12px !important;
}
.compact-contact-map {
  margin: 16px auto 0 auto !important;
  max-width: 400px !important;
  padding: 6px 4px 4px 4px !important;
  border-radius: 10px !important;
}
.compact-map-title {
  font-size: 1rem !important;
  margin-bottom: 4px !important;
}
.compact-map-embed {
  border-radius: 8px !important;
}
@media (max-width: 600px) {
  .compact-contact-section {
    padding: 6px 0 6px 0 !important;
  }
  .compact-contact-card {
    padding: 8px 2px !important;
    min-width: 140px !important;
    max-width: 100% !important;
  }
  .compact-contact-map {
    margin: 8px 0 0 0 !important;
    padding: 2px 1px 2px 1px !important;
  }
}

/* --- Professional Contact Page Styles --- */
.professional-contact-content {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  position: relative;
  margin-bottom: 32px;
}
.professional-contact-content::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 8%;
  height: 84%;
  width: 2px;
  background: linear-gradient(180deg, #e9e6fa 0%, #7b6ff2 50%, #e9e6fa 100%);
  opacity: 0.1;
  border-radius: 2px;
  transform: translateX(-50%);
  z-index: 0;
}
.professional-contact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.1);
  padding: 36px 28px;
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s, transform 0.3s;
}
.professional-contact-card:hover {
  box-shadow: 0 12px 36px 0 #7b6ff244, 0 2px 8px #7b6ff222;
  transform: translateY(-4px) scale(1.025);
}
.professional-contact-map {
  margin: 36px auto 0 auto;
  max-width: 600px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #7b6ff222;
  padding: 18px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.professional-contact-map:hover {
  box-shadow: 0 12px 36px 0 #7b6ff244, 0 2px 8px #7b6ff222;
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 1100px) {
  .professional-contact-content {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .professional-contact-content {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .professional-contact-content::before {
    display: none;
  }
  .professional-contact-card {
    max-width: 100%;
  }
  .professional-contact-map {
    margin: 28px 0 0 0;
    max-width: 100%;
    padding: 12px 4px 8px 4px;
  }
}
@media (max-width: 600px) {
  .professional-contact-card {
    padding: 12px 4px;
    border-radius: 10px;
  }
  .professional-contact-map {
    margin: 18px 0 0 0;
    padding: 8px 2px 4px 2px;
    border-radius: 10px;
  }
}

/* --- Modern Contact Page Styles --- */
.contact-section-modern {
  /* background: #f7f9fb url('https://www.transparenttextures.com/patterns/clouds.png'); */
  /* min-height: 100vh; */
  padding: 140px 0px 48px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.contact-modern-header {
  text-align: center;
  margin-bottom: 32px;
}
.contact-modern-icon {
  display: inline-block;
  background: #fff;
  color: #7b6ff2;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 18px 4px 12px;
  box-shadow: 0 2px 8px #7b6ff211;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.contact-modern-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #181c2a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-modern-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.contact-modern-content {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
}
.contact-modern-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
}
.contact-modern-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #7b6ff211;
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-modern-card:hover {
  box-shadow: 0 8px 32px #7b6ff222;
  transform: translateY(-2px) scale(1.02);
}
.contact-modern-card-icon {
  color: #7b6ff2;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.contact-modern-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222c36;
  margin-bottom: 2px;
}
.contact-modern-card-desc {
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.contact-modern-card-link {
  color: #7b6ff2;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  margin-top: 2px;
  transition: color 0.2s;
}
.contact-modern-card-link:hover {
  color: #5a4fcf;
}
.contact-modern-right {
  flex: 1 1 380px;
  min-width: 280px;
  max-width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px #7b6ff211;
  /* padding: 32px 28px 24px 28px; */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.contact-modern-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-modern-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #7b6ff2;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-modern-input,
.contact-modern-textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #f9f9ff;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}
.contact-modern-input:focus,
.contact-modern-textarea:focus {
  border: 1.5px solid #7b6ff2;
  outline: none;
  background: #fff;
  box-shadow: 0 2px 8px #7b6ff222;
}
.contact-modern-btn {
  background: linear-gradient(125deg, #181c2a 0%, #7b6ff2 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(123, 111, 242, 0.1);
  transition: all 0.2s;
  width: 100%;
}
.contact-modern-btn:hover {
  background: linear-gradient(125deg, #7b6ff2 0%, #181c2a 100%);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 30px rgba(123, 111, 242, 0.15);
}
@media (max-width: 900px) {
  .contact-modern-content {
    flex-direction: column;
    gap: 24px;
    max-width: 98vw;
  }
  .contact-modern-left,
  .contact-modern-right {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .contact-section-modern {
    padding: 138px 0 8px 0;
  }
  .contact-modern-header {
    margin-bottom: 18px;
  }
  .contact-modern-title {
    font-size: 1.5rem;
  }
  .contact-modern-right {
    padding: 14px 6px 10px 6px;
    border-radius: 8px;
  }
  .contact-modern-card {
    padding: 10px 6px 8px 6px;
    border-radius: 8px;
  }
}

/* --- Animated & Interactive Contact Page Styles --- */
.animated-contact-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f7f9fb 60%, #e9e6fa 100%)
    url("https://www.transparenttextures.com/patterns/clouds.png");
}
.animated-contact-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.animated-icon i.fa-bounce {
  animation: iconBounce 1.6s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes iconBounce {
  0% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-6px) scale(1.08);
  }
  100% {
    transform: translateY(0);
  }
}
.animated-card {
  transition: box-shadow 0.25s, transform 0.25s;
}
.animated-card:hover {
  box-shadow: 0 12px 36px #7b6ff244, 0 2px 8px #7b6ff222;
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.contact-modern-input:focus,
.contact-modern-textarea:focus {
  border: 1.5px solid #7b6ff2;
  outline: none;
  background: #fff;
  box-shadow: 0 2px 12px #7b6ff222;
  transition: box-shadow 0.2s, border 0.2s;
}
.contact-success-alert {
  margin-top: 12px;
  background: linear-gradient(90deg, #e9e6fa 0%, #7b6ff2 100%);
  color: #222c36;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 2px 8px #7b6ff211;
  font-size: 1rem;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Contact Map Section Styles --- */
.contact-map-section {
  /* background: linear-gradient(135deg, #f6fafd 0%, #e8f4fd 100%); */
  padding: 48px 0 32px 0;
  margin-top: 32px;
  border-radius: 24px 24px 0 0;
  /* box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04); */
}
.contact-map-header {
  text-align: center;
  margin-bottom: 32px;
}
.contact-map-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #222c36 0%, #7b6ff2 50%, #5a4fcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-map-desc {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.contact-map-container {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.15);
  transition: box-shadow 0.3s;
}
.contact-map-container:hover {
  box-shadow: 0 8px 32px rgba(123, 111, 242, 0.25);
}
.contact-map-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.contact-map-address,
.contact-map-hours {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(123, 111, 242, 0.1);
  width: 100%;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-map-address:hover,
.contact-map-hours:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(123, 111, 242, 0.15);
}
.contact-map-address h4,
.contact-map-hours h4 {
  color: #7b6ff2;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-map-address p,
.contact-map-hours p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .contact-map-section {
    padding: 32px 0 24px 0;
    margin-top: 24px;
  }
  .contact-map-title {
    font-size: 1.6rem;
  }
  .contact-map-info {
    gap: 24px;
  }
  .contact-map-address,
  .contact-map-hours {
    min-width: 240px;
    padding: 16px 20px;
  }
}
@media (max-width: 576px) {
  .contact-map-section {
    padding: 24px 0 16px 0;
  }
  .contact-map-title {
    font-size: 1.4rem;
  }
  .contact-map-container iframe {
    height: 300px !important;
  }
  .contact-map-info {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .contact-map-address,
  .contact-map-hours {
    width: 100%;
    max-width: 320px;
  }
}

/* Privacy Policy Page Styles */
.privacy-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.privacy-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.privacy-hero-icon {
  font-size: 4rem;
  color: white;
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.privacy-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.privacy-content-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.privacy-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.privacy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c4dff, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.privacy-card:hover::before {
  transform: scaleX(1);
}

.privacy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(123, 111, 242, 0.15);
}

.privacy-card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.privacy-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c4dff, #667eea);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
  transition: all 0.3s ease;
}

.privacy-card:hover .privacy-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.4);
}

.privacy-card-badge {
  background: linear-gradient(135deg, #7c4dff, #667eea);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-card-body {
  padding: 2rem;
}

.privacy-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.privacy-card-content {
  color: #636e72;
  line-height: 1.7;
}

.privacy-card-content p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.privacy-alert {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.privacy-alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #ffc107, #ff8f00);
}

.privacy-alert-warning {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  border-color: #fed7d7;
}

.privacy-alert-warning::before {
  background: linear-gradient(135deg, #e53e3e, #c53030);
}

.privacy-alert-info {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-color: #e6f3ff;
}

.privacy-alert-info::before {
  background: linear-gradient(135deg, #3182ce, #2c5aa0);
}

.privacy-alert-icon {
  font-size: 1.25rem;
  color: #ffc107;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.privacy-alert-warning .privacy-alert-icon {
  color: #e53e3e;
}

.privacy-alert-info .privacy-alert-icon {
  color: #3182ce;
}

.privacy-alert-content p {
  margin: 0;
  font-weight: 500;
  color: #2d3436;
}

.privacy-info-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.privacy-info-icon {
  font-size: 1.25rem;
  color: #6c757d;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.privacy-info-content h5 {
  margin: 0 0 0.5rem 0;
  color: #2d3436;
  font-weight: 600;
}

.privacy-info-content p {
  margin: 0;
  color: #636e72;
}

.privacy-features {
  margin: 2rem 0;
}

.privacy-features h4 {
  color: #2d3436;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.privacy-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.privacy-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.privacy-feature-item:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateX(5px);
}

.privacy-feature-item i {
  color: #7c4dff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.privacy-feature-item span {
  color: #2d3436;
  font-weight: 500;
}

.privacy-contact {
  background: linear-gradient(135deg, #7c4dff 0%, #667eea 100%);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.privacy-contact-content {
  position: relative;
  z-index: 1;
}

.privacy-contact-content h4 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.privacy-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #7c4dff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #6c3fff;
  text-decoration: none;
}

.privacy-contact-btn i {
  transition: transform 0.3s ease;
}

.privacy-contact-btn:hover i {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-hero-section {
    padding: 80px 0 60px;
  }

  .privacy-hero-title {
    font-size: 2.5rem;
  }

  .privacy-hero-subtitle {
    font-size: 1rem;
  }

  .privacy-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .privacy-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .privacy-card-title {
    font-size: 1.5rem;
  }

  .privacy-alert,
  .privacy-info-box {
    flex-direction: column;
    text-align: center;
  }

  .privacy-feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .privacy-hero-title {
    font-size: 2rem;
  }

  .privacy-card-body {
    padding: 1.5rem;
  }

  .privacy-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .privacy-contact {
    padding: 1.5rem;
  }

  .privacy-contact-content h4 {
    font-size: 1.25rem;
  }

  .privacy-contact-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Modern Blog Card Styles */
.blog-card-modern {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.1);
  overflow: visible;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  margin-bottom: 2rem;
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #7c4dff, #667eea, #764ba2) 1;
}
.blog-card-modern:hover {
  box-shadow: 0 16px 40px rgba(123, 111, 242, 0.18);
  transform: translateY(-6px) scale(1.025);
}
.blog-card-modern-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px 16px 0 0;
  overflow: visible;
  margin-top: -30px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 8px 32px rgba(124, 77, 255, 0.1);
}
.blog-card-modern-img {
  width: 90%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(123, 111, 242, 0.1);
  position: relative;
  z-index: 1;
  background: #fff;
  transition: transform 0.3s;
}
.blog-card-modern:hover .blog-card-modern-img {
  transform: scale(1.04) rotate(-1deg);
}
.blog-card-modern-category {
  position: absolute;
  top: 18px;
  left: 24px;
  background: linear-gradient(90deg, #7c4dff, #667eea);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(124, 77, 255, 0.1);
  z-index: 2;
  letter-spacing: 0.5px;
}
.blog-card-modern-avatar {
  position: absolute;
  bottom: -24px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(124, 77, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7c4dff;
  border: 3px solid #f8f9fa;
  z-index: 3;
  transition: background 0.3s, color 0.3s;
}
.blog-card-modern:hover .blog-card-modern-avatar {
  background: #7c4dff;
  color: #fff;
}
.blog-card-modern-body {
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  z-index: 2;
}
.blog-card-modern-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: #7c4dff;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.blog-card-modern-date i {
  margin-right: 0.3rem;
}
.blog-card-modern-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.blog-card-modern-desc {
  color: #636e72;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  min-height: 56px;
}
.blog-card-modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #7c4dff, #667eea);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(124, 77, 255, 0.1);
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.blog-card-modern-btn:hover {
  background: linear-gradient(90deg, #764ba2, #7c4dff);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .blog-card-modern-img-wrapper {
    height: 180px;
  }
  .blog-card-modern-img {
    height: 140px;
  }
}
@media (max-width: 767.98px) {
  .blog-card-modern-body {
    padding: 2rem 1rem 1.2rem 1rem;
  }
  .blog-card-modern-img-wrapper {
    height: 140px;
  }
  .blog-card-modern-img {
    height: 100px;
  }
  .blog-card-modern-avatar {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    right: 16px;
    bottom: -18px;
  }

  .hero-left {
    flex: 1 1 380px;
    min-width: 100% !important;
    padding: 0px 20px !important;
  }
}
@media (max-width: 575.98px) {
  .blog-card-modern-body {
    padding: 1.5rem 0.7rem 1rem 0.7rem;
  }
  .blog-card-modern-img-wrapper {
    height: 100px;
  }
  .blog-card-modern-img {
    height: 70px;
  }
}
