/* ============================= contactus (start) ============================= */

/* Root Variables */
:root {
  --primary: #291653;
  --secondary: #a59cdc;
  --accent: #e6f0fa;
  --light: #ffffff;
  --dark: #1a1a1a;
  --highlight: #f4a261;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.contact-page {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

/* Hero Section */
.contact-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1920&q=80")
    no-repeat center center/cover;
  margin-bottom: 40px;
}

.contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contact-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(18, 148, 218, 85%);
  color: white;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 1080px;
  margin: 0 auto;
}

/* Contact Main Section */
.contact-main {
  padding: 50px 20px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Messages */
.message-card {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.message-card.success {
  background: #e6ffed;
  color: #2e7d32;
}

.message-card.error {
  background: #ffe6e6;
  color: #d32f2f;
}

.message-card i {
  font-size: 1.5rem;
  margin-right: 15px;
}

.message-card p {
  margin: 0;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info Card */
.contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-info-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #5a3f98;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.8rem;
  color: #7b68ee;
  margin-right: 15px;
  margin-top: 5px;
}

.info-text h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.info-text p {
  font-size: 1rem;
  color: #666;
}

/* Contact Form Card */
.contact-form-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-form-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #5a3f98;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #7b68ee;
  box-shadow: 0 0 8px rgba(123, 104, 238, 0.2);
}

.form-control::placeholder {
  color: #aaa;
}

.form-control[type="text"],
.form-control[type="email"] {
  height: 45px;
}

.form-control[type="textarea"],
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.btn {
  display: block;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #5a3f98, #7b68ee);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.btn:hover {
  background: linear-gradient(135deg, #7b68ee, #5a3f98);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    max-width: 100%;
    /* padding: 10px 15px;
        font-size: 0.9rem; */
  }
}

@media (max-width: 576px) {
  .contact-hero {
    height: 300px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 12px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 20px;
  }

  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 15px;
    font-size: 0.85rem;
    /* Further adjust font size for very small screens */
  }

  .form-control {
    font-size: 0.9rem;
    /* Adjust input font size for mobile */
    padding: 10px 12px;
    /* Adjust padding for mobile */
  }

  .form-control[type="text"],
  .form-control[type="email"] {
    height: 40px;
    /* Slightly smaller inputs for mobile */
  }

  .form-control[type="textarea"],
  textarea.form-control {
    min-height: 100px;
    /* Slightly smaller textarea for mobile */
  }
}

/* ============================= contactus (end) ============================= */

/* ============================= custome-quote (start) ============================= */

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f7f9fc 0%, #e6e6fa 100%);
  min-height: 100vh;
  padding-top: 100px;
  color: var(--dark);
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
}

.navbar-logo span {
  color: var(--highlight);
}

.navbar-menu {
  display: flex;
  gap: 1.5rem;
}

.navbar-menu a {
  color: var(--light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: var(--highlight);
}

/* Main container */
.main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 25px;
}

.canvas-and-image-controls,
.controls {
  flex: 1;
  min-width: 300px;
}

.canvas-and-image-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.canvas-container {
  background: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(90, 63, 152, 0.1);
}

.canvas-container:hover {
  transform: translateY(-4px);
}

#quoteCanvas {
  width: 100%;
  height: auto;
  display: block;
}

.download-btn-container {
  padding: 16px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 12px;
}

#downloadBtn,
#shareBtn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 63, 152, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

#downloadBtn:hover,
#shareBtn:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(90, 63, 152, 0.3);
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.control-group h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  text-align: left;
}

.control-group {
  background: var(--light);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(90, 63, 152, 0.1);
}

/* .control-group {
  width: 100%;
  max-width: 360px; 
  margin: auto;
  padding: 15px;
  box-sizing: border-box;
} */

.control-group:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.input-group,
.slider-group,
.font-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

textarea,
input[type="text"],
input[type="file"],
select {
  flex: 1;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f9fafb;
  font-family: "Poppins", sans-serif;
}

textarea:focus,
input[type="text"]:focus,
input[type="file"]:focus,
select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(90, 63, 152, 0.1);
}

.btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 63, 152, 0.2);
  font-family: "Poppins", sans-serif;
}

