:root {
  --font: "Crimson Text", serif;
  --primary-color: #080b1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #ffffff;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.navbar {
  padding: 0 1rem;
  top: 0;
  left: 0;
  z-index: 1000;
  font-family: var(--font);
  margin: clamp(10px, 3vh, 40px) clamp(10px, 4vw, 50px);
  /* Responsive margin */
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links li {
  position: relative;
  transition: 0.4s ease;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  /* Responsive font size */
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-links li:hover {
  transform: translate(5px, -2px);
}

.get-started-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.6rem, 1.5vw, 0.7rem) clamp(1rem, 3vw, 1.5rem);
  /* Responsive padding */
  color: white;
  background: linear-gradient(#922f99 0%, #ec873a 50%, #0d2280 100%);
  border-radius: 0px 22px 0px 22px;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  /* Responsive font size */
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}

.get-started-btn::before {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: #080b1a;
  border-radius: 0px 20px 0px 20px;
  z-index: -1;
  pointer-events: none;
}

.get-started-btn:hover {
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-top: 1px solid #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  /* Increased z-index to appear above hero */
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu ul {
  list-style: none;
  padding: 1rem 0;
}

.mobile-menu li {
  padding: 0.8rem 2rem;
  border-bottom: 1px solid #333;
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  transition: color 0.3s ease;
}

/* Content spacing to account for fixed navbar */
.content {
  margin-top: 70px;
  padding: 2rem;
  text-align: center;
}

.content h1 {
  color: #333;
  margin-bottom: 1rem;
}

.content p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 0 1rem;
  }

  /* Keep the GET STARTED button visible on mobile */
  .get-started-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 1.05rem;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 0 0.5rem;
  }

  .mobile-menu li {
    padding: 0.8rem 1rem;
  }

  .get-started-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* Hero Section */
:root {
  --font: "Days One", sans-serif;
  --primary-color: #080b1a;
  --clr-1: #922f99;
  --clr-2: #ec873a;
  --clr-3: #0d2280;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero-container {
  margin: 10px 20px;
  margin-bottom: 5vh;
  position: relative;
  padding: 4px;
  background: conic-gradient(from var(--angle), var(--clr-1), var(--clr-2), var(--clr-3), var(--clr-1));
  border-radius: 12px;
  animation: 4s spin linear infinite;
}

.hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(from var(--angle), var(--clr-1), var(--clr-2), var(--clr-3), var(--clr-1));
  border-radius: 12px;
  filter: blur(1.5rem);
  opacity: 0.6;
  z-index: -1;
  animation: 4s spin linear infinite;
}

