/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #ffff;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.plan-name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-tagline {
  font-size: 16px;
  color: #ff0000;
  margin-bottom: 25px;
}

.price-box {
  font-size: 64px;
  font-weight: 900;
  color: #e53935; /* Red for bold impact */
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
}

.currency {
  font-size: 28px;
  font-weight: 700;
  vertical-align: top;
}

.pricing-features {
    color: black;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 10px;
}

.btn.btn-primary {
  background-color: #e53935;
  color: white;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #c62828;
}

.no-subscription {
    padding: 20px;
  margin-top: 15px;
  font-size: 14px;
  color: #000000;
}

.metrics-section {
  padding: 60px 0;
  background-color: #1c1c1c; /* same dark as your differentiator section */
  color: #ffffff;
  text-align: center;
}





.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.faq-card {
   background: #252525;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border-left: 3px solid #FF7A00;
}

.faq-icon {
  color: Orange; /* correct 6-digit hex code for white */
  width: 78px;
  margin-bottom: 1rem;
}


.faq-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.comparison-scroll {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  margin: 20px 0;
}

/* Give the table a min-width to allow scrolling */
.comparison-table {
  min-width: 750px; /* or larger if your content needs */
}

/* Optional: Hide scrollbar on desktop but show on mobile */
@media (max-width: 768px) {
  .comparison-scroll {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .comparison-scroll::-webkit-scrollbar {
    height: 8px;
  }

  .comparison-scroll::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
  }
}
.ct-header > div,
.ct-row > div {
  flex: none;
  width: 33.33%; /* Each column takes 1/3 of the total width */
  text-align: center;
}

.section-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #ffff, #fffff); /* deep red gradient */
  opacity: 0.5;
}

.testimonials-section {
  background-color: #121212; /* dark mode */
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #e50914; /* deep red */
  margin-bottom: 40px;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #e50914;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e50914;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #bbb;
}


/* ===== Developer Section ===== */
#developer {
  background: #220000;
  padding: 100px 0;
  position: relative;
}

.developer-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.developer-bio {
  flex: 1;
}

.intro-text {
  font-size: 1.1rem;
  color: #bbb;
  margin: 20px 0 30px;
  line-height: 1.6;
}

/* Tech Stack */
.tech-stack {
  margin: 40px 0;
}

.tech-stack h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tech-item {
  background: #252525;
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.tech-item:hover {
  transform: translateY(-3px);
}

.tech-icon {
  width: 24px;
  height: 24px;
}

/* Achievements */
.achievements {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.achievement-card {
  background: #252525;
  border-left: 3px solid #ff0000;
  padding: 15px;
  border-radius: 0 8px 8px 0;
  flex: 1;
}

.achievement-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Code Showcase */
.code-showcase {
  flex: 1;
  background: #252525;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.code-tabs {
  display: flex;
  background: #333;
}

.code-tab {
  flex: 1;
  padding: 15px;
  background: transparent;
  border: none;
  color: #bbb;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.code-tab.active {
  background: #940500;
    color: #ffffff;
}

.code-container {
  padding: 20px;
}

.code-block {
  display: none;
  margin: 0;
}

.code-block.active {
  display: block;
}

pre code {
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #f8f8f2;
}

/* Responsive */
@media (max-width: 768px) {
  .developer-wrapper {
    flex-direction: column;
  }
  
  .code-showcase {
    width: 100%;
  }
}
/* ===== Features Section ===== */
#features .highlight {
  color: #de0303;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  background: #252525;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border-left: 3px solid #FF7A00;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2rem;
  color: #FF7A00;
  margin-bottom: 20px;
  position: relative;
}

.feature-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #FF7A00;
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #a70000;
}

.feature-subtext {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: normal;
}

.feature-card p {
  color: #767575;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-link {
  color: #FF7A00;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s;
}