.btn:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(90, 63, 152, 0.3);
}

.color-options,
.image-options,
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-option,
.image-option,
.size-option,
.gradient-option {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.color-option:hover,
.image-option:hover,
.size-option:hover,
.gradient-option:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.color-option.selected,
.image-option.selected,
.size-option.selected,
.gradient-option.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90, 63, 152, 0.3);
}

.image-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.image-options.show-all .additional-image {
  display: block;
}

.additional-image {
  display: none;
}

.see-all-btn {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.see-all-btn button {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  transition: color 0.3s ease;
}

.see-all-btn button:hover {
  color: var(--secondary);
}

.size-option {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  font-size: 14px;
  text-align: center;
  padding: 42px;
  font-weight: 500;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
}

.slider-group label,
.font-group label {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.slider-group input[type="range"] {
  flex: 1;
  accent-color: var(--primary);
}

.custom-color-group {
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.custom-gradient-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.custom-gradient-group select,
.custom-gradient-group input[type="color"] {
  width: 100%;
  height: 40px;
  border-radius: 6px;
}

.gradient-preview {
  margin-top: 15px;
  width: 100%;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.gradient-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#customGradientPreview {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.text-style-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.text-style-btn {
  padding: 8px;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.text-style-btn.active {
  background: var(--primary);
  color: var(--light);
  border-color: var(--primary);
}

#applyCustomColor,
#applyNameCustomColor,
#applyBgCustomColor,
#applyBgImage {
  display: none !important;
}

@media (max-width: 768px) {
  #applyCustomColor,
  #applyNameCustomColor,
  #applyBgCustomColor,
  #applyBgImage {
    display: none !important;
  }
}

/* Scroll Progress Circle */
.scroll-progress {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
}

.scroll-progress svg {
  transform: rotate(-90deg);
}

.scroll-progress circle {
  fill: transparent;
  stroke: rgba(90, 63, 152, 0.2);
  stroke-width: 3;
}

.scroll-progress circle.progress {
  stroke: #7864a3;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.2s;
}

.scroll-progress::after {
  content: "↑";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #7864a3;
}

/* Desktop view */
@media (min-width: 769px) {
  .main-container {
    flex-wrap: nowrap;
  }

  .canvas-and-image-controls,
  .controls {
    flex: 1;
    max-width: 50%;
  }

  .canvas-container {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}

/* Tablet and mobile view */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  .main-container {
    flex-direction: column;
    gap: 20px;
    margin: 0;
  }

  .canvas-and-image-controls,
  .controls {
    max-width: 100%;
  }

  .control-group {
    padding: 16px;
  }

  .input-group,
  .slider-group,
  .font-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding: 12px;
  }

  .download-btn-container {
    padding: 12px;
    flex-direction: column;
  }

  #downloadBtn,
  #shareBtn {
    width: 100%;
    justify-content: center;
  }
}

/* Small mobile view */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 13px;
  }

  .color-option,
  .image-option,
  .size-option,
  .gradient-option {
    width: 50px;
    height: 50px;
  }

  #customGradientPreview {
    width: 100%;
    /* full width like button */
    height: 60px;
    /* keep a good height */
  }

  .image-options {
    gap: 10px;
  }

  #downloadBtn,
  #shareBtn {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* Public Collection Section */

.public-collection-section {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    #f3f0ff,
    #e2e0ff
  ); /* soft gradient background */
}

.public-collection-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(90, 63, 152, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.public-collection-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(90, 63, 152, 0.2);
}

.public-collection-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #5a3f98;
  margin-bottom: 0px;
  font-family: "PT Sans", sans-serif;
}

