/* ===== BASE STYLES ===== */
:root {
  --primary: #ff7f50;
  --primary-dark: #ff4d4d;
  --text: #333;
  --text-light: #666;
  --bg: #f5f5f5;
  --z-modal: 1000;
  --z-nav: 100;
  --z-base: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: auto;
  position: relative;
  line-height: 1.6;
}

html, body {
  min-height: 100vh;
  background: transparent !important;
}

/* ===== BACKGROUND ===== */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg);
}

.background iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: var(--z-nav);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
  padding: 5px 10px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
  outline: none;
}

/* Highlight Home button in nav */
.nav-links a[href="index.html"],
.mobile-nav-links a[href="index.html"] {
  color: #ff4d4d !important;
  font-weight: 700;
  background: linear-gradient(90deg, #fff3ee 0%, #ffe5e0 100%);
  border-radius: 18px;
  padding: 5px 18px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a[href="index.html"]:hover,
.mobile-nav-links a[href="index.html"]:hover {
  background: linear-gradient(90deg, #ff7f50 0%, #ff4d4d 100%);
  color: #fff !important;
}

/* Remove special gradient effect from About button in main nav */
.nav-links a[href="about.html"] {
  color: var(--text) !important;
  font-weight: 400;
  background: none;
  border-radius: 0;
  padding: 5px 10px;
  box-shadow: none;
  transition: color 0.2s;
}

.nav-links a[href="about.html"]:hover {
  background: none;
  color: var(--primary);
}

/* About page nav Home and About buttons: match main site style */
.about-nav a[href="index.html"],
.about-nav a[href="about.html"] {
  color: #ff4d4d !important;
  font-weight: 700;
  background: linear-gradient(90deg, #fff3ee 0%, #ffe5e0 100%);
  border-radius: 18px;
  padding: 7px 22px;
  font-size: 1.1em;
  margin: 0 8px;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.08);
  border: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.about-nav a[href="index.html"]:hover,
.about-nav a[href="about.html"]:hover {
  background: linear-gradient(90deg, #ff7f50 0%, #ff4d4d 100%);
  color: #fff !important;
}

/* ===== HERO SECTION ===== */
.hero {
  background: transparent !important;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding-top: 60px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ff7f50;
  letter-spacing: 1px;
  text-shadow: 0 4px 24px rgba(255, 127, 80, 0.10);
  background: linear-gradient(90deg, #ff7f50 30%, #ff4d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.hero-content p {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 24px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(255, 127, 80, 0.08);
  text-align: center;
}

.btn.animate {
  background: linear-gradient(90deg, #ff7f50 0%, #ff4d4d 100%);
  color: #fff;
  font-size: 1.2rem;
  padding: 16px 36px;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(255, 127, 80, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  margin: 0 auto;
}

.btn.animate:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(255, 127, 80, 0.22);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 5%;
  background-color: var(--bg);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: linear-gradient(135deg, #fff 70%, #f7f7fa 100%) !important;
  border-radius: 16px;
  padding: 30px;
  border: 1.5px solid #f0e8e0;
  box-shadow: 0 4px 24px rgba(255, 127, 80, 0.07);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 77, 77, 0.2);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 48px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(120deg, #fff 80%, #ffe5e0 100%),
    repeating-linear-gradient(0deg, #f7d9d9 0px, #f7d9d9 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, #f7d9d9 0px, #f7d9d9 1px, transparent 1px, transparent 40px);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(255, 127, 80, 0.07);
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  width: 100%;
  margin-top: 24px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.08em;
  color: #ff4d4d;
  font-weight: 600;
  background: #fff3ee;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.05);
}

.contact-item img {
  width: 28px;
  height: 28px;
  margin-right: 14px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255, 127, 80, 0.07);
  /* padding: 28px 22px 22px 22px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1.5px solid #ffb3b3;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', Arial, sans-serif;
  resize: none;
  background: #fff3ee;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ff4d4d;
  outline: none;
}

.contact-form button {
  padding: 12px 32px;
  background-color: #ff4d4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.08);
  letter-spacing: 1px;
}

.contact-form button:hover {
  background-color: #ff7f50;
}

/* Contact Us Section Styles */
.contact-bg-animated {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
  animation: gradientMove 16s ease-in-out infinite alternate;
  opacity: 0.7;
  pointer-events: none;
}

@keyframes gradientMove {
  0% {
    background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
  }

  50% {
    background: linear-gradient(120deg, #fcb69f 0%, #ffecd2 100%);
  }

  100% {
    background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
  }
}

.contact-wrapper {
  width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background: linear-gradient(120deg, #fff 80%, #ffe5e0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 32px;
}

.contact-hero {
  background: linear-gradient(to right, #ff7f50, #ff4d4d);
  color: #fff !important;
  text-align: center;
  padding: 56px 20px 36px 20px;
  border-radius: 0 0 32px 32px;
  margin-bottom: 40px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(255, 127, 80, 0.10);
}

.contact-hero h2 {
  font-size: 2.7em;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff !important;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px #ffe5e0, 0 1px 0 #fff;
}

.contact-hero p {
  font-size: 1.25em;
  font-weight: 500;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #fff3ee 0%, #ffe5e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding: 0 8px;
}

.contact-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 48px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    linear-gradient(120deg, #fff 80%, #ffe5e0 100%),
    repeating-linear-gradient(0deg, #f7d9d9 0px, #f7d9d9 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, #f7d9d9 0px, #f7d9d9 1px, transparent 1px, transparent 40px);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(255, 127, 80, 0.07);
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  width: 100%;
  margin-top: 24px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.08em;
  color: #ff4d4d;
  font-weight: 600;
  background: #fff3ee;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.05);
}

.contact-item img {
  width: 28px;
  height: 28px;
  margin-right: 14px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255, 127, 80, 0.07);
  /* padding: 28px 22px 22px 22px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1.5px solid #ffb3b3;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', Arial, sans-serif;
  resize: none;
  background: #fff3ee;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ff4d4d;
  outline: none;
}

.contact-form button {
  padding: 12px 32px;
  background-color: #ff4d4d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.08);
  letter-spacing: 1px;
}

.contact-form button:hover {
  background-color: #ff7f50;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff7f50;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0 auto;
  background: linear-gradient(90deg, #ff7f50 0%, #ff4d4d 100%);
  border-radius: 2px;
}

/* ===== AUTH MODALS ===== */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal.show {
  opacity: 1;
  visibility: visible;
}

.auth-content {
  background: linear-gradient(135deg, #fff 70%, #f7f7fa 100%) !important;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  color: var(--text);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
  border: 1.5px solid #f0e8e0;
  box-shadow: 0 4px 24px rgba(255, 127, 80, 0.07);
  will-change: transform;
}

.auth-modal.show .auth-content {
  transform: translateY(0);
}

.auth-header {
  padding: 25px 25px 25px 65px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  position: relative;
}

.back-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.back-btn:hover,
.back-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
  outline: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover,
.close-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  outline: none;
}

.auth-header h2 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
}

.auth-header p {
  margin: 5px 0 0;
  opacity: 0.9;
  font-size: 14px;
}

.auth-body {
  padding: 25px;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text);
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 0;
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 12px;
  color: var(--primary);
}

.auth-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin: 10px 0;
}

.auth-btn.primary-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.auth-btn.primary-btn:hover,
.auth-btn.primary-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
  outline: none;
}

.auth-btn.google-btn {
  background: white;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ddd;
}

.auth-btn.google-btn:hover,
.auth-btn.google-btn:focus-visible {
  background: #f1f1f1;
  outline: none;
}

.auth-btn.google-btn img {
  width: 18px;
  height: 18px;
}

.role-switch {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.role-switch-btn {
  flex: 1;
  padding: 10px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.role-switch-btn:hover,
.role-switch-btn:focus-visible {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text);
  outline: none;
}

/* ===== USER PANEL ===== */
.user-slide-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  /* glass effect */
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: -8px 0 32px rgba(80, 80, 80, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s, box-shadow 0.3s, opacity 0.3s;
  will-change: transform, backdrop-filter, opacity;
  opacity: 0;
  animation: userPanelFadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.user-slide-panel.active {
  opacity: 1;
  animation: userPanelSlideIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.close-slide-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-slide-btn:hover,
.close-slide-btn:focus-visible {
  transform: rotate(90deg);
  outline: none;
}

.user-options {
  list-style: none;
  margin-top: 30px;
}

.user-options li {
  margin-bottom: 15px;
}

.user-options a {
  color: var(--text);
  text-decoration: none;
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.05);
  border-left: 3px solid transparent;
}

.user-options a:hover,
.user-options a:focus-visible {
  background: rgba(0, 0, 0, 0.1);
  border-left: 3px solid var(--primary);
  transform: translateX(5px);
  outline: none;
}

/* ===== UTILITY CLASSES ===== */
.auth-error {
  background: rgba(255, 99, 71, 0.1);
  color: #ff6347;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 3px solid #ff6347;
  animation: fadeIn 0.3s ease;
  font-size: 14px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: calc(var(--z-modal) + 1);
  animation: slideIn 0.5s forwards;
}

.toast-notification.error {
  background: #f44336;
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes aboutFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpScroll {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes userPanelFadeIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes userPanelSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100%) scale(0.98);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

@media only screen and (max-width: 1030px) {
  .hero-content {
    padding-top: 0px;
  }

  .card h2 {
    font-size: 1.25rem !important;
  }

  .images {
    display: block;
    justify-content: space-between;
    margin-top: 20px;
  }

  .footer_img {
    padding: 10px;
  }

  .icons {
    margin-top: 20px;

  }
}

@media (max-width: 992px) {

  .about-customer-section .video-background,
  .about-customer-section .video-background video {
    /* max-width: 100px !important; */
    width: 150px !important;
    height: 150px !important;
    /* min-width: 80px !important; */
    border-radius: 10px !important;
    /* display: inline-block !important; */
  }

  .contact-form {
    padding: 0px !important;
    /* padding: 28px 22px 22px 22px !important;  */
  }

  .why-card {
    margin-top: 30px !important;
  }

  .icons {
    display: flex;
    flex-direction: column !important;
    padding-top: 0px !important;
  }

  .footer_icons {
    padding-top: 20px;
  }

  .images {
    flex-direction: column;

  }

  .footer_img {
    padding-top: 5px;
  }

  .footer_btns{
    margin-top: 10px !important;
  }
}

@media only screen and (max-width: 430px) {
  .images {
    flex-direction: row;
  }

  .icons {
    flex-direction: row !important;
    text-align: center !important;
    display: block !important;
    padding: 0% !important;
  }

  .footer_icons {
    margin: 10px;
  }
}

.footer {
  background-color: #555;
  padding: 50px 30px;
  color: white;
}

.icons {
  padding: 40px;
  /* display: flex; */
  text-align: center;
}

.footer_icons {
  font-size: 2rem !important;
  margin-left: 20px;
}

.images {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.footer_img {
  width: 70px;
  margin: auto !important;
}


@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .user-slide-panel {
    width: 250px;
  }

  .auth-content {
    width: 95%;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .services-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
  }

  /* Responsive logo size */
  .logo {
    width: 48px;
    height: 48px;
  }

  /* Stack about-customer-section vertically */
  .about-customer-section {
    flex-direction: column !important;
    align-items: stretch;
    min-height: unset;
    padding: 0;
    max-width: 100vw;
    width: 100%;
  }

  .about-customer-box, .about-customer-section .video-background {
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 24px 12px;
  }

  .about-customer-section .video-background {
    margin: 0 0 24px 0;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 36px;
    height: 36px;
  }

  .about-customer-box, .about-customer-section .video-background {
    padding: 16px 4px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

/* Prevent horizontal scrolling on mobile */
body, html {
  overflow-x: hidden !important;
  max-width: 100vw;
}

/* Large Logo Variant */
.logo.large {
  width: 200px;
  height: 200px;
  margin-right: 20px;
  background: transparent;
}

.logo.large img {
  padding: 0;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .logo.large {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .logo.large {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .logo.large {
    width: 100px;
    height: 100px;
  }
}

/* Role Themes */
.technician-theme .auth-header,
.delivery-theme .auth-header,
.customer-theme .auth-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

/* Print Styles */
@media print {
  nav, .user-slide-panel, .auth-modal {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero, .services-section, .contact-section {
    padding: 20px !important;
    height: auto !important;
  }

  .btn, .auth-btn {
    display: none !important;
  }
}

.video-background {
  position: relative;
  width: 300px;
  max-width: 90vw;
  aspect-ratio: 1 / 1;
  margin: 40px auto;
  /* space above and below, centered */
  overflow: hidden;
  background: transparent;
  display: block;
}

.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(255, 127, 80, 0.10);
  border: none;
  background: transparent;
  object-fit: cover;
  pointer-events: none;
  /* Remove if you want controls */
  display: block;
}

/* About Customer Section Layout */
.about-customer-section {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 24px auto 0 auto;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  min-height: 40px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.6s, transform 0.6s, box-shadow 0.4s;
}

.about-customer-section.visible {
  opacity: 1;
  transform: translateY(0) scale(1.01);
  animation: fadeInUpScroll 1.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  box-shadow: 0 8px 32px rgba(255, 127, 80, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.04);
}

.about-customer-section.delay.visible {
  animation-delay: 0.5s;
}

.about-customer-box {
  flex: 1 1 0;
  padding: 2px 24px;
  min-width: 260px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent !important;
  box-shadow: none !important;
  border-left: none !important;
  animation: aboutFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s;
}

.about-customer-box:hover {
  box-shadow: 0 8px 32px rgba(255, 127, 80, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.04);
  background: linear-gradient(135deg, #fff 60%, #ffece6 100%);
}

.about-customer-box h2 {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: aboutFadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.about-customer-box p {
  font-size: 1.15em;
  /* Match the intro text size */
  color: #444;
  margin: 0;
  line-height: 1.7;
  /* Match line height for consistency */
  font-weight: 500;
  /* Match font weight */
  word-break: break-word;
  padding: 0 8px;
  text-align: center;
}

.about-customer-section .video-background {
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 350px;
  margin: 0 32px 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make About Our Customer Service video same size as carousel images */

.about-customer-section .video-background,
.about-customer-section .video-background video {
  width: 250px !important;
  height: 250px !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 auto !important;
  border-radius: 16px !important;
  /* box-shadow: 0 2px 12px rgba(255,127,80,0.10); */
  /* background: #f9f9f9; */
  object-fit: contain !important;
  /* display: block !important;   */
}



@media (max-width: 1100px) {
  .about-customer-section {
    margin: 24px 8px 0 8px;
    max-width: 100vw;
    width: 100%;
  }
}



.right-align-section {
  /* No longer needed, but kept for backward compatibility */
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: -10;
  pointer-events: none;
  background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
  overflow: hidden;
  animation: gradientMove 12s ease-in-out infinite alternate;
}

@keyframes gradientMove {
  0% {
    background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
    filter: blur(0px) brightness(1.05);
  }

  50% {
    background: linear-gradient(120deg, #fcb69f 0%, #ffecd2 100%);
    filter: blur(8px) brightness(1.12);
  }

  100% {
    background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
    filter: blur(0px) brightness(1.05);
  }
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-links {
  display: none;
  position: fixed;
  top: 60px;
  right: 20px;
  width: 80vw;
  max-width: 320px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  z-index: 1200;
  flex-direction: column;
  padding: 18px 0;
  list-style: none;
  animation: fadeIn 0.3s;
}

.mobile-nav-links li {
  margin: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 16px 24px;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.mobile-nav-links a:last-child {
  border-bottom: none;
}

.mobile-nav-links a:hover {
  background: #f7f7fa;
  color: var(--primary);
}

.mobile-nav-links.show {
  display: flex;
}

@media (max-width: 900px) {
  nav {
    padding: 10px 2vw;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    width: 48px;
    height: 48px;
  }

  .mobile-nav-links {
    top: 60px;
    right: 10px;
  }

  #user-account {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1101;
  }

  nav {
    flex-wrap: nowrap;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 36px;
    height: 36px;
  }

  .mobile-nav-links {
    width: 95vw;
    right: 2vw;
    top: 52px;
  }
}

.notification {
  position: fixed;
  top: 30px;
  right: 50px !important;
  background: #4CAF50;
  color: white;
  padding: 16px 18px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  z-index: 9999;
  opacity: 0;
  width: 50% !important;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-20px);
}

.notification.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.notification.error {
  background: #f44336;
}

#complaint-modal.auth-modal {
  align-items: stretch !important;
  justify-content: stretch !important;
}

#complaint-modal .auth-content {
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
}

#complaint-modal .auth-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 32px;
}

.timeline {
  border-left: 3px solid #ff7f50;
  margin-left: 20px;
  padding-left: 20px;
}

.timeline-item {
  margin-bottom: 20px;
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -28px;
  top: 0;
  width: 16px;
  height: 16px;
  background: #ff7f50;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #ff7f50;
}

.timeline-status {
  font-weight: bold;
  color: #ff7f50;
  font-size: 1.1em;
}

.timeline-meta {
  font-size: 0.95em;
  color: #555;
  margin-top: 2px;
}

#tracking-modal {
  display: none;
  align-items: center;
  justify-content: center;
}

#tracking-modal[style*="display: flex"] {
  display: flex !important;
}

#dashboardSection {
  overflow-x: auto;
}

table {
  min-width: 1200px;
  /* or whatever width fits your columns */
}

.admin-notification {
  position: fixed !important;
  top: 30px !important;
  right: 30px !important;
  z-index: 99999 !important;
  pointer-events: none;
}

.admin-notification.success {
  background: #4CAF50 !important;
}

.admin-notification.error {
  background: #f44336 !important;
}

.product-carousel-container {
  width: 100%;
  max-width: 600px;
  margin: 32px auto 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-carousel {
  display: flex;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: none !important;
  background: transparent !important;
  width: 100%;
  min-height: 180px;
  position: relative;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 140px;
  text-align: center;
}

.carousel-slide img {
  width: 150px !important;
  height: 150px !important;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(255, 127, 80, 0.10);
  background: #f9f9f9;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s;
}

.carousel-slide span {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem !important;
  color: #111 !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: none !important;
  text-align: center;
}

.product-carousel-row {
  width: 100%;
  max-width: 1200px;
  margin: 24px auto 24px auto;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
  padding: 28px 0;
  border: none !important;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 32px;
  animation: scroll-carousel 70s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  will-change: transform;
  padding: 0 24px;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 140px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s;
}

.carousel-slide img {
  width: 150px !important;
  height: 150px !important;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(255, 127, 80, 0.10);
  background: #f9f9f9;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s;
}

.carousel-slide:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(255, 127, 80, 0.18), 0 1.5px 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.carousel-slide span {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem !important;
  color: #111 !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: none !important;
  text-align: center;
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .product-carousel-row {
    max-width: 98vw;
    padding: 18px 0;
    border-radius: 16px;
    margin: 16px auto 16px auto;
  }

  .carousel-track {
    gap: 18px;
    padding: 0 8px;
  }

  .carousel-slide {
    width: 90px;
  }

  .carousel-slide img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 10px;
  }

  .carousel-slide span {
    font-size: 1rem !important;
  }
}

/* Make Our Top Products & Services (carousel) full width */

.product-carousel-container,
.product-carousel-row {
  max-width: 100vw !important;
  width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.product-carousel {
  max-width: 100vw !important;
  width: 100vw !important;
  min-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.carousel-track {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 900px) {

  .product-carousel-container,
  .product-carousel_row,
  .product-carousel {
    max-width: 100vw !important;
    width: 100vw !important;
    min-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Professional animated box style */
.pro-box {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 40px 32px 32px 32px;
  margin: 0px auto;
  max-width: 1050px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s;
}

.pro-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.pro-box h2 {
  text-align: center;
  color: #ff4d4d;
  font-size: 2.2em;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px #ffe5e0, 0 1px 0 #fff;
}

.pro-box p {
  font-size: 1.15em;
  /* Match the intro text size */
  color: #444;
  margin: 0;
  line-height: 1.7;
  /* Match line height for consistency */
  font-weight: 500;
  /* Match font weight */
  word-break: break-word;
  padding: 0 8px;
  text-align: center;
}

.pro-box ul {
  list-style: none;
  padding: 0;
  max-width: 820px;
  margin: 0 auto ;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  z-index: 1;
  position: relative;
  justify-content: center;
}

.pro-box li {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 18px 8px;
  text-align: center;
}

.pro-box li .icon {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #ff4d4d;
  display: block;
}

.pro-box li h4 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ff4d4d;
}

.pro-box li p {
  font-size: 1.15em;
  /* Match the intro text size */
  color: #444;
  margin: 0;
  line-height: 1.7;
  /* Match line height for consistency */
  font-weight: 500;
  /* Match font weight */
  word-break: break-word;
  padding: 0 8px;
  text-align: center;
}

@media (max-width: 900px) {
  .pro-box ul {
    gap: 14px;
  }

  .pro-box li {
    min-width: 120px;
    max-width: 180px;
    padding: 12px 2px;
  }

  .pro-box li .icon {
    font-size: 1.5em;
  }

  .pro-box li h4 {
    font-size: 0.95em;
  }

  .pro-box li p {
    font-size: 0.82em;
  }
}

@media (max-width: 600px) {
  .pro-box ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .pro-box li {
    width: 100%;
    max-width: 95vw;
    min-width: 0;
    padding: 10px 2px;
  }
}

/* About Section */
.about-wrapper,
.about-wrapper * {
  font-family: 'Poppins', Arial, sans-serif !important;
  color: #222;
  letter-spacing: 0.01em;
}

.about-hero {
  background: linear-gradient(to right, #ff7f50, #ff4d4d);
  color: #fff !important;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.about-hero h1 {
  font-size: 2.8em;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff4d4d !important;
  background: linear-gradient(90deg, #ff7f50 30%, #ff4d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 16px #ffe5e0, 0 1px 0 #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.about-hero p {
  color: #111 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  display: inline-block;
  padding: 0 8px;
  max-width: 700px;
  text-align: center;
  font-size: 1.18em;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-container h2 {
  color: #ff4d4d !important;
  font-size: 2em;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.about-container p,
.about-container li {
  font-size: 1.12em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #222;
}

.about-img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-vision ul li {
  color: #222 !important;
  font-weight: 500;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.step {
  background: #fff3ee;
  padding: 20px;
  border-left: 5px solid #ff7f50;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.05);
}

.about-cta {
  background: #fff3ee;
  border-radius: 10px;
  color: #ff4d4d !important;
  text-align: center;
  margin-top: 50px;
  padding: 30px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #ff7f50 0%, #ff4d4d 100%);
  color: #fff !important;
  font-weight: 600;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  margin-top: 15px;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #ff4d4d;
  color: #fff !important;
}

/* === About Page Animations & Cool Effects === */

/* Fade-in for main about wrapper */
.about-wrapper {
  animation: aboutFadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Animated gradient border for hero */
.about-hero {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(120deg, #ff7f50 0%, #ff4d4d 60%, #ffe5e0 100%);
  opacity: 0.18;
  animation: aboutHeroGlow 4s ease-in-out infinite alternate;
}

@keyframes aboutHeroGlow {
  0% {
    filter: blur(0px) brightness(1.05);
  }

  100% {
    filter: blur(8px) brightness(1.12);
  }
}

/* Section fade-in on scroll */
.about-container>div {
  opacity: 0;
  transform: translateY(40px);
  animation: aboutFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-delay: 0.2s;
}

.about-container>div:nth-child(2) {
  animation-delay: 0.4s;
}

.about-container>div:nth-child(3) {
  animation-delay: 0.6s;
}

.about-container>div:nth-child(4) {
  animation-delay: 0.8s;
}

.about-container>div:nth-child(5) {
  animation-delay: 1s;
}

.about-container>div:nth-child(6) {
  animation-delay: 1.2s;
}

@keyframes aboutFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate list items in about-vision */
.about-vision ul li {
  position: relative;
  opacity: 0;
  left: -30px;
  animation: aboutListIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.about-vision ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.about-vision ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.about-vision ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.about-vision ul li:nth-child(4) {
  animation-delay: 0.8s;
}

.about-vision ul li:nth-child(5) {
  animation-delay: 1s;
}

@keyframes aboutListIn {
  0% {
    opacity: 0;
    left: -30px;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/* Steps: subtle hover and pop-in */
.steps .step {
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  animation: aboutFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.steps .step:hover {
  box-shadow: 0 8px 32px rgba(255, 127, 80, 0.13), 0 2px 12px rgba(0, 0, 0, 0.07);
  background: #ffe5e0;
  transform: translateY(-6px) scale(1.03);
}

/* Animate the video in about-vision */
.about-vision video {
  opacity: 0;
  transform: scale(0.96) translateY(30px);
  animation: aboutVideoIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
}

@keyframes aboutVideoIn {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* CTA button pop effect */
.cta-button {
  animation: aboutFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) 1.4s both;
  box-shadow: 0 4px 18px rgba(255, 127, 80, 0.10);
  transition: transform 0.18s, box-shadow 0.18s;
}

.cta-button:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 127, 80, 0.18);
}

/* Responsive: fade-in for mobile too */
@media (max-width: 700px) {

  .about-container>div,
  .about-vision video,
  .cta-button {
    animation-duration: 0.7s !important;
  }
}

/* === Enhanced Creative Animations & Visuals for About Page === */

/* Animated gradient background for About page */
.about-bg-animated,
body.about-page {
  background: linear-gradient(135deg, #fff7f0 0%, #ffe5e0 50%, #ffecd2 100%);
  animation: aboutBgMove 18s ease-in-out infinite alternate;
  min-height: 100vh;
}

@keyframes aboutBgMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Hero: animated gradient text and floating icons */
.about-hero h1 {
  background: linear-gradient(90deg, #ff7f50 30%, #ff4d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aboutTextGlow 2.5s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

@keyframes aboutTextGlow {
  0% {
    text-shadow: 0 2px 16px #ffe5e0, 0 1px 0 #fff;
  }

  100% {
    text-shadow: 0 6px 32px #ff7f50, 0 2px 8px #ff4d4d;
  }
}

.about-hero::after {
  content: "✨";
  position: absolute;
  right: 32px;
  top: 24px;
  font-size: 2.5em;
  opacity: 0.18;
  animation: aboutIconFloat 3.5s ease-in-out infinite alternate;
}

@keyframes aboutIconFloat {
  0% {
    transform: translateY(0) rotate(-8deg);
  }

  100% {
    transform: translateY(-18px) rotate(8deg);
  }
}

/* Section cards with glassmorphism and floating effect */
.about-container>div {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 32px rgba(255, 127, 80, 0.10), 0 2px 12px rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  margin-bottom: 36px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #ffe5e0;
  backdrop-filter: blur(4px);
  animation: aboutFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
  transition: box-shadow 0.3s, transform 0.3s;
}

.about-container>div:hover {
  box-shadow: 0 16px 48px rgba(255, 127, 80, 0.18), 0 2px 12px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px) scale(1.01);
}

/* Animated accent bar on left */
.about-container>div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 7px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ff7f50 0%, #ff4d4d 100%);
  opacity: 0.13;
  z-index: 1;
}

/* Animate each section in sequence */
.about-container>div {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: aboutFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.about-container>div:nth-child(1) {
  animation-delay: 0.2s;
}

.about-container>div:nth-child(2) {
  animation-delay: 0.4s;
}

.about-container>div:nth-child(3) {
  animation-delay: 0.6s;
}

.about-container>div:nth-child(4) {
  animation-delay: 0.8s;
}

.about-container>div:nth-child(5) {
  animation-delay: 1s;
}

.about-container>div:nth-child(6) {
  animation-delay: 1.2s;
}

/* Animate list items in about-vision with stagger and icon pop */
.about-vision ul li {
  position: relative;
  opacity: 0;
  left: -30px;
  animation: aboutListIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px 16px 10px 0;
  font-size: 1.13em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-vision ul li::before {
  content: "★";
  color: #ff7f50;
  font-size: 1.2em;
  margin-right: 10px;
  opacity: 0.6;
  animation: aboutIconPop 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes aboutIconPop {
  0% {
    transform: scale(0.7) rotate(-20deg);
  }

  60% {
    transform: scale(1.2) rotate(10deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.about-vision ul li:nth-child(1) {
  animation-delay: 0.3s;
}

.about-vision ul li:nth-child(2) {
  animation-delay: 0.5s;
}

.about-vision ul li:nth-child(3) {
  animation-delay: 0.7s;
}

.about-vision ul li:nth-child(4) {
  animation-delay: 0.9s;
}

.about-vision ul li:nth-child(5) {
  animation-delay: 1.1s;
}

@keyframes aboutListIn {
  0% {
    opacity: 0;
    left: -30px;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/* Steps: pop-in and hover lift */
.steps .step {
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  animation: aboutFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
  background: #fff7f0;
  border-left: 5px solid #ff7f50;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255, 127, 80, 0.05);
  margin-bottom: 10px;
}

.steps .step:hover {
  box-shadow: 0 8px 32px rgba(255, 127, 80, 0.13), 0 2px 12px rgba(0, 0, 0, 0.07);
  background: #ffe5e0;
  transform: translateY(-6px) scale(1.03);
}

/* Animate the video in about-vision */
.about-vision video {
  opacity: 0;
  transform: scale(0.96) translateY(30px);
  animation: aboutVideoIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
  box-shadow: 0 8px 32px rgba(255, 127, 80, 0.10), 0 2px 12px rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  background: #fff7f0;
}

@keyframes aboutVideoIn {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* CTA button pop and pulse */
.cta-button {
  animation: aboutFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) 1.4s both, aboutPulse 2.5s infinite alternate;
  box-shadow: 0 4px 18px rgba(255, 127, 80, 0.10);
  transition: transform 0.18s, box-shadow 0.18s;
}

@keyframes aboutPulse {
  0% {
    box-shadow: 0 4px 18px rgba(255, 127, 80, 0.10);
  }

  100% {
    box-shadow: 0 8px 32px rgba(255, 127, 80, 0.18);
  }
}

.cta-button:hover {
  transform: scale(1.08) translateY(-2px) rotate(-2deg);
  box-shadow: 0 12px 36px rgba(255, 127, 80, 0.22);
}

/* Responsive: fade-in for mobile too */
@media (max-width: 700px) {

  .about-container>div,
  .about-vision video,
  .cta-button {
    animation-duration: 0.7s !important;
  }
}

/* Change only the font for the four about box paragraphs (under headings) */

.about-row-horizontal .about-customer-box-content p {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif !important;
  font-size: 1.13em;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #222;
}

.about-row-horizontal .about-customer-box-content p.justify-text {
  margin-bottom: 8px !important;
}

/* Add this to your CSS for horizontal alignment */

.about-row-horizontal {
  display: flex;
  /* gap: 32px; */
  max-width: 1200px;
  margin: 36px auto 0 auto;
  justify-content: center;
  align-items: stretch;
}

.about-row-horizontal>.about-customer-section {
  flex-direction: column;
  align-items: stretch;
  position: relative;
  padding: 0;
}

.about-row-horizontal .about-customer-box {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 0 0 0;
  margin: 0;
}

.about-row-horizontal .card h2 {
  width: 100%;
  color: #ff4d4d !important;
  font-size: 1.45em;
  font-weight: 800;
  margin-bottom: 24px;
  margin-top: 0;
  text-align: center;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff3ee 0%, #ffe5e0 100%);
  border-radius: 10px;
  padding: 14px 0 12px 0;
  box-shadow: 0 2px 12px rgba(255, 77, 77, 0.06);
  display: block;
  position: relative;
  z-index: 2;
}

.card {
  width: 95%;
  border: none !important;
  margin: auto;
}

.row {
  padding: 0%;
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Keep the paragraph and video side by side as before */
.about-row-horizontal .about-customer-box-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 0;
}

.about-row-horizontal .about-customer-box-content p {
  flex: 1 1 0;
  color: #222;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 18px 0 0;
  text-align: left;
  display: block;
}

.about-row-horizontal .about-customer-box-content .video-background {
  flex: 0 0 150px;
  max-width: 250px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  margin: 0;
}

@media (max-width: 900px) {
  .about-row-horizontal .about-customer-box-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .about-row-horizontal .about-customer-box-content p {
    margin: 0 0 12px 0;
    text-align: center;
  }

  .about-row-horizontal .about-customer-box-content .video-background {
    height: 150px;
    max-width: 100vw;
    margin: 0 auto 12px auto;
    justify-content: center;
  }

  .about-row-horizontal .about-customer-box h2 {
    font-size: 1.15em;
    padding: 10px 0 8px 0;
    margin-bottom: 16px;
  }
}

/* ===== SERVICES HERO SECTION ===== */
.services-hero {
  background: #fff !important;
  color: #222 !important;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.services-hero h1 {
  font-size: 2.8em;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff4d4d !important;
  background: linear-gradient(90deg, #ff7f50 30%, #ff4d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 16px #ffe5e0, 0 1px 0 #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.services-hero p {
  color: #111 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  display: inline-block;
  padding: 0 8px;
  max-width: 700px;
  text-align: center;
  font-size: 1.18em;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .services-hero {
    padding: 40px 8px 28px 8px;
    max-width: 98vw;
    border-radius: 14px;
  }

  .services-hero h1 {
    font-size: 2em;
  }

  .services-hero p {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  .services-hero {
    padding: 24px 2vw 16px 2vw;
    border-radius: 8px;
  }

  .services-hero h1 {
    font-size: 1.3em;
  }

  .services-hero p {
    font-size: 0.95em;
    padding: 0 2px;
  }
}

/* Make the whole background white */
body, html {
  background: #fff !important;
  color: #222;
}

/* Remove any animated or gradient backgrounds */
.animated-bg,
.background,
.services-bg-animated {
  background: #fff !important;
  animation: none !important;
}

/* Make hero and all sections white */
.hero,
.services-section,
.about-hero,
.contact-section,
.pro-box,
.about-container>div,
.service-card,
.contact-form {
  background: #fff !important;
  box-shadow: none !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.services-full-hero {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #fff 80%, #ffe5e0 100%);
  padding: 64px 0 48px 0;
  box-shadow: 0 10px 40px rgba(255, 77, 77, 0.07), 0 2px 12px rgba(0, 0, 0, 0.04);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.services-full-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.services-full-hero h2 {
  font-size: 2.8em;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff4d4d;
  background: linear-gradient(90deg, #ff7f50 30%, #ff4d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 16px #ffe5e0, 0 1px 0 #fff;
  margin-bottom: 24px;
}

.services-full-hero p {
  color: #222;
  font-size: 1.18em;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-content {
  display: flex;
  flex-wrap: wrap;
  /* gap: 24px; */
  justify-content: center;
  /* align-items: stretch; */

}

.why-card {
  flex: 1 1 200px;
  max-width: 220px;
  min-width: 180px;
  background: #fff3ee;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(255, 127, 80, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 18px 10px;
  text-align: center;
}

.why-card img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.why-card h3 {
  color: #ff4d4d;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 0;
}

.why-card p {
  color: #444;
  font-size: 0.85em;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 900px) {
  .why-card {
    max-width: 48vw;
    min-width: 140px;
    padding: 12px 4px;
  }

  .why-card img {
    width: 22px;
    height: 22px;
  }

  .why-card h3 {
    font-size: 0.92em;
  }

  .why-card p {
    font-size: 0.78em;
  }
}

@media (max-width: 600px) {
  .why-choose-content {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .why-card {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
    padding: 10px 2px;
  }
}

.signup-btn, .login-btn {
  background: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 6px 18px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.signup-btn:hover, .login-btn:hover {
  background: #e63b3b;
}




.auth-modal {
  visibility: hidden;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.auth-modal.show {
  visibility: visible;
  opacity: 1;
  display: flex;
}