.feature-link:hover {
  transform: translateX(5px);
}
/* ===== Dark Theme for Key Differentiators ===== */
#differentiators.section-dark {
  background: #1a1a1a; /* Matches comparison table */
  color: #e0e0e0;
  padding: 80px 0;
}

#differentiators .highlight {
  color: #ff0c00; /* Brand accent */
}

#differentiators .subtitle {
  color: #aaa;
}

/* USP Cards (Dark Version) */
.usp-card {
  background: #252525;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.usp-card h3 {
  color: #FF7A00; /* Orange headers */
}

.usp-card p {
  color: #bbb;
}

.usp-card strong {
  color: #a40000; /* Bold text stands out */
}

/* Icons (Glow Effect) */
.usp-icon {
  filter: drop-shadow(0 0 5px rgba(255, 122, 0, 0.3));
}

/* Underline Animation (Dark Theme) */
#differentiators h2 span {
  position: relative;
}

#differentiators h2 span::after {
  background: #fffff; /* Orange underline */
}
/* ===== Comparison Table ===== */
#comparison.section-dark {
  background: #1a1a1a; /* Dark background */
  color: #fff;
  padding: 80px 0;
}

#comparison .highlight {
  color: #ff0000; /* Brand accent */
}

/* Table Container */
.comparison-table {
  background: #252525;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

/* Header Row */
.ct-header {
  display: flex;
  background: #320200;
  padding: 18px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ct-header > div {
      text-align: center; /* Add this */

  flex: 1;
}

/* Category Headers */
.ct-category {
  background: #333;
  padding: 15px 25px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Table Rows */
.ct-row {
  display: flex;
  padding: 18px 25px;
  border-bottom: 1px solid #383838;
  transition: background 0.3s;
}

.ct-row:hover {
  background: #2e2e2e;
}

.ct-row > div {
   flex: 1;
  text-align: center;
  padding: 0 10px;
}

/* Icons */
.check-icon {
    
  color: #4CAF50;
  font-weight: bold;
  margin-right: 8px;
  font-size: 1.2rem;
}

.x-icon {
  color: #F44336;
  font-weight: bold;
}

/* Column Styles */
.ct-carnis {
  color: #FF7A00;
  font-weight: 600;
}
.comparison-table .ct-pos,
.comparison-table .ct-carnis {
  text-align: center;
}
.ct-feature {
  text-align: left;
}

.comparison-table .ct-feature {
  text-align: left;
}
.ct-pos {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ct-header, .ct-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .ct-header > div, .ct-row > div {
    flex: none;
    width: 100%;
  }
}

/* ===== Section 2: Key Differentiators ===== */
.section-dark {
  background: #1a1a1a;  /* Light gray background for contrast */
  padding: 80px 0;
  text-align: center;
}

#differentiators h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffff;
}

#differentiators .subtitle {
  font-size: 1.1rem;
  color: #acabab;
  margin-bottom: 50px;
}

/* USP Grid Layout */
.usp-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* USP Card Styling */
.usp-card {
  background: white;
  border-radius: 10px;
  padding: 30px 25px;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply Animation to USP Cards */
.usp-card {
  opacity: 0; /* Start invisible */
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Delay Each Card's Animation */
.usp-card:nth-child(1) { animation-delay: 0.2s; }
.usp-card:nth-child(2) { animation-delay: 0.4s; }
.usp-card:nth-child(3) { animation-delay: 0.6s; }


@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Apply to Icons */
.usp-icon:hover {
  animation: pulse 0.5s ease;
}
/* Animated Underline */
#differentiators h2 {
  position: relative;
  display: inline-block;
}

#differentiators h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: #FF7A00;
  transition: width 0.6s ease-out;
}

/* Trigger Animation When Section is Visible */
#differentiators.in-view h2::after {
  width: 100%;
}
.usp-card:hover {
  transform: translateY(-5px);  /* Subtle hover effect */
}

.usp-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.usp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #b30606;  /* Carnis brand color */
}