.public-collection-container p {
  font-size: 1.05rem;
  color: #4a4a4a;
  max-width: 650px;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.public-collection-container .btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, rgb(41, 22, 83), rgb(165, 156, 220));
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.public-collection-container .btn:hover {
  background: linear-gradient(135deg, rgb(41, 22, 83), rgb(165, 156, 220));
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .public-collection-section {
    padding: 3rem 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .public-collection-container {
    padding: 2.5rem 1.5rem;
  }

  .public-collection-container h2 {
    font-size: 1.7rem;
  }

  .public-collection-container p {
    font-size: 1rem;
  }

  .public-collection-container .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .public-collection-section {
    padding: 2rem 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .public-collection-container h2 {
    font-size: 1.5rem;
  }

  .public-collection-container p {
    font-size: 0.95rem;
  }
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 15px 25px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #666;
}

/* Variables (for reference, assuming they are defined in your existing CSS) */
:root {
  --primary: #5a3f98;
  --secondary: #7b68ee;
  --light: #ffffff;
  --dark: #1a1a1a;
  --border-radius: 12px;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* How It Works Section (Updated for new content) */
.how-it-works-section {
  background: linear-gradient(135deg, #ffffff 0%, #e6f0fa 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
}

/* Container for the entire section */
.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  /* Changed to left for better readability of longer text */
}

/* Main title styling */
.how-it-works-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
  font-family: "PT Sans", sans-serif;
  position: relative;
}

.how-it-works-container h1::after {
  content: "";
  display: block;
  width: 150px;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 1rem auto;
  border-radius: 3px;
}

/* Subsection headings (h2) */
.how-it-works-container h2 {
  font-size: 2.2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.how-it-works-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Paragraphs and text */
.how-it-works-container p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
  /* margin: 20px 55px; */
}

/* Lists */
.how-it-works-container ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.how-it-works-container ul li {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
  position: relative;
  font-family: "Poppins", sans-serif;
}

/* Card styling for each subsection */
.how-it-works-container>div,
/* For Welcome, Why Stands Out, etc. */
.how-it-works-container>article {
  /* For steps */
  background: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(90, 63, 152, 0.1);
}

.how-it-works-container > div:hover,
.how-it-works-container > article:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(90, 63, 152, 0.15);
}

/* Steps container (grid for steps) */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.welcome-custom-quote {
  background: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--step-index));
}

.welcome-custom-quote {
  background: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--step-index));
}

/* Creative & Modern Design for Why Our Custom Quote Maker */
.why-our-custom {
  position: relative;
  background: #fff;
  padding: 4rem 2rem;
  max-width: 950px;
  margin: 3rem auto;
  border-radius: 25px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Decorative abstract shapes */
.why-our-custom::before,
.why-our-custom::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.why-our-custom::before {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #b5b3bf, #f7f7f7);
  top: -40px;
  left: -40px;
  opacity: 0.3;
}

.why-our-custom::after {
  width: 180px;
  height: 180px;
  background: linear-gradient(45deg, #b5b3bf, #f7f7f7);
  bottom: -50px;
  right: -50px;
  opacity: 0.2;
}

.why-our-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.why-our-custom h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5a3f98;
  font-family: "PT Sans", sans-serif;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Highlight certain words */
.why-our-custom h2 span {
  color: #ff6b6b;
}

.why-our-custom p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

/* Optional subtle underline under heading */
.why-our-custom h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #6a4bff;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-our-custom {
    padding: 3rem 1.5rem;
  }

  .why-our-custom h2 {
    font-size: 1.8rem;
  }

  .why-our-custom p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .why-our-custom {
    padding: 2.5rem 1rem;
  }

  .why-our-custom h2 {
    font-size: 1.5rem;
  }

  .why-our-custom p {
    font-size: 0.95rem;
  }
}

/* Extra Tips Section – Editorial / Premium Style */
.extra-tips {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 3.5rem 2.5rem;
  border-radius: 18px;
  max-width: 950px;
  margin: 3rem auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #6a4bff;
}

/* Heading */
.extra-tips h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.extra-tips h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* List reset */
.extra-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tips-counter;
}