.hero {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  min-height: 400px;
  font-family: var(--font);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

.hero-info {
  text-align: center;
  max-width: 100%;
  margin-bottom: 2rem;
  z-index: 1;
  color: white;
}

.hero-heading {
  font-size: clamp(1.5rem, 3.6vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  max-width: 100%;
}

.desktop-break {
  display: none;
}

.hero-color-heading {
  background: linear-gradient(to right, #922f99 0%, #ec873a 50%, #0d2280 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero-subheading {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-img {
  position: relative;
  display: none;
  /* Hidden by default on mobile/tablet */
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  transition: opacity 0.3s ease;
}

.hero-color {
  position: absolute;
  width: clamp(60px, 12vw, 154.66px);
  height: clamp(120px, 24vw, 301.31px);
  right: clamp(190px, -12vw, -154.67px);
  bottom: clamp(160px, -24vw, -310px);
  background: linear-gradient(98.24deg, #ec873a 0%, #0d2280 100%);
  filter: blur(clamp(30px, 8vw, 105px));
  transform: rotate(-112.15deg);
  z-index: 0;
}

.hero-shadow {
  position: absolute;
  width: clamp(120px, 28vw, 349px);
  height: clamp(20px, 4vw, 49px);
  right: clamp(70px, -12vw, -162px);
  bottom: clamp(120px, -28vw, -358px);
  background: #000000;
  filter: blur(clamp(8px, 2vw, 23.5px));
  z-index: 0;
}

.laptop-img {
  position: relative;
  width: clamp(180px, 40vw, 400px);
  height: auto;
  max-height: clamp(200px, 50vw, 500px);
  transform: scaleX(-1);
  z-index: 1;
  object-fit: contain;
}

/* Mobile and tablet - Image should be visible and larger */
@media (max-width: 749px) {
  .hero-img {
    display: flex;
    /* Make the image container visible */
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Allow it to take full width of its parent */
    max-width: 90%;
    /* Limit max width to prevent overflow on very small screens */
    margin: 2rem auto;
    /* Center and add vertical spacing */
    opacity: 1;
    /* Ensure it's not faded out */
  }

  .laptop-img {
    display: block;
    /* Ensure the image itself is displayed */
    width: 100%;
    /* Take full width of its container (.hero-img) */
    max-width: 350px;
    /* Set a max-width for the image on phones */
    height: auto;
    transform: none;
    /* Remove any desktop-specific transforms */
  }

  .hero-color,
  .hero-shadow {
    display: none;
    /* Keep these hidden as they are likely for desktop visual effects */
  }

  .hero-info {
    margin-bottom: 0;
    /* Keep text margin as is or adjust if needed */
  }

  .hero-container {
    /* Adjust margin for mobile to be more reasonable */
    margin: 50px 15px 90px 15px;
    /* Example: top, right, bottom, left */
    padding: 4px;
  }

  .hero {
    padding: 2rem 1rem;
    min-height: auto;
    /* Allow height to adjust to content */
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .hero {
    min-height: 300px;
    padding: 1.5rem 0.75rem;
  }

  .hero-container {
    margin: 30px 10px 60px 10px;
    /* Slightly smaller margins for very small phones */
    padding: 3px;
  }

  .hero-heading {
    margin-bottom: 1rem;
  }

  .hero-subheading {
    margin-bottom: 1.5rem;
  }

  .laptop-img {
    max-width: 280px;
    /* Adjust max-width for very small screens */
  }
}

/* Desktop styles - Image appears only here */
@media (min-width: 750px) {
  .hero-container {
    margin: 10px 50px;
    margin-bottom: 15vh;
    padding: 6px;
  }

  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    min-height: 500px;
  }

  .hero-info {
    text-align: left;
    max-width: 50%;
    margin-bottom: 0;
    margin-right: 2rem;
  }

  .hero-img {
    display: flex;
    /* Only show image on desktop */
    max-width: 45%;
    opacity: 1;
  }

  .desktop-break {
    display: inline;
  }
}

/* Large desktop styles */
@media (min-width: 1200px) {
  .hero-container {
    margin: 10px 80px;
    margin-bottom: 20vh;
    padding: 8px;
  }

  .hero {
    padding: 0 50px;
    min-height: 500px;
  }

  .hero-info {
    max-width: 55%;
  }

  .hero-img {
    max-width: 40%;
    max-width: 600px;
  }

  .laptop-img {
    width: clamp(300px, 35vw, 517px);
    max-height: clamp(400px, 45vw, 672px);
  }
}

/* Extra large screens */
@media (min-width: 1600px) {
  .hero-container {
    margin: 10px 100px;
    padding: 10px;
  }

  .hero {
    padding: 0 60px;
  }
}

/* Height-based media queries for very short screens */
@media (max-height: 400px) {
  .hero {
    min-height: 200px;
    padding: 1rem;
  }

  .hero-info {
    margin-bottom: 0;
  }
}

/* About Section */
:root {
  --clr-1: #080b1a;
  --font-heading: "Lexend Exa", sans-serif;
  --font-body: "Neuton", serif;
}

.about-us {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 120vh;
  /* Use min-height to allow content to expand */
  font-family: var(--font-body);
  margin-bottom: 150px;
  padding: 2rem 1rem;
  /* Add some default padding */
  overflow: hidden;
  /* Prevent overflow during animations */
}

.about-heading {
  font-size: clamp(2rem, 5vw, 3.125rem);
  /* Responsive font size */
  font-weight: 400;
  font-family: var(--font-heading);
}

/* Default styles for larger screens (desktop animation) */
.about-img {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s ease;
  opacity: 1;
  z-index: 1;
  width: clamp(300px, 40vw, 602px);
  /* Responsive width */
  padding: 8px;
  background: linear-gradient(to right, #922f99 0%, #ec873a 50%, #0d2280 100%);
  border-image-slice: 1;
  border-radius: 60px;
}

.about-img.fade-out {
  opacity: 0;
}

.about-info {
  position: absolute;
  width: clamp(400px, 40vw, 600px);
  /* Responsive width */
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  /* Responsive font size */
  color: #ffffff;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.8s ease;
  z-index: -1;
  text-align: left;
  line-height: 1.5;
}

/* Desktop active state - original animation */
.about-us.active .about-img {
  left: 25%;
  transform: translate(-50%, -50%);
  /* Keep original transform for centering */
}

.about-us.active .about-info {
  left: 75%;
  opacity: 1;
  transform: translate(-50%, -50%);
  /* Keep original transform for centering */
}

/* Media query for smaller screens (e.g., tablets and mobile) */
@media (max-width: 767px) {
  .about-us {
    min-height: auto;
    /* Allow height to adjust to content */
    padding: 2rem 1rem;
    /* Ensure padding on smaller screens */
    margin-bottom: 50px;
    /* Adjust margin for smaller screens */
  }

  .about-heading {
    margin-bottom: 5rem;
  }

  .about-img {
    position: relative;
    /* Stack elements */
    top: auto;
    left: auto;
    transform: none;
    /* Remove absolute positioning transforms */
    width: 90%;
    /* Take more width */
    max-width: 400px;
    /* Limit max width */
    margin: 0 auto 2rem auto;
    /* Center and add bottom margin */
    border-radius: 30px;
    /* Adjust border-radius for smaller image */
    padding: 6px;
  }

  .about-info {
    position: relative;
    /* Stack elements */
    bottom: 10%;
    left: auto;
    transform: none;
    /* Remove absolute positioning transforms */
    width: 90%;
    /* Take more width */
    max-width: 500px;
    /* Limit max width */
    margin: 0 auto;
    /* Center */
    text-align: center;
    /* Center text */
    opacity: 0;
    /* Initial opacity for fade-in */
    z-index: 2;
    /* Ensure text is visible */
  }

  /* Mobile active state - only fade in text */
  .about-us.active .about-img {
    left: auto;
    transform: none;
    /* Ensure no horizontal movement */
  }

  .about-us.active .about-info {
    left: auto;
    opacity: 1;
    /* Only fade in */
    transform: none;
    /* Ensure no horizontal movement */
  }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
  .about-us {
    padding: 1.5rem 0.75rem;
  }

  .about-heading {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 2.5rem;
  }

  .about-img {
    max-width: 300px;
    margin-bottom: 1.5rem;
  }

  .about-info {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
}

/* Packs Section */
:root {
  --clr-1: #080b1a;
  --font-heading: "Lexend Exa", sans-serif;
  --font-body: "Neuton", serif;
}

body {
  background-color: var(--clr-1);
}

.packs {
  font-family: var(--font-body);
  padding: 2rem 1rem;
  /* Responsive padding */
  max-width: 1400px;
  /* Limit overall section width */
  margin: 0 auto -50px auto;
  /* Decreased margin-bottom */
}

.packs-heading {
  text-align: center;
  margin-bottom: 3rem;
  /* Responsive margin */
  font-size: clamp(2rem, 5vw, 3rem);
  /* Responsive font size */
  font-family: var(--font-heading);
  font-weight: 400;
  color: white;
  /* Ensure heading is visible */
}

.pack-plans {
  display: flex;
  flex-direction: column;
  /* Default: stacked on small screens */
  align-items: center;
  gap: 3rem;
  /* Spacing between image and plans */
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.pack-plans.fade-out {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.packs-img {
  max-width: 100%;
  /* Allows full width of the container */
  height: auto;
  margin-bottom: 2rem;
  /* Spacing when stacked */
  min-width: 300px;
  /* Minimum width to ensure it’s not too small */
}

@media (max-width: 767px) {
  .packs-img {
    max-width: 100%;
    /* Ensure it takes full container width */
    min-width: 380px;
    /* Increased minimum width for better visibility on mobile */
    width: 100%;
    /* Force full width on mobile */
    margin: 0 auto 0 auto;
    /* Center and maintain spacing */
  }
}

.plan-heading {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Take full width on mobile */
  max-width: 600px;
  /* Limit max width */
  gap: 2rem;
  /* Responsive gap */
  font-size: clamp(1.2rem, 3vw, 1.875rem);
  /* Responsive font size */
  margin: 0 auto;
  /* Center the plan headings */
}

.plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  /* Add padding to individual plans */
  border-radius: 10px;
  /* Add some styling */
  background-color: rgba(255, 255, 255, 0.05);
  /* Light background for visibility */
  color: white;
}

.plan-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* Responsive space between icon and text */
}

.plan-content img {
  width: clamp(30px, 8vw, 50px);
  /* Responsive icon size */
  margin-right: 0;
  /* Removed fixed margin */
  height: auto;
}

.pack-arrow {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  /* Ensure positioning context for children */
  width: clamp(80px, 15vw, 120px);
  /* Adjusted width to contain elements */
  height: clamp(50px, 10vw, 60px);
  /* Adjusted height */
  justify-content: flex-end;
  /* Align content to the right */
}

.orange-blur {
  background: #ec873a;
  width: clamp(30px, 8vw, 50px);
  /* Responsive size */
  height: clamp(30px, 8vw, 50px);
  /* Responsive size */
  border-radius: 50%;
  filter: blur(1rem);
  position: absolute;
  /* Absolute positioning within .pack-arrow */
  right: 0;
  /* Stick to the right */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.white-circle {
  background: rgba(255, 255, 255, 0.43);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.37);
  height: 40px;
  /* Fixed height */
  width: 40px;
  /* Fixed width */
  position: absolute;
  right: 10%;
  /* Fixed right position */
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.arrow {
  z-index: 3;
  position: absolute;
  /* Absolute positioning within .pack-arrow */
  right: clamp(5px, 1vw, 15px);
  /* Adjusted right to stick closer */
  top: 50%;
  transform: translateY(-50%);
  width: clamp(35px, 4vw, 20px);
  /* Responsive arrow size */
  height: clamp(35px, 4vw, 20px);
  /* Responsive arrow size */
}

.backgroundImg {
  position: absolute;
  top: 0;
  right: -15%;
  z-index: -2;
}

.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* Responsive gap */
  margin-top: 2rem;
  /* Responsive margin */
}

.toggle-label {
  color: white;
  font-weight: 500;
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  /* Responsive font size */
}

.toggle-switch {
  position: relative;
  width: clamp(50px, 12vw, 60px);
  /* Responsive width */
  height: clamp(25px, 6vw, 30px);
  /* Responsive height */
  background-color: #325589;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% / 2 - 6px);
  /* Responsive knob size */
  height: calc(100% - 6px);
  /* Responsive knob size */
  background-color: black;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::before {
  transform: translateX(calc(100% + 6px));
  /* Responsive knob movement */
}

/* Pricing Cards */
.marketingPricing,
.templatePricing {
  width:90%;
  /* Responsive width */
  max-width: 500px;
  /* Max width for cards */
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 35px;
  padding: 1.2rem;
  /* Responsive padding */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.marketingHeading,
.templateHeading {
  text-align: center;
  margin-top: 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  /* Responsive font size */
  color: black;
  margin-bottom: 1rem;
}
.marketingCharges,
.templateCharges {
  color: #000000;
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  /* Responsive font size */
}

hr {
  width: 80%;
  margin: 0.5rem auto 1.5rem auto;
  /* Responsive margin */
  border: none;
  border-top: 1px solid #111;
  opacity: 0.4;
}

.marketing-item,
.template-item {
  display: flex;
  align-items: center;
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  /* Responsive font size */
  font-weight: 500;
  color: black;
  gap: 1rem;
  /* Responsive gap */
  margin-bottom: 1.5rem;
  /* Responsive margin */
}

.check {
  color: #66ff66;
  margin-right: 0.5rem;
  font-weight: bold;
  margin-left: 1.5rem;
  /* Responsive margin */
}

.pricesBtn,
.templatesBtn {
  margin: 1.5rem 1.5rem 1.5rem 1.5rem;
  /* Responsive margin */
  padding: 0.8rem 1.5rem;
  /* Responsive padding */
  background-color: transparent;
  color: black;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: calc(100% - 3rem);
  /* Full width minus margins */
}

.pricesBtn:hover,
.templatesBtn:hover {
  background-color: black;
  color: white;
}

.feature-fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Template Carousel */
.templateCarousal {
  margin-top: 3rem;
  /* Responsive margin */
  position: relative;
  width: clamp(250px, 60vw, 700px);
  /* Responsive width */
  height: clamp(250px, 60vw, 650px);
  /* Responsive height */
  border-radius: 50%;
  /* overflow: hidden; Hide parts of images outside the circle */
  margin-left: auto;
  /* Center the carousel */
  margin-right: auto;
  /* Center the carousel */
}

.templateImg {
  position: absolute;
  width: clamp(100px, 25vw, 250px);
  /* Responsive image width */
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the image initially */
  transform-origin: center center;
  /* Rotate around its own center */
  transition: transform 1s ease-in-out;
}

/* Layout for prices section based on selected plan */
.prices {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.prices--marketing-layout {
  flex-direction: column;
  justify-content: center;
}

.prices--templates-layout {
  flex-direction: column;
  justify-content: center;
}

/* Media queries for desktop layout */
@media (min-width: 992px) {

  /* Changed from 768px to 992px */
  .pack-plans {
    flex-direction: row;
    /* Side-by-side on desktop */
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }

  .packs-img {
    max-width: 70%;
    /* Adjusted width for side-by-side layout on desktop */
    margin-bottom: 0;
  }

  .plan-heading {
    width: auto;
    /* Allow content to define width */
    max-width: none;
    margin: 0;
    /* Remove auto margins */
    gap: 3rem;
  }

  .plan {
    width: auto;
    /* Allow content to define width */
    max-width: none;
  }

  .prices--development-layout {
    flex-direction: row;
    flex-wrap: nowrap;
    /* Ensure they stay in one line */
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
  }

  .developmentPricing {
    flex: 1 1 calc((100% - 4rem) / 3);
    /* Calculate flex-basis to fit 3 items with 2rem gaps */
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .developmentBtn {
    margin-top: auto;
    /* Keep button at the bottom */
  }

  .prices--templates-layout {
    flex-direction: row;
    /* Side-by-side for template carousel and pricing */
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
  }

  .templateCarousal {
    width: clamp(350px, 40vw, 550px);
    /* Adjusted width for desktop */
    height: clamp(350px, 40vw, 550px);
    /* Adjusted height for desktop */
    flex-shrink: 0;
    margin: 0;
  }

  .templatePricing {
    width: clamp(300px, 30vw, 400px);
    /* Adjusted width for desktop */
    flex-shrink: 0;
    margin: 0;
  }
}

/* Further adjustments for large desktop screens */
@media (min-width: 1024px) {
  .packs {
    padding: 2rem 3rem;
  }

  .packs-heading {
    margin-bottom: 4rem;
  }

  .pack-plans {
    gap: 5rem;
  }

  .plan-heading {
    gap: 4rem;
  }

  .prices {
    gap: 4rem;
  }
}

/* Extra large screens */
@media (min-width: 1200px) {
  .packs {
    padding: 2rem 5rem;
  }
}

/* Projects Section */
:root {
  --clr-1: #080b1a;
  --font-heading: "Lexend Exa", sans-serif;
  --font-body: "Neuton", serif;
}

.projects {
  padding: clamp(50px, 10vw, 100px) clamp(20px, 5vw, 50px);
  /* Responsive padding */
}

.project-heading {
  font-size: clamp(1.8rem, 2.2vw, 3rem);
  /* Responsive font size */
  color: white;
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 80px);
  /* Responsive margin */
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-weight: 400;
}

.project-cards {
  display: flex;
  justify-content: center;
  gap: clamp(50px, 12vw, 120px);
  /* Increased responsive gap */
  flex-wrap: wrap;
}

.singleCard {
  width: auto;
  /* Allow flex to control width */
  height: auto;
  /* Allow content to control height */
  flex: 1 1 clamp(240px, 70vw, 300px);
  /* Decreased width for smaller screens */
  background: #f6f9ff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 300px;
  /* Decreased max width for larger screens */
}

.singleCard:hover {
  transform: scale(1.05);
}

.singleCard img {
  width: 100%;
  height: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.singleCard .info {
  padding: 10px 20px 18px 20px;
  font-size: clamp(1.2rem, 4vw, 2rem);
  /* Responsive font size */
  text-align: center;
  font-weight: 500;
  font-family: "Neuton", serif;
  color: #121212;
}

.singleCard a {
  cursor: pointer;
}

/* FAQ Section */
:root {
  --clr-1: #080b1a;
  --font-heading: "Lexend Exa", sans-serif;
  --font-body: "Neuton", serif;
}

body {
  overflow-x: hidden;
}

.faq {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 150px;
}

.curve {
  position: absolute;
  width: 100%;
  /* Changed from 1600px to 100% for responsiveness */
  top: -7%;
  z-index: -1;
}

.glow-line {
  filter: drop-shadow(0 0 6px #8742d7);
}

.faq-heading {
  text-align: center;
  margin-top: clamp(50px, 10vh, 100px);
  /* Responsive margin */
  margin-bottom: clamp(50px, 10vh, 100px);
  /* Responsive margin */
  font-family: var(--font-heading);
  font-weight: 400;
}

.faq-answer {
  font-size: 1.2rem;
  color: white;
  margin-top: 10px;
  max-width: 800px;
  transition: all 0.3s ease;
}

.questions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 50px auto;
  padding: 10px;
  max-width: 900px;
  border-bottom: 1px solid #8742d7;
}

.questions .question {
  display: flex;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  /* Responsive font size */
  margin-bottom: 10px;
  color: white;
}

.questions .faq-arrow {
  display: inline-block;
  align-self: flex-end;
  margin-bottom: 10px;
  padding: clamp(3px, 1vw, 5px);
  /* Responsive padding */
  border: clamp(2px, 0.5vw, 3px) solid white;
  /* Responsive border */
  border-radius: 50%;
  cursor: pointer;
}

.question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-arrow {
  transform: rotate(-90deg);
  transition: transform 0.2s ease-out;
}

.faq-arrow-rotated {
  transform: rotate(0deg);
}

/* Contact Section */
.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(30px, 8vw, 50px);
  /* Responsive gap */
  margin-bottom: clamp(50px, 10vh, 100px);
  /* Responsive margin */
}

.contact-heading {
  font-size: clamp(2rem, 6vw, 3.2rem);
  /* Responsive font size */
}

.contact-subheading {
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  /* Responsive font size */
}

.contact-btn {
  padding: clamp(10px, 3vw, 20px) clamp(20px, 6vw, 50px);
  /* Responsive padding */
  cursor: pointer;
  color: #000000;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  /* Responsive font size */
  font-weight: bold;
  border-radius: 0 40px 0 40px;
  border: none;
}

/* Footer Section */
.container {
  width: 100%;
}

.footer-section {
  background-color: #eaf1f9;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 1.5rem);
  /* Responsive padding */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 4vw, 2rem);
  /* Responsive gap */
}

.footer-column {
  color: #000000;
  text-align: center;
  /* Center content within columns for all screen sizes */
}

.footer-heading {
  font-size: clamp(1rem, 2vw, 1.25rem);
  /* Responsive font size */
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000000;
}

.footer-text {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  /* Responsive font size */
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
}

.footer-links,
.footer-contacts {
  list-style: none;
  padding: 0;
  /* Ensure no default padding */
}

.footer-links li,
.footer-contacts li {
  margin-bottom: 0.5rem;
}

.footer-link,
.footer-contact {
  color: #000000;
  text-decoration: none;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  /* Responsive font size */
  font-weight: 500;
  transition: text-decoration 0.3s ease;
}

.footer-link:hover,
.footer-contact:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  /* Responsive gap */
  justify-content: center;
  /* Center social icons within the column */
}

.social-icon {
  width: clamp(2rem, 5vw, 3rem);
  /* Responsive size */
  height: clamp(2rem, 5vw, 3rem);
  /* Responsive size */
  background-color: #000000;
  border-radius: 30% 0 30% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon svg {
  width: clamp(1rem, 3vw, 1.5rem);
  /* Responsive size */
  height: clamp(1rem, 3vw, 1.5rem);
  /* Responsive size */
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-column {
    padding-bottom: 30px;
  }
}