.usp-card p {
  color: #555;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .usp-grid {
    flex-direction: column;
    align-items: center;
  }
  .usp-card {
    width: 90%;
  }
}
/* Highlight Key Phrases */
.highlight {
  color: #b30606; /* Carnis brand orange */
  font-weight: 700;
}
.highlight2 {
  color: #ffac00; /* Carnis brand orange */
  font-weight: 700;
}

/* Trust Badges */
.trust-badges {
  margin: 15px 0;
  font-size: 0.9em;
  color: #ffff;
}
.trust-badges span {
  margin-right: 15px;
}

/* Buttons */
.btn-primary {
  background: #FF7A00;
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
}
.btn-secondary {
  background: transparent;
  border: 2px solid #FF7A00;
  color: #FF7A00;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}

/* Image Callout */
.image-highlight {

  position: absolute;
  bottom: -20px;
  right: 0;
  background: red;
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.trust-badge {
  display: flex;
  align-items: center;
  margin-top: 16px;
  font-size: 0.95rem;
  color: #fffff;
}

.trust-badge img {
  margin-right: 10px;
}
.free-trial-highlight {
  margin-top: 15px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 10px;
  border: 2px solid white;
  border-radius: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1); /* light transparent bg */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* glow effect */
  text-align: center;
  animation: pulse 2s infinite;
}
.footer-text {
  font-size: 14px;
  color: #fffff;
  text-align: center;
  margin: 20px 0;
}

.footer-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #fefefe;
}

.price-title,
.price-title h2,
.price-title span {
  color: black;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header - Updated */
/* Header */
header {
  background: #ffffff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

header .logo {
  height: 70px;
}

/* Logo and App Title Container */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between logo and title */
}

/* App Title Styles */
.app-title {
  font-size: 24px; /* Adjust font size */
  font-weight: 600; /* Bold text */
  color: #8B0000; /* Red color to match your theme */
  margin: 0; /* Remove default margin */
}
/* Navigation */
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #8B0000;
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #FFD700;
}