/* Individual tip */
.extra-tips ul li {
  counter-increment: tips-counter;
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 3.8rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a4a4a;
  background: #fafafe;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Number badge */
.extra-tips ul li::before {
  content: counter(tips-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #6a4bff;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Hover effect */
.extra-tips ul li:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(90, 63, 152, 0.15);
  background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .extra-tips {
    padding: 2.5rem 1.5rem;
  }

  .extra-tips h2 {
    font-size: 1.7rem;
  }

  .extra-tips ul li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .extra-tips h2 {
    font-size: 1.5rem;
  }

  .extra-tips ul li {
    padding-left: 3.4rem;
    font-size: 0.95rem;
  }
}

/* Why People Love Section – Trust & Feature Style */
.why-people {
  background: linear-gradient(135deg, #f7f8ff, #eef1ff);
  padding: 3.5rem 2.5rem;
  border-radius: 22px;
  max-width: 950px;
  margin: 3rem auto;
  position: relative;
  box-shadow: 0 12px 30px rgba(90, 63, 152, 0.12);
  overflow: hidden;
}

/* Decorative soft shape */
.why-people::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: rgba(106, 75, 255, 0.12);
  border-radius: 50%;
}

/* Heading */
.why-people h2 {
  font-size: 2.1rem;
  font-weight: 700;
  font-family: "PT Sans", sans-serif;
  color: #3a2d7d;
  margin-bottom: 1rem;
}

/* Intro & outro text */
.why-people p {
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Feature list */
.why-people ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

/* Individual feature */
.why-people ul li {
  background: #ffffff;
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #333;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.why-people ul li:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(90, 63, 152, 0.18);
}

/* Responsive */
@media (max-width: 768px) {
  .why-people {
    padding: 2.5rem 1.5rem;
  }

  .why-people h2 {
    font-size: 1.8rem;
  }

  .why-people p,
  .why-people ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .why-people h2 {
    font-size: 1.6rem;
  }

  .why-people ul {
    grid-template-columns: 1fr;
  }
}

/* Inspiration Section – Community & Emotion Design */
.inspiration {
  position: relative;
  background: linear-gradient(135deg, #fff7f3, #f1f4ff);
  padding: 4rem 2.5rem;
  border-radius: 26px;
  max-width: 950px;
  margin: 4rem auto;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* Soft glowing background */
.inspiration::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(106, 75, 255, 0.25),
    transparent 70%
  );
}

.inspiration::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(106, 75, 255, 0.25),
    transparent 70%
  );
}

/* Heading */
.inspiration h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.inspiration h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Paragraphs */
.inspiration p {
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  color: #4a4a4a;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 1.4rem;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .inspiration {
    padding: 3rem 1.5rem;
  }

  .inspiration h2 {
    font-size: 1.9rem;
  }

  .inspiration p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .inspiration {
    padding: 2.5rem 1.2rem;
  }

  .inspiration h2 {
    font-size: 1.6rem;
  }

  .inspiration p {
    font-size: 0.95rem;
  }
}

.ready-start {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f4f7fb);
  padding: 2.5rem 3rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--step-index));
}

/* Decorative gradient strip */
.ready-start::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #6a5cff, #9b92f4);
}

/* Hover effect */
.ready-start:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Heading */
.ready-start h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.ready-start h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Intro text */
.ready-start p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* List styling */
.ready-start ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ready-start ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #333;
}

/* Custom check icon */
.ready-start ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6a5cff;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Final paragraph emphasis */
.ready-start p:last-of-type {
  margin-top: 1.5rem;
  font-weight: 500;
  color: #333;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .ready-start {
    padding: 2rem;
  }

  .ready-start h2 {
    font-size: 1.6rem;
  }
}

/* Create Your Way Section */
.create-your-way-section {
  margin: 4rem auto;
  padding: 0 1rem;
  max-width: 1240px;
  margin-top: 10px;
}

/* Main container */
.create-your-way-container {
  background: #ffffff;
  padding: 3.5rem 3rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 25px;
}

/* Subtle diagonal glow */
.create-your-way-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(99, 102, 241, 0.06),
    rgba(34, 211, 238, 0.04),
    transparent 60%
  );
  pointer-events: none;
}

/* Heading */
.create-your-way-container h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.create-your-way-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Content text */
.create-your-way-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
  max-width: 920px;
  margin: 0 auto;
}

/* Paragraphs styled as soft blocks */
.create-your-way-content p {
  margin-bottom: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover polish */
.create-your-way-content p:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* Emphasis text */
.create-your-way-content strong {
  color: #6366f1;
  font-weight: 600;
}

/* Tagline highlight */
.create-your-way-content .tagline-text {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  padding: 2rem 1.8rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(34, 211, 238, 0.12)
  );
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .create-your-way-container {
    padding: 2.5rem 2rem;
  }

  .create-your-way-container h2 {
    font-size: 2rem;
  }

  .create-your-way-content {
    font-size: 1rem;
  }

  .create-your-way-content .tagline-text {
    font-size: 1.1rem;
    padding: 1.6rem;
  }
}

