/* Base styles */
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --background-color: #f8f9fa;
}

/* General Responsive Rules */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
}

.logo img {
  max-height: 50px;
}

/* Hero Section */
.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.hero-text,
.hero-image {
  flex: 1 1 300px;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.price-card {
  width: 100%;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

/* Task, CRM, Leave, and Attendance Sections */
.task-content,
.crm-content,
.leave-content,
.attendance-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.task-features,
.crm-features,
.leave-features,
.attendance-features {
  flex: 1 1 300px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

/* Footer */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  /* Navbar */
  .nav-right {
    
    text-align: center;
    display: flex;
  }

  /* Hero Section */
  .hero-content {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  /* Subscription Toggle */
  .subscription-toggle {
    flex-direction: column;
    gap: 1rem;
  }

  /* Features Section */
  .feature-card {
    text-align: center;
  }

  /* Task, CRM, Leave, and Attendance Sections */
  .task-content,
  .crm-content,
  .leave-content,
  .attendance-content {
    flex-direction: column;
  }

  .task-image,
  .crm-image,
  .leave-image,
  .attendance-image {
    order: -1; /* Move images to top on mobile */
  }

  .left-features,
  .right-features {
    text-align: center;
  }

  /* Time Running Section */
  .time-running {
    padding: 1rem;
  }

  .countdown-timer {
    justify-content: center;
  }

  /* Footer */
  .footer-content {
    text-align: center;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 480px) {
  /* Further adjustments for smaller screens */
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .price-card {
    padding: 1rem;
  }

  .features ul {
    padding-left: 1rem;
  }

  .time-box {
    padding: 0.5rem;
  }

  .footer {
    padding: 1rem;
  }

  /* Testimonials Section */
  .testimonials {
    padding: 2rem 0;
    overflow: hidden;
  }

  .testimonials-grid {
    width: 100%;
    display: block; /* Remove grid layout */
    animation: none; /* Remove marquee animation */
  }

  .testimonial-card {
    padding: 1rem;
    margin: 0.5rem;
    /* Full width minus margin */
  }

  /* Slick Slider Custom Styles */
  .slick-slide {
    padding: 0 10px;
  }

  .slick-dots {
    bottom: -30px;
  }

  .slick-dots li button:before {
    font-size: 8px;
    color: #666;
  }

  .slick-dots li.slick-active button:before {
    color: #333;
  }

  /* Hide marquee animation class if it exists */
  .marquee {
    animation: none;
    width: 100%;
  }
  .hero-image img {
    content: url('./img/second\ banner\ .jpg');
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #ffffff;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background-color: #f4f4f4;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo img {
  width: 125px;
}

/* From Uiverse.io by JaydipPrajapati1910 */
.button {
  --width: 100px;
  --height: 35px;
  --tooltip-height: 35px;
  --tooltip-width: 90px;
  --gap-between-tooltip-to-button: 18px;
  --button-color: #222;
  --tooltip-color: #fff;
  width: var(--width);
  height: var(--height);
  background: var(--button-color);
  position: relative;
  text-align: center;
  border-radius: 0.45em;
  font-family: "Arial";
  transition: background 0.3s;
}

.button::before {
  position: absolute;
  content: attr(data-tooltip);
  width: var(--tooltip-width);
  height: var(--tooltip-height);
  background-color: #555;
  font-size: 0.9rem;
  color: #fff;
  border-radius: 0.25em;
  line-height: var(--tooltip-height);
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
  left: calc(50% - var(--tooltip-width) / 2);
}

.button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #555;
  left: calc(50% - 10px);
  bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
}

.button::after,
.button::before {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-wrapper,
.text,
.icon {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  color: #fff;
}

.text {
  top: 0;
}

.text,
.icon {
  transition: top 0.5s;
}

.icon {
  color: #fff;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.button:hover {
  background: #222;
}

.button:hover .text {
  top: -100%;
}

.button:hover .icon {
  top: 0;
}

.button:hover:after {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.button:hover:before {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}

/* Hero Section Styles */
.hero {
  padding: 2rem 4rem;
  margin-top: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  max-width: 100%;
  height: 400px;
}

/* Subscription Toggle Styles */
.subscription-options {
  margin: 3rem 0;
  display: flex;
  justify-content: center;
  height: 4rem;
}

.subscription-toggle {
  box-shadow: 0 0 10px rgba(1, 236, 146, 0.26);
  display: flex;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 0.3rem;
  gap: 0.5rem;
}

.sub-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #666;
}

.sub-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.sub-btn.active {
  background: linear-gradient(to right, #297386, #339699, #78c48f);
  color: white;
}

.sub-btn.popular {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.popular-tag {
  background-color: #ff4444;
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Add animation for price changes */
.amount,
.original-price {
  transition: all 0.3s ease;
}

/* Offer Banner Styles */
.offer-banner {
  background-color: #000;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
}

.timer {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.timer span {
  font-size: 1.2rem;
  font-weight: bold;
}

.freedom-offer-btn {
  background-color: #cc0000;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  height: 75px;
  width: 350px;

  position: relative;

  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.freedom-offer-btn:hover {
  animation: sh0 0.5s ease-in-out both;
}
@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
.freedom-offer-btn:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}
.freedom-offer-btn::before,
.freedom-offer-btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}
.freedom-offer-btn:hover::before,
.freedom-offer-btn:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.freedom-offer-btn:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}
.freedom-offer-btn:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.freedom-offer-btn:hover::after {
  transform: translate3d(50%, 0, 0) scale(0.9);
}
.freedom-offer-btn:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

/*. Pricing Section Styles */
.pricing {
  padding: 4rem;
  background-color: #f8f9fa;
}

.pricing-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.price-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}
.price-card:hover {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
.price-card:hover::before {
  transition: all 0.5s ease-out;
  transform: scale(1.05);
}

.price-card h3 {
  color: #1a1a2e;
  font-size: 1.5rem;
}

.card-description {
  color: #666;
  margin-bottom: 0.5rem;
  min-height: 40px;
}

.price {
  font-size: 2rem;
  color: #339699;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
}

.rupee {
  font-size: 1.5rem;
  margin-right: 0.2rem;
}

.amount {
  font-weight: bold;
}

.per-user {
  font-size: 1rem;
  color: #666;
  margin-left: 0.5rem;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.subscription-period {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.buy-now {
  background-color: #339699;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  margin-bottom: 2rem;
}
.buy-now:hover {
  background-color: #297386;
  color: rgb(0, 0, 0);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  padding: 0.5rem 0;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #339699;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Features Section Styles */
.features-section {
  padding: 4rem;
  text-align: center;
  background-color: white;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a2e;
}

.feature-card {
  background: white;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  min-width: 150px;
}

.feature-card:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(169deg, #339699,#297386, #11ca48);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}
.feature-card:hover:before {
  transform: scale(28);
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card:hover h3 {
  color: white;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #333;
  font-size: 1.2rem;
}

/* Task Delegation Section Styles */
.task-delegation {
  padding: 4rem;
  background-color: white;
  text-align: center;
}

.task-delegation h2 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.save-time {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.save-time .highlight {
  color: #339699;
  font-weight: bold;
}

.task-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.task-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.task-feature-item {
  background-color: #f4f4f4;
  display: flex;
  gap: 1rem;
  text-align: left;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.task-feature-item:hover {
  transform: translateY(-5px);
  background-color: #f8f9fa;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text h3 {
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-text p {
  color: #666;
  line-height: 1.5;
}

.task-image {
  width: fit-content;
  padding: 2px;
}

.task-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 555px;
}

.value-worth {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.value-worth h3 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

/* Time Running Out Section */
.time-running {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #e5e7eb;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  place-content: center;
  place-items: center;
  margin: 2rem auto;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}
.time-running::before {
  content: '';
  position: absolute;
  width: 150px;
  background-image: linear-gradient(180deg, rgb(255, 0, 0), rgb(255, 0, 0));
  height: 250%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
}
.btn-time-running {
  z-index: 1;
}
.time-running:after {
  content: '';
  position: absolute;
  background: #f8f9fa;
  ;
  inset: 5px;
  border-radius: 15px;
} 
@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.time-running h2 {
  z-index: 1;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #1a1a2e;
}

.time-running h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #666;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.time-box {
  background: #000;
  color: #ff0000;
  padding: 1rem 2rem;
  border-radius: 8px;
  min-width: 100px;
  z-index: 1;
}

.time-box .time {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

.time-box .label {
  font-size: 0.9rem;
  color: white;
  display: block;
  margin-top: 0.5rem;
}

/* CRM Section Styles */
.crm-section {
  padding: 4rem;
  background-color:  #19352e;
  text-align: center;
  color: white;
  border-radius: 10px;
}

.crm-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.revenue-text {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.crm-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.crm-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.crm-feature-item {
  display: flex;
  gap: 1rem;
  text-align: left;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.crm-feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.crm-section .feature-text h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.crm-section .feature-text p {
  color: #ffffff;
  opacity: 0.8;
  line-height: 1.5;
}

.crm-image {
  
  padding: 2rem;
}

.crm-image img {
  height: 100%;
  border-radius: 10px;
  max-width: 100%;
  width: 300px;
}

.crm-section .value-worth {
  text-align: center;
  margin-top: 3rem;
}

.crm-section .value-worth h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Leave Management Section Styles */
.leave-section {
  padding: 4rem;
  background-color: #ffffff;
  text-align: center;
}

.leave-section h2 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.process-text {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.leave-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.leave-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.leave-feature-item {
  display: flex;
  gap: 1rem;
  text-align: left;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  background-color: #f8f9fa;
}

.leave-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leave-section .feature-text h3 {
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.leave-section .feature-text p {
  color: #666;
  line-height: 1.5;
}

.leave-image {
  flex: 1;
  max-width: 400px;
  padding: 2rem;
}

.leave-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Attendance Section Styles */
.attendance-section {
  padding: 4rem;
  background-color: #19352e;
  text-align: center;
  color: white;
  border-radius: 10px;
}

.attendance-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.timing-text {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.attendance-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.attendance-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.attendance-feature-item {
  display: flex;
  gap: 1rem;
  text-align: left;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.attendance-feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.attendance-section .feature-text h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.attendance-section .feature-text p {
  color: #ffffff;
  opacity: 0.8;
  line-height: 1.5;
}

.attendance-image {
  flex: 1;
  max-width: 400px;
  padding: 2rem;
}

.attendance-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.attendance-section .value-worth {
  text-align: center;
  margin-top: 3rem;
}

.attendance-section .value-worth h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Testimonials Section Styles */
.testimonials {
  padding: 4rem 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  color: #000000;
  font-size: 2rem;
  margin-bottom: 3rem;
  background: #fff;
  padding: 0.5rem 1rem;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #ffffff;
}

.testimonials-grid {
  display: flex;
  gap: 2rem;
  padding: 2rem 1rem;
  animation: scroll-left 25s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200% - 2rem));
  }
}

.testimonial-card {
  flex: 0 0 auto;
  width: 400px;
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-right: 2rem;
  white-space: normal;
  transition: all 0.3s ease;
}

.testimonial-header {
  display: flex;
  text-align: justify;
  margin-bottom: 1rem;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  background: #1a73e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 1rem;
}

.user-details h4 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

.user-details p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.rating {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.testimonials-title {
  display: flex;
  margin-top: 50px;
}
.testimonial-text {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

/* Update Footer Styles */
footer {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 20px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links,
.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a,
.social-icons a {
  color: rgb(65, 64, 64);
  text-decoration: none;
  font-size: 14px;
  transform: translateY(-2px);
}
.fa-youtube:hover{
  color: red;
}
.fa-instagram:hover{
 color: #d92e7f;
}
.fa-linkedin:hover{
  color: #0077B5;
}
.fa-facebook:hover{
  color: #3b5998;
}

.social-icons a {
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .testimonial-card {
    width: 350px;
    padding: 1.5rem;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .testimonial-card {
    width: 300px;
    padding: 1.25rem;
  }

  .testimonials {
    display: flex;
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 280px;
    padding: 1rem;
  }

  .testimonials {
    padding: 2rem 0;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .user-details h4 {
    font-size: 1rem;
  }

  .user-details h5 {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    width: 260px;
  }

  .testimonials-grid {
    gap: 1rem;
  }

  .avatar-circle {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .rating {
    font-size: 1rem;
  }
}

/* Pause animation on hover */
.testimonials-grid:hover {
  animation-play-state: paused;
}

/* Add smooth transition for hover effects */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Company Info Styles */
.company-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid #eee;
}

.company-details h3 {
  color: #1a1a2e;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.company-details p {
  color: #666;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-icon:hover img {
  opacity: 1;
}

/* Footer Links Styles */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #eee;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #1a1a2e;
}

.copyright {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .navbar {
    padding: 1rem 2rem;
  }

  .hero {
    padding: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .offer-banner {
    gap: 10px;
    text-align: center;
  }
  .pricing {
    padding: 2rem;
  }

  .price-card {
    min-width: 100%;
  }

  .features-section {
    padding: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .time-running h2 {
    font-size: 1.5rem;
  }

  .time-box {
    padding: 0.8rem 1.5rem;
    min-width: 80px;
  }

  .time-box .time {
    font-size: 1.5rem;
  }

  .task-delegation {
    padding: 2rem;
  }

  .task-delegation h2 {
    font-size: 2rem;
  }

  .task-feature-item {
    padding: 0.8rem;
  }

  .value-worth h3 {
    font-size: 1.5rem;
  }

  .crm-section {
    padding: 2rem;
  }

  .crm-section h2 {
    font-size: 2rem;
    color: white;
  }

  .crm-feature-item {
    padding: 0.8rem;
  }

  .crm-section .value-worth h3 {
    font-size: 1.5rem;
  }

  .leave-section {
    padding: 2rem;
  }

  .leave-section h2 {
    font-size: 2rem;
  }

  .leave-feature-item {
    padding: 0.8rem;
  }

  .leave-section .value-worth h3 {
    font-size: 1.5rem;
  }

  .attendance-section {
    padding: 2rem;
  }

  .attendance-section h2 {
    font-size: 2rem;
  }

  .timing-text {
    font-size: 1.2rem;
  }

  .attendance-feature-item {
    padding: 0.8rem;
  }

  .attendance-section .value-worth h3 {
    font-size: 1.5rem;
  }

  .testimonials-section {
    padding: 2rem;
  }

  .testimonials-slider {
    padding: 0 2rem;
  }

  .custom-nav {
    width: calc(100% + 4rem);
    left: -2rem;
  }

  .custom-prev,
  .custom-next {
    width: 36px;
    height: 36px;
  }

  .company-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .task-content {
    flex-direction: column;
  }

  .task-features {
    order: 1;
  }

  .task-image {
    order: 0;
    max-width: 300px;
  }

  .right-features {
    order: 2;
  }

  .crm-content {
    flex-direction: column;
  }

  .crm-features {
    order: 1;
  }

  .crm-image {
    order: 0;
    max-width: 300px;
  }

  .crm-features.right-features {
    order: 2;
  }

  .leave-content {
    flex-direction: column;
  }

  .leave-features {
    order: 1;
  }

  .leave-image {
    order: 0;
    max-width: 300px;
  }

  .leave-features.right-features {
    order: 2;
  }

  .attendance-content {
    flex-direction: column;
  }

  .attendance-features {
    order: 1;
  }

  .attendance-image {
    order: 0;
    max-width: 300px;
  }

  .attendance-features.right-features {
    order: 2;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 30vw;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.checkout-container {
  background: white;
  width: 90%;
  max-width: 1000px;
  border-radius: 10px;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}

.checkout-steps {
  display: flex;
  margin-bottom: 2rem;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 30px;
  height: 30px;
  background: #000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.country-code {
  width: 100px;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn-back,
.btn-next {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-next {
  background: #000;
  color: white;
}

.btn-back {
  background: #f0f0f0;
}

/* Product Selection Styles */
.product-header {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.product-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.product-selection {
  margin: 2rem 0;
}

.product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
}

.quantity-control input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.3rem;
}

/* Order Summary Styles */
.order-summary {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  margin: 2rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.summary-row.total {
  border-top: 2px solid #ddd;
  margin-top: 1rem;
  padding-top: 1rem;
  font-weight: bold;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: #00c853;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* Bonus Section Styles */
.bonus-section {
  margin-top: 2rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.bonus-header {
  background: #ff4444;
  color: white;
  padding: 1rem;
  text-align: center;
}

.bonus-content {
  padding: 1rem;
}

.bonus-progress {
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  margin: 1rem 0;
  position: relative;
}

.bonus-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #00c853;
  border-radius: 5px;
}

.required {
  color: red;
}

/* Add testimonials styles to style.css */
.section-title {
  text-align: center;
  color: #1a73e8;
  font-size: 2rem;
  margin-bottom: 3rem;
  background: #fff;
  padding: 0.5rem 1rem;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

/* Hero Section Updates */

.hero-image img {
  height: 400px;
}

/* Logo Update */
.logo img {
  width: 125px;
}

/* Subscription Toggle Updates */
.subscription-options {
  height: 4rem;
}

.sub-btn.active {
  background: linear-gradient(to right, #297386, #339699, #78c48f);
}

/* Offer Banner Updates */
.freedom-offer-btn {
  height: 50px;
  width: 315px;
  font-size: large;
}

/* Task Image Updates */
.task-image {
  width: fit-content;
  padding: 2px;
}

.task-image img {
  max-width: 555px;
}

/* CRM Image Updates */
.crm-image img {
  width: 300px;
}

/* Testimonials Grid Update */
.testimonials-grid {
  width: 30vw;
}

/* Feature Item Background */
.task-feature-item {
  background-color: #f4f4f4;
}

/* CRM Section Color */
.crm-section h2 {
  color: white;
}

/* Attendance Section Color */
.attendance-section h2 {
  color: white;
}

@media (max-width: 768px) {
  .crm-section h2 {
    color: white;
  }
}

/* Center the freedom offer button in all sections except offer banner */
.value-worth {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Style for freedom offer button in sections (not in offer banner) */
.value-worth .freedom-offer-btn {
  height: 50px;
  width: 315px;
  margin: 0 auto;
  position: relative;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

/* Keep offer banner button styles separate */
.offer-banner .freedom-offer-btn {
  height: 50px;
  width: 315px;
  position: relative;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

/* Animation for both buttons */
.freedom-offer-btn:hover {
  animation: sh0 0.5s ease-in-out both;
}

/* Responsive styles */
@media (max-width: 768px) {
  .value-worth .freedom-offer-btn,
  .offer-banner .freedom-offer-btn {
    width: 280px;
    height: 60px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .value-worth .freedom-offer-btn,
  .offer-banner .freedom-offer-btn {
    width: 250px;
    height: 50px;
    font-size: 0.8rem;
  }
}

/* Mobile Responsive Styles (0-480px) */
@media screen and (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 15px;
  }

  .logo img {
    width: 100px;
  }

  .button {
    --width: 80px;
    --height: 30px;
  }

  /* Hero Section */
  .hero-content {
    padding: 1rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-subtitle h2 {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-image img {
    height: auto;
    max-width: 100%;
  }

  /* Subscription Toggle */
  .subscription-toggle {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .sub-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  /* Pricing Cards */
  .pricing-cards {
    padding: 1rem;
    gap: 1rem;
  }

  .price-card {
    padding: 1rem;
  }

  .price-card h3 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .features li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }

  /* Features Section */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0rem;
  }

  .feature-card {
    padding: 0.75rem;
  }

  .feature-icon {
    font-size: 1.5rem;
  }

  /* Time Running Section */
  .time-running h2 {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .time-box {
    padding: 0.5rem;
    min-width: 60px;
  }

  .time {
    font-size: 1.25rem;
  }

  /* Task, CRM, Leave Sections */
  .task-content,
  .crm-content,
  .leave-content {
    padding: 1rem;
  }

  .task-features,
  .crm-features,
  .leave-features {
    padding: 0;
  }

  .task-feature-item,
  .crm-feature-item,
  .leave-feature-item {
    padding: 0.75rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1rem;
    margin: 0.5rem;
    
  }
  .testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 1rem;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1350% - 2rem));
    }
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  /* Offer Banner */
  .offer-banner {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .timer {
    font-size: 0.85rem;
  }

  .freedom-offer-btn {
    width: 200px;
    height: 40px;
    font-size: 0.9rem;
  }

  /* Footer */
  .footer-content {
    padding: 1rem;
    gap: 1rem;
    margin-bottom: 10px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    font-size: 1.1rem;
  }

  .copyright {
    font-size: 0.75rem;
  }
}

/* Additional Mobile Optimizations */
@media screen and (max-width: 360px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .price-card {
    padding: 0.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .time-box {
    min-width: 50px;
  }
}

/* Tablet & Large Smartphone Responsive Styles (481px-768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
  /* Navbar */
  .navbar {
    padding: 0.75rem 1.5rem;
  }

  .logo img {
    width: 120px;
  }

  /* Hero Section */
  .hero-content {
    padding: 2rem;
    gap: 2rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .hero-subtitle h2 {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
  }

  .hero-image img {
    height: auto;
    max-width: 90%;
    margin: 0 auto;
  }

  /* Subscription Toggle */
  .subscription-toggle {
    flex-direction: row;
    justify-content: center;
  }

  .sub-btn {
    min-width: 150px;
    padding: 0.875rem;
  }

  /* Pricing Cards */
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .price-card {
    padding: 1.5rem;
  }

  .price-card h3 {
    font-size: 1.25rem;
  }

  .price {
    font-size: 1.75rem;
  }

  /* Features Section */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-icon {
    font-size: 1.75rem;
  }

  /* Time Running Section */
  .time-running h2 {
    font-size: 1.5rem;
  }

  .countdown-timer {
    gap: 1rem;
  }

  .time-box {
    padding: 0.75rem;
    min-width: 80px;
  }

  .time {
    font-size: 1.5rem;
  }

  /* Task, CRM, Leave Sections */
  .task-content,
  .crm-content,
  .leave-content {
    padding: 1.5rem;
    flex-direction: row;
  }

  .task-features,
  .crm-features,
  .leave-features {
    padding: 1rem;
  }

  .task-feature-item,
  .crm-feature-item,
  .leave-feature-item {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .feature-text {
    flex: 1;
  }

  /* Testimonials */
  .testimonials-grid {
    width: 40vw;
  }

  .testimonial-card {
    padding: 1.5rem;
    margin: 0.75rem;
    
  }
  .testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 1rem;
    animation: scroll-left 25s linear infinite;
    white-space: nowrap;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-800% - 2rem));
    }
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Offer Banner */
  .offer-banner {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .timer {
    font-size: 1rem;
  }

  .freedom-offer-btn {
    width: 250px;
    height: 45px;
  }

  /* Footer */
  .footer-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
  }

  /* Value Worth Section */
  .value-worth {
    margin-top: 2rem;
  }

  .value-worth h3 {
    font-size: 1.25rem;
  }

  .value-worth .freedom-offer-btn {
    width: 280px;
  }

  /* Product Images */
  .task-image img {
    max-width: 100%;
  }

  .crm-image img {
    width: 250px;
  }

  /* Section Backgrounds */
  .task-feature-item {
    background-color: #f8f9fa;
  }

  /* Section Headers */
  .crm-section h2,
  .attendance-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

/* Large Tablet & Small Desktop Styles (769px-1279px) */
@media screen and (min-width: 769px) and (max-width: 1279px) {
  /* Navbar */
  .navbar {
    padding: 1rem 2rem;
  }

  .logo img {
    width: 140px;
  }

  /* Hero Section */
  .hero-content {
    padding: 3rem 2rem;
    gap: 3rem;
    align-items: center;
  }

  .hero-text {
    flex: 1;
    max-width: 600px;
  }

  .hero-text h1 {
    font-size: 2.75rem;
    line-height: 1.2;
  }

  .hero-subtitle h2 {
    font-size: 1.75rem;
    margin: 1.5rem 0;
  }

  .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
  }

  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    height: auto;
    max-width: 95%;
  }

  /* Subscription Toggle */
  .subscription-toggle {
    justify-content: center;
    gap: 1.5rem;
  }

  .sub-btn {
    min-width: 180px;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Pricing Cards */
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .price-card {
    padding: 2rem;
  }

  .price-card h3 {
    font-size: 1.4rem;
  }

  .price {
    font-size: 2rem;
  }

  /* Features Section */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-card {
    padding: 1.5rem;
  }

  /* Task, CRM, Leave Sections */
  .task-content,
  .crm-content,
  .leave-content {
    padding: 3rem 2rem;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .task-features,
  .crm-features,
  .leave-features {
    flex: 1;
  }

  .task-image,
  .crm-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .task-image img {
    max-width: 500px;
  }

  .crm-image img {
    width: 350px;
  }

  /* Testimonials */
  .testimonials {
    padding: 3rem 0;
  }
  .testimonials-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem 1rem;
    animation: scroll-left 25s linear infinite;
    white-space: nowrap;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-700% - 2rem));
    }
  }
  .testimonials-grid {
    width: 35vw;
  }

  .testimonial-card {
    padding: 2rem;
    margin: 1rem;
    
  }

  /* Offer Banner */
  .offer-banner {
    padding: 1.5rem 2rem;
  }

  .timer {
    font-size: 1.2rem;
  }

  .freedom-offer-btn {
    width: 300px;
    height: 50px;
    font-size: 1.1rem;
  }

  /* Footer */
  .footer-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
  }

  .social-icons {
    gap: 1.5rem;
  }

  .social-icons a {
    font-size: 1.4rem;
  }

  /* Value Worth Section */
  .value-worth {
    margin: 3rem auto;
    max-width: 1200px;
  }

  .value-worth h3 {
    font-size: 1.5rem;
  }

  /* Section Headers */
  .crm-section h2,
  .attendance-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Time Running Section */
  .time-running {
    padding: 2rem;
  }

  .time-running h2 {
    font-size: 1.75rem;
  }

  .countdown-timer {
    gap: 1.5rem;
  }

  .time-box {
    padding: 1rem;
    min-width: 100px;
  }

  .time {
    font-size: 1.75rem;
  }
}