/* Download Button */
header .btn-download {
  background: linear-gradient(45deg, #8B0000, #B22222);
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover */
header .btn-download:hover {
  background: #FFBF00;
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn-download {
    display: none;
        
    }
  header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  header .btn-download {
    margin-top: 15px;
  }
}



/* Hero Section - Updated */


/* Amber Button */
.hero .btn-downloads {
  background: #FFBF00; /* Amber */
  color: #000000;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.btn-downloads:hover {
  background: #ffffff; /* Slightly darker amber on hover */
}

/* Get Full Version Button */
.btn-full-version {
  background: #ffffff; /* Red */
  color: black;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.btn-full-version:hover {
  background: #FFBF00; /* Darker red on hover */
}

/* Icon inside button */
.hero .btn-download img {
  width: 20px;
  height: 20px;
}

/* Download note below button */
.download-note {
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
}

/* Hero Section Background */
.hero {
  background: linear-gradient(135deg, #860000, #ff6565);
  color: white;
  padding:0px 0;
}

/* Container Flex: Side by Side (Desktop) */
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap; /* Prevent wrap on desktop */
}

/* Content Flex */
.hero-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap; /* No wrap on desktop */
}

/* Text Section */
.hero-text {
  max-width: 40%; /* Smaller width */
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #FFF8F0;
}

.hero-text p {
  font-size: 24px;
  margin-bottom: 20px;
}


/* Icon inside button */
.hero .btn-download img {
  width: 20px;
  height: 20px;
}

/* Download note below button */
.download-note {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}

/* Image Section */
.hero-image {
  max-width: 70%; /* Bigger width */
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 140%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero .container,
  .hero-content {
    flex-direction: column;
    flex-wrap: wrap; /* Allow wrap on mobile */
    text-align: center;
  }

  .hero-text, .hero-image {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .hero-image {
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 18px;
  }
}

.gif-icon {
    width: 60px; /* Adjust the size of the GIF icons */
    height: 60px;
    margin-bottom: 10px; /* Space between icon and title */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.icon-item:hover .gif-icon {
    transform: scale(1.1); /* Hover effect */
    opacity: 1;
}



/* Features Section */
.features {
  padding: 20px 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 40px;
  color: #8B0000;
  margin-bottom: 20px;
}

/* Screenshots Section */

.slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    background: #f9f9f9; /* Light background for contrast */
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between icons */
    margin-bottom: 20px;
}

.icon-item {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    text-align: center; /* Center align icon and title */
}

.icon-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.icon-item i {
    font-size: 40px; /* Size of Font Awesome icons */
    color: #8B0000; /* Icon color (red) */
    margin-bottom: 10px; /* Space between icon and title */
}

.icon-title {
    display: block; /* Ensure the title is below the icon */
    font-size: 16px;
    font-weight: 600;
    color: #333; /* Title color */
}

.full-width-image {
    width: 100%;
    height: 100%;
    max-width: 1200px; /* Adjust based on your design */
    margin: 0 auto;
    text-align: center;
}

.full-width-image img {
    width: 100%;
    
    height: 100%;
    max-height: 600px; /* Limit the height of the full-width image */
    border-radius: 12px; /* Optional: rounded corners for the image */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    transition: opacity 0.5s ease;
}

/* Contact Section */
.contact {
    
  background: linear-gradient(135deg, #8B0000, #FF0000);
  color: white;
  padding: 80px 0;
  text-align: center;
}


.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
}
#contact h2 {
  color: white; /* Sets the text color to white */
}

.contact button {
  background: white;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.contact-info {
  margin-top: 40px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  font-size: 24px;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer .quick-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

footer .quick-links a {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
 /* Ensure the carousel occupies full viewport height */
#screenshot-carousel .carousel-item {
  height: 100vh;
}

/* Scale images to cover the carousel area */
#screenshot-carousel .carousel-item img {
  object-fit: cover;
  height: 100%;
}

/* Style the caption background for better readability */
#screenshot-carousel .carousel-caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.carousel-item {
  height: 100vh;
}
.carousel-item img {
    align-content: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Section Styles */
.slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}


.icon-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.icon-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: scale(1.1);
}

.icon-item img {
    width: 50px; /* Adjust the size of your icons */
    height: 50px;
}

.full-width-image {
    width: 100%;
    max-width: 1200px; /* Adjust based on your design */
    margin: 0 auto;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

.free-trial-highlight {
  margin-top: 15px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1); /* light transparent bg */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* glow effect */
  text-align: center;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }
}


/* Response Message Container */
#response-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  display: none; /* Hide by default */
  animation: fadeIn 0.5s ease-in-out; /* Smooth fade-in animation */
}

/* Success Message Style */
#response-message.success {
  background-color: #d4edda; /* Light green background */
  color: #155724; /* Dark green text */
  border: 1px solid #c3e6cb; /* Green border */
}

/* Error Message Style */
#response-message.error {
  background-color: #f8d7da; /* Light red background */
  color: #721c24; /* Dark red text */
  border: 1px solid #f5c6cb; /* Red border */
}

/* Loading Spinner Style */
#response-message .fa-spinner {
  margin-right: 10px; /* Space between spinner and text */
  color: #8B0000; /* Red color for spinner */
}


/* Keyframes for Fade-In Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hamburger {
  display: none; /* Hide by default */
  font-size: 28px;
  cursor: pointer;
  color: #8B0000;
}

/* Show hamburger and hide nav on mobile */
@media (max-width: 768px) {
  /* Show hamburger icon */
  .hamburger {
    display: block; /* Show hamburger on mobile */
  }

  /* Hide nav by default on mobile */
  nav {
    display: none;
    width: 100%;
    margin-top: 15px;
  }

  /* Show nav when open */
  nav.open {
    display: block;
  }
}