@media (max-width: 480px) {
  .create-your-way-container {
    padding: 2rem 1.5rem;
  }

  .create-your-way-container h2 {
    font-size: 1.6rem;
  }

  .create-your-way-container h2::after {
    width: 70px;
  }

  .create-your-way-content p {
    padding: 1rem 1.1rem;
  }

  .create-your-way-content .tagline-text {
    font-size: 1rem;
  }
}
/* Individual step card */
.step {
  background: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--step-index));
  border: 1px solid rgba(90, 63, 152, 0.1);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(90, 63, 152, 0.2);
}

/* Step icon */
.step-icon {
  font-size: 2rem;
  color: var(--light);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(90, 63, 152, 0.3);
  transition: transform 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.1);
}

/* Step heading */
.step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: "PT Sans", sans-serif;
}

/* Step paragraph */
.step p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .how-it-works-container h1 {
    font-size: 2.2rem;
  }

  .how-it-works-container h2 {
    font-size: 1.6rem;
  }

  .how-it-works-container p,
  .how-it-works-container ul li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 3rem 1.5rem;
  }

  .how-it-works-container h1 {
    font-size: 1.8rem;
  }

  .how-it-works-container h2 {
    font-size: 1.4rem;
  }

  .how-it-works-container p,
  .how-it-works-container ul li {
    font-size: 0.95rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 1.5rem;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .how-it-works-section {
    padding: 2rem 1rem;
  }

  .how-it-works-container h1 {
    font-size: 1.5rem;
  }

  .how-it-works-container h2 {
    font-size: 1.2rem;
  }

  .how-it-works-container p,
  .how-it-works-container ul li {
    font-size: 0.9rem;
  }

  .step h3 {
    font-size: 1.3rem;
  }

  .step p {
    font-size: 0.85rem;
  }

  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
}

.custom-tooltip {
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  max-width: 300px;
}

.custom-tooltip .introjs-tooltip-header {
  background: linear-gradient(135deg, #5a3f98, #7b68ee);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px 8px 0 0;
}

.custom-tooltip .introjs-tooltipbuttons {
  border-top: 1px solid #7b68ee;
  padding-top: 0.5rem;
  text-align: right;
}

.custom-tooltip .introjs-button {
  background: linear-gradient(135deg, #5a3f98, #7b68ee);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.custom-tooltip .introjs-button:hover {
  background: linear-gradient(135deg, #7b68ee, #5a3f98);
  transform: translateY(-1px);
}

.introjs-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.introjs-tooltip-reference-layer {
  z-index: 1001 !important;
}

/* Fix for medium-small screens (769px – 925px) */
@media (min-width: 769px) and (max-width: 925px) {
  .main-container {
    flex-direction: column;
    /* stack items */
    gap: 20px;
  }

  .canvas-and-image-controls,
  .controls {
    max-width: 100%;
  }

  .canvas-container {
    position: relative;
    /* disable sticky */
    top: auto;
  }
}

/* Proper responsive for 360px and below */
@media (max-width: 360px) {
  .gradient-group {
    /* flex-direction: column; */
    width: 200px;
    /* align-items: flex-start; */
    gap: 8px;
  }

  .gradient-group input[type="color"] {
    width: 100%;
    max-width: 100%;
  }

  #customGradientPreview {
    width: 100% !important;
    height: 50px !important;
    /* responsive size */
  }
}

@media (max-width: 360px) {
  .btn,
  #downloadBtn,
  #shareBtn {
    padding: 12px 7px !important;
    font-size: 12px !important;
    width: 100%;
  }
}

#main-title {
  color: #6147aa;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

#main-heading-title {
  color: #6147aa;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

@media (max-width: 768px) {
  #main-heading-title {
    font-size: 32px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  #main-heading-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

/* Quote Creative Section */
.quote-creative-section {
  padding: 4.5rem 1rem;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Container */
.quote-creative-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Soft background glow */
.quote-creative-container::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

/* Heading */
.quote-creative-container h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.quote-creative-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Section subheadings */
.quote-creative-container h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin: 3rem 0 1.2rem;
  position: relative;
  padding-left: 1rem;
}

/* Accent bar for h3 */
.quote-creative-container h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, #6366f1, #d2d2de);
  border-radius: 4px;
}

/* Paragraphs */
.quote-creative-container p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 1.6rem;
}

/* Keyword emphasis */
.quote-creative-container strong {
  color: #6366f1;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-creative-container {
    padding: 2.8rem 2rem;
  }

  .quote-creative-container h2 {
    font-size: 2.1rem;
  }

  .quote-creative-container h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .quote-creative-container {
    padding: 2.2rem 1.5rem;
  }

  .quote-creative-container h2 {
    font-size: 1.7rem;
  }

  .quote-creative-container p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* Section */
.visual-stories-alt {
  padding: 5.5rem 1rem;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Wrapper */
.visual-stories-alt-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Heading */
.visual-stories-alt-text h2 {
  font-size: 35px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.visual-stories-alt-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}


.visual-stories-alt-text p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #334155;
  margin-bottom: 1.4rem;
}

.visual-stories-alt-text strong {
  color: #6366f1;
  font-weight: 600;
}

/* CTA block */
.visual-stories-alt-cta {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.16),
    rgba(34, 211, 238, 0.16)
  );
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Right cards */
.visual-stories-alt-cards {
  display: grid;
  gap: 1.8rem;
}

.vs-card {
  padding: 2rem 2.2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vs-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.8rem;
}

.vs-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}

/* Hover */
.vs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.09);
}

/* Responsive */
@media (max-width: 900px) {
  .visual-stories-alt-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visual-stories-alt-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .visual-stories-alt-text h2 {
    font-size: 1.8rem;
  }

  .visual-stories-alt-text p {
    font-size: 0.95rem;
  }

  .visual-stories-alt-cta {
    font-size: 1.1rem;
    padding: 1.4rem;
  }
}

/* ============================= custome-quote (end) ============================= */

/* ============================= footer (start) ============================= */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Footer Styles - Black Theme */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0 20px;
  border-top: 1px solid #333333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #cccccc;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.footer-about a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.footer-about a:hover {
  color: #a59cdc;
  text-decoration: underline;
}

.footer-links a {
  display: block;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.footer-links a:hover {
  color: #a59cdc;
}

.footer-social-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social-icons a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-social-icons a:hover {
  color: #a59cdc;
  transform: translateY(-3px);
  background-color: rgba(255, 107, 107, 0.2);
}

.footer-email {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.footer-email:hover {
  color: #a59cdc;
}

.footer-copyright {
  text-align: center;
  width: 100%;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333333;
  color: #999999;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ============================= footer (end) ============================= */

/* ============================= navbar (start) ============================= */

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
}

.main-header {
  background: var(--light);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 2px solid var(--highlight);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(90, 63, 152, 0.3);
}

.logo-text {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
}

.logo-text span {
  color: var(--primary);
  position: relative;
}

.logo-text span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--highlight);
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(90, 63, 152, 0.1);
}

/* .nav-link.active {
            color: var(--primary);
            font-weight: 600;
            background: rgba(90, 63, 152, 0.1);
            font-family: "Poppins", sans-serif;
        } */

.services-dropdown .nav-link::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  transition: transform 0.3s;
}

.services-dropdown:hover .nav-link::after {
  transform: rotate(180deg);
}

.services-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light);
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid rgba(90, 63, 152, 0.1);
}

.services-dropdown:hover .services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.services-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 25px;
  width: 12px;
  height: 12px;
  background: var(--light);
  transform: rotate(45deg);
}

.services-menu li {
  list-style: none;
}

.services-menu a {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
}

.services-menu a:hover {
  color: var(--primary);
  background: rgba(90, 63, 152, 0.05);
}

.services-menu a i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 63, 152, 0.1);
  border-radius: 6px;
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .services-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    background: rgba(90, 63, 152, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .services-menu::before {
    display: none;
  }

  .services-dropdown.active .services-menu {
    display: block;
  }
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ============================= navbar (end) ============================= */

/* ============================= policy (start) ============================= */

html,
body {
  overflow-x: hidden;
  width: 100%;
  touch-action: manipulation;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f7f9fc 0%, #e6e6fa 100%);
  min-height: 100vh;
  padding-top: 100px;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 2rem; */
}

.privacy-content {
  background: var(--light);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.privacy-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
}

.privacy-content h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}

.privacy-content p,
.privacy-content ul {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 1rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.privacy-content hr {
  margin: 0 auto 1rem;
  border: none;
  height: 4px;
  width: 144px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.breadcrumb {
  padding: 15px 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #7864a3;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 5px;
  color: #999;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 2rem;
  }

  .privacy-content h1 {
    font-size: 2rem;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 1.5rem;
  }

  .privacy-content h1 {
    font-size: 1.8rem;
  }

  .privacy-content h2 {
    font-size: 1.3rem;
  }
}

.scroll-progress {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-progress svg {
  transform: rotate(-90deg);
}

.scroll-progress circle {
  fill: transparent;
  stroke: rgba(90, 63, 152, 0.2);
  stroke-width: 3;
}

.scroll-progress circle.progress {
  stroke: #7864a3;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.2s;
}

.scroll-progress::after {
  content: "↑";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #7864a3;
}

/* ============================= policy (end) ============================= */

/* ============================= collactions (start) ============================= */

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 130px auto;
  /* padding: 0 15px; */
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  color: #333;
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns in one line */
  gap: 25px;
  margin: 30px auto;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-container {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  padding: 15px;
  box-sizing: border-box;
}

.gallery-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border-radius: 8px;
}

.gallery-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-top: 1px solid #f0f0f0;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: linear-gradient(135deg, #291653, #a59cdc);
  box-shadow: 0 3px 10px rgba(41, 22, 83, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 22, 83, 0.3);
}

/* Modal for enlarged image */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.modal-content-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.modal-buttons {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 20px;
}

.close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

.close:hover {
  transform: scale(1.1);
}

/* Error handling for images */
.image-error {
  color: #888;
  font-size: 16px;
  text-align: center;
  padding: 20px;
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns for tablets */
  }
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for smaller tablets */
    gap: 15px;
  }

  .image-container {
    height: 200px;
  }

  .btn {
    padding: 8px 15px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for mobile */
    gap: 10px;
  }

  .image-container {
    height: 150px;
    /* Reduced height to fit two cards better */
    padding: 8px;
  }

  .gallery-buttons {
    flex-direction: column;
    /* Keep buttons side by side */
    gap: 8px;
    padding: 10px;
  }

  .btn {
    padding: 12px 7px !important;
    font-size: 12px !important;
    flex: 1;
    /* Ensure buttons take equal space */
  }
}

/* Scroll Progress Circle */
.scroll-progress {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-progress svg {
  transform: rotate(-90deg);
}

.scroll-progress circle {
  fill: transparent;
  stroke: rgba(90, 63, 152, 0.2);
  stroke-width: 3;
}

.scroll-progress circle.progress {
  stroke: #7864a3;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.2s;
}

.scroll-progress::after {
  content: "↑";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #7864a3;
}

/* Breadcrumb navigation for SEO */
.breadcrumb {
  padding: 15px 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #7864a3;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 5px;
  color: #999;
}

/* Collections Intro Section */
.collections-intro-section {
  background: linear-gradient(135deg, #ffffff 0%, #e6f0fa 100%);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.collections-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  background: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--step-index));
}

.collections-intro-container h2 {
  font-size: 25px;
  color: #5a3f98;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collections-intro-container h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #7b68ee, #5a3f98);
  margin: 0.5rem auto;
  border-radius: 2px;
}

.collections-intro-container p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-family: "PT Sans", sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .collections-intro-section {
    padding: 3rem 1.5rem;
  }

  .collections-intro-container h2 {
    font-size: 2rem;
  }

  .collections-intro-container p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .collections-intro-section {
    padding: 2rem 1rem;
  }

  .collections-intro-container h2 {
    font-size: 23px;
  }

  .collections-intro-container p {
    font-size: 10px;
  }
}

/* Visual Library Section */
.visual-library-section {
  background: linear-gradient(135deg, #fafbfc 0%, #e6f0fa 100%);
  padding: 3rem 1rem;
  margin: 3rem auto;
  position: relative;
  overflow: hidden;
}

.visual-library-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(123, 104, 238, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.visual-library-container {
  max-width: 1220px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(90, 63, 152, 0.15);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(165, 156, 220, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.visual-library-container h2 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.visual-library-container h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 2px;
}

.visual-library-content {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.9;
  font-family: "PT Sans", sans-serif;
}

.visual-library-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
  position: relative;
}

.visual-library-content strong {
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.visual-library-content .library-tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  text-align: center;
  font-weight: 600;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(165, 156, 220, 0.12),
    rgba(123, 104, 238, 0.08)
  );
  border-radius: 12px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 4px 20px rgba(90, 63, 152, 0.12);
  position: relative;
  overflow: hidden;
}

.visual-library-content .library-tagline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

@media (max-width: 768px) {
  .visual-library-section {
    padding: 2rem 0.5rem;
    margin: 2rem 0;
  }

  .visual-library-container {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .visual-library-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .visual-library-content {
    font-size: 1rem;
    line-height: 1.7;
  }

  .visual-library-content .library-tagline {
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    margin-top: 2rem;
  }

  .visual-library-content .library-tagline::before {
    font-size: 2rem;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .visual-library-section {
    padding: 1.5rem 0.5rem;
  }

  .visual-library-container {
    padding: 1.5rem 1rem;
  }

  .visual-library-container h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .visual-library-container h2::after {
    width: 80px;
    height: 3px;
  }

  .visual-library-content {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .visual-library-content p {
    margin-bottom: 1.2rem;
    text-align: left;
  }

  .visual-library-content .library-tagline {
    font-size: 1rem;
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .visual-library-content .library-tagline::before {
    font-size: 1.5rem;
    right: 10px;
  }
}
/* ============================= collactions (end) ============================= */

/* ============================= terms (start) ============================= */

html,
body {
  overflow-x: hidden;
  width: 100%;
  touch-action: manipulation;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f7f9fc 0%, #e6e6fa 100%);
  min-height: 100vh;
  padding-top: 100px;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 2rem; */
}

.terms-content {
  background: var(--light);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.terms-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
}

.terms-content h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}

.terms-content p,
.terms-content ul {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 1rem;
}

.terms-content ul {
  padding-left: 1.5rem;
}

.terms-content li {
  margin-bottom: 0.5rem;
}

.terms-content hr {
  margin: 0 auto 1rem;
  border: none;
  height: 4px;
  width: 144px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.terms-content a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s;
}

.terms-content a:hover {
  color: var(--secondary);
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 2rem;
  }

  .terms-content h1 {
    font-size: 2rem;
  }

  .terms-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 80px;
  }

  .terms-content {
    padding: 1.5rem;
  }

  .terms-content h1 {
    font-size: 1.8rem;
  }

  .terms-content h2 {
    font-size: 1.3rem;
  }
}

.scroll-progress {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-progress svg {
  transform: rotate(-90deg);
}

.scroll-progress circle {
  fill: transparent;
  stroke: rgba(90, 63, 152, 0.2);
  stroke-width: 3;
}

.scroll-progress circle.progress {
  stroke: #7864a3;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.2s;
}

.scroll-progress::after {
  content: "↑";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #7864a3;
}

/* ============================= terms (end) ============================= */

/* ============================= about (end) ============================= */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styles */
/* section {
            padding: 80px 0;
        } */

.section-light {
  /* background-color: white; */
}

.section-dark {
  background-color: #f0f4f8;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #2c3e50;
  text-align: center;
  position: relative;
}

.container h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  margin: 15px auto;
  border-radius: 2px;
}

.content-wrapper p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  /* text-align: center; */
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.mission-box,
.vision-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-box h3,
.vision-box h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* Promise Section */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.promise-item {
  text-align: center;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promise-icon {
  font-size: 2.5rem;
  color: #6a11cb;
  margin-bottom: 20px;
}

.promise-item h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }
}

/* ============================= about (end) ============================= */
