/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f8f8f8, var(--light-gray));
  padding: 0;
  height: clamp(400px, 70vh, 500px);
}

.carousel-container {
  position: relative;
  height: 100%;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 10%);
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-content {
  flex: 1;
  max-width: 50%;
  padding-right: clamp(20px, 5vw, 40px);
}

.slide-content h1 {
  margin-bottom: clamp(10px, 3vw, 20px);
  color: var(--primary-color);
  line-height: 1.2;
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--secondary-color);
  margin-bottom: clamp(20px, 5vw, 30px);
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-logos-collage {
  position: relative;
  width: clamp(200px, 40vw, 300px);
  height: clamp(200px, 40vw, 300px);
}

.app-logos-collage .app-logo {
  position: absolute;
  width: clamp(120px, 25vw, 180px);
  height: clamp(120px, 25vw, 180px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.app-logos-collage .caledge-logo {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.app-logos-collage .notex-logo {
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
}

.large-logo {
  width: clamp(150px, 30vw, 250px) !important;
  height: clamp(150px, 30vw, 250px) !important;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}

.carousel-prev,
.carousel-next {
  background-color: var(--background-color);
  border: none;
  width: clamp(30px, 8vw, 40px);
  height: clamp(30px, 8vw, 40px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-color);
  color: white;
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: clamp(8px, 2vw, 12px);
  height: clamp(8px, 2vw, 12px);
  border-radius: 50%;
  background-color: var(--medium-gray);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Featured App Section */
.featured-app {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.featured-app-content {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: clamp(20px, 5vw, 40px);
  box-shadow: var(--card-shadow);
}

.featured-app-image {
  flex-shrink: 0;
  position: relative;
}

.featured-app-image .app-logo {
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--primary-color);
  color: white;
  padding: clamp(5px, 2vw, 8px) clamp(10px, 3vw, 15px);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.featured-badge .material-symbols-rounded {
  font-size: 1.2rem; /* Adjusted size for badge icon */
}

/* Additional styles for Font Awesome icons */
.featured-badge i.fas {
  font-size: 1.2rem;
}

.featured-app-info {
  flex-grow: 1;
}

.featured-app-info h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 3vw, 20px);
  margin: 25px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--background-color);
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-3px);
}

.feature .material-symbols-rounded {
  color: var(--primary-color);
  font-size: 1.5rem; /* Increased size for feature icons */
}

/* Additional styles for Font Awesome icons */
.feature i.fas {
  color: var(--primary-color);
  font-size: 1.5rem;
  width: 24px;
  text-align: center;
  margin-right: 5px;
}

.featured-app-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.featured-app-cta .btn-primary {
  max-width: 200px;
}

.featured-app-cta .secondary-links {
  display: flex;
  gap: 10px;
}

/* App Cards Section */
.app-cards {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 40px);
  justify-content: center;
  padding: 20px 0;
}

/* Enhanced Card Design */
.card {
  background-color: var(--background-color);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: clamp(20px, 5vw, 40px) clamp(15px, 3vw, 30px);
  width: 100%;
  max-width: 400px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.card:hover:before {
  opacity: 1;
}

.card-icon {
  margin-bottom: clamp(20px, 5vw, 30px);
  text-align: center;
  height: clamp(80px, 15vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover .app-logo {
  transform: scale(1.05);
}

.card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
}

.card p {
  margin-bottom: 25px;
  color: var(--secondary-color);
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

.card-features .material-symbols-rounded {
  color: var(--primary-color);
  font-size: 1.2rem; /* Increased size for card feature icons */
  width: 20px;
  text-align: center;
}

/* Additional styles for Font Awesome icons */
.card-features i.fas {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

/* Enhanced Card Links */
.card-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.secondary-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

/* Newsletter Section */
.newsletter {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 60px);
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: clamp(20px, 5vw, 40px);
  box-shadow: var(--card-shadow);
}

.newsletter-info {
  flex: 1;
}

.newsletter-info h2 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.newsletter-info p {
  color: var(--secondary-color);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.newsletter-form {
  flex: 1;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group input {
  flex: 1;
  padding: clamp(10px, 2vw, 12px) clamp(12px, 2.5vw, 15px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-disclaimer {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--dark-gray);
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--background-color) 100%);
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(40px, 10vw, 80px);
  height: 4px;
  background-color: var(--primary-color);
}

.hero p {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--secondary-color);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 30px;
}

/* App Detail Pages */
.app-hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--background-color) 100%);
  padding: clamp(40px, 8vw, 80px) 0;
  position: relative;
}

.app-hero-content {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}

.app-hero-icon {
  flex-shrink: 0;
}

.app-hero-icon .app-logo {
  width: clamp(120px, 25vw, 180px);
  height: clamp(120px, 25vw, 180px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.app-hero-text {
  flex-grow: 1;
}

.app-hero-text h1 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.app-hero-text p {
  color: var(--secondary-color);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
}

.app-details {
  padding: var(--section-spacing) 0;
}

.app-details .container {
  display: flex;
  gap: clamp(30px, 5vw, 60px);
}

.app-description {
  flex: 2;
}

.app-description h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.app-description p {
  margin-bottom: 25px;
  color: var(--secondary-color);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.app-description h3 {
  margin: 30px 0 20px;
  color: var(--primary-color);
}

.feature-list {
  margin-left: 20px;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-list li .material-symbols-rounded {
  color: var(--primary-color);
  margin-top: 5px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.app-card {
  flex: 1;
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: clamp(25px, 5vw, 40px);
  box-shadow: var(--card-shadow);
  max-width: 350px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.app-screenshots {
  margin: 30px 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.screenshot {
  text-align: center;
}

.screenshot img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.screenshot p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}

.testimonials {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.quote {
  font-style: italic;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.author {
  text-align: right;
  font-weight: 600;
  margin-bottom: 0;
}

/* Document Pages (Privacy Policy, Terms) */
.document {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.app-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--background-color);
  box-shadow: var(--card-shadow);
}

.app-nav-icon {
  flex-shrink: 0;
}

.app-nav-icon .app-logo {
  width: 60px;
  height: 60px;
}

.app-nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: flex-end;
}

.app-nav-links a {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-nav-links a .material-symbols-rounded {
  font-size: 18px;
}

.app-nav-links a:hover {
  background-color: var(--light-gray);
}

.app-nav-links a.active {
  background-color: var(--primary-color);
  color: white;
}

.document-header {
  text-align: center;
  margin-bottom: 50px;
  background-color: var(--background-color);
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.document-header h1 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.document-header h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.effective-date {
  color: var(--dark-gray);
  font-style: italic;
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--light-gray);
  border-radius: 20px;
  font-size: 0.9rem;
}

.document-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.policy-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-section h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h3 .material-symbols-rounded {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.policy-section p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--secondary-color);
}

.policy-section ul {
  margin: 15px 0 15px 20px;
  background-color: var(--light-gray);
  padding: 20px 20px 20px 40px;
  border-radius: 12px;
}

.policy-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
}

.policy-section ul li::marker {
  color: var(--primary-color);
  font-weight: bold;
}

.policy-section ul li strong {
  color: var(--primary-color);
}

/* Developer Section */
.developer-info {
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: var(--card-shadow);
}

.developer-info h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: inline-block;
}

.developer-info p {
  margin-bottom: 15px;
}

.developer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.developer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background-color: var(--background-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.developer-contact a:hover {
  background-color: var(--primary-color);
  color: white;
}

.developer-contact a .material-symbols-rounded {
  font-size: 1.2rem;
}

/* Additional styles for Font Awesome icons */
.info-icon i.fas {
  font-size: 2rem;
  color: white;
}

.contact-icon i.fas {
  font-size: 1.8rem;
  color: white;
}

/* App Showcase Styles */
.app-showcase {
  margin-top: clamp(25px, 5vw, 40px);
}

.showcase-app {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--background-color) 100%);
  border-radius: 20px;
  margin-bottom: clamp(25px, 5vw, 40px);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-app:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.showcase-app-content {
  display: flex;
  padding: clamp(30px, 6vw, 50px);
  position: relative;
}

.showcase-app-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-app-image {
  flex-shrink: 0;
  position: relative;
  margin-right: clamp(30px, 6vw, 60px);
  z-index: 1;
}

.showcase-app-image .app-logo {
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
  transition: transform 0.5s ease;
}

.showcase-app:hover .app-logo {
  transform: rotate(5deg) scale(1.05);
}

.showcase-app-info {
  flex-grow: 1;
  z-index: 1;
}

.showcase-app-info h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.showcase-app-actions {
  margin-top: clamp(25px, 5vw, 35px);
}

.showcase-app-actions .btn {
  min-width: clamp(150px, 30vw, 200px);
  padding: clamp(12px, 2.5vw, 15px) clamp(20px, 4vw, 30px);
  font-size: clamp(1rem, 2vw, 1.1rem);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #444 100%);
  transition: all 0.3s ease;
}

.showcase-app-actions .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Codorb Spotlight Section Styles */
.codorb-spotlight {
  padding: clamp(40px, 8vw, 80px) 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #222 100%);
  color: white;
  text-align: center;
}

.codorb-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 5vw, 40px);
}

.codorb-logo-large {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(120px, 25vw, 200px);
  height: clamp(120px, 25vw, 200px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.codorb-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: 10px;
}

.codorb-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

/* Story Section Styles */
.story-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-text h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: clamp(20px, 5vw, 40px);
  position: relative;
  padding-bottom: 15px;
}

.story-text h2:after {
  content: "";
  position: absolute;
  width: clamp(40px, 10vw, 80px);
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.story-text h3 {
  color: var(--primary-color);
  margin: clamp(20px, 5vw, 30px) 0 clamp(15px, 3vw, 20px);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.story-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--secondary-color);
  margin-bottom: clamp(15px, 3vw, 25px);
}

/* Mission Section Styles */
.mission-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--background-color);
  padding: clamp(30px, 6vw, 50px);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.mission-content h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: clamp(30px, 5vw, 40px);
  position: relative;
  padding-bottom: 15px;
}

.mission-content h2:after {
  content: "";
  position: absolute;
  width: clamp(40px, 10vw, 80px);
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mission-text p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--secondary-color);
  margin-bottom: clamp(15px, 3vw, 25px);
}

.mission-text p:first-child {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

/* Impact Section Styles */
.impact-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.impact-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 60px);
}

.impact-header h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.impact-header h2:after {
  content: "";
  position: absolute;
  width: clamp(40px, 10vw, 80px);
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.impact-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--secondary-color);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 5vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
  color: white;
  padding: clamp(30px, 6vw, 50px) clamp(20px, 4vw, 40px);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  opacity: 0.95;
}

/* Values Section Styles */
.values-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.values-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  width: 100%;
}

.values-section h2:after {
  content: "";
  position: absolute;
  width: clamp(40px, 10vw, 80px);
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.values-intro {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--secondary-color);
  margin-bottom: clamp(40px, 8vw, 60px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 5vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background-color: var(--background-color);
  padding: clamp(30px, 6vw, 50px) clamp(20px, 4vw, 30px);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
  border-top-color: var(--primary-color);
}

.value-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(70px, 12vw, 100px);
  height: clamp(70px, 12vw, 100px);
  background-color: var(--light-gray);
  border-radius: 50%;
  margin: 0 auto clamp(20px, 5vw, 30px);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-color);
}

.value-card h3 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-card p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: var(--secondary-color);
  margin-bottom: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .codorb-spotlight {
    padding: clamp(30px, 6vw, 50px) 0;
  }

  .story-section,
  .mission-section,
  .impact-section,
  .values-section {
    padding: clamp(30px, 6vw, 50px) 0;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-content {
    padding: clamp(20px, 4vw, 30px);
  }
}

@media (max-width: 576px) {
  .codorb-header h2 {
    font-size: 1.8rem;
  }

  .story-text h3 {
    font-size: 1.4rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .value-icon {
    font-size: 2rem;
  }
}

/* Responsive adjustments for document pages */
@media (max-width: 768px) {
  .app-navigation {
    flex-direction: column;
    align-items: flex-start;
  }

  .document-content {
    padding: 25px 20px;
  }

  .app-nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .app-nav-links a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .document-header h1 {
    font-size: 1.8rem;
  }

  .document-header h2 {
    font-size: 1.3rem;
  }

  .policy-section h3 {
    font-size: 1.3rem;
  }
}

/* Mobile and Small Screen Enhancements */
@media (max-width: 768px) {
  /* Header and Navigation */
  header .container {
    flex-direction: column;
    padding: 15px;
    position: relative;
  }

  .logo {
    margin-bottom: 10px;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    text-align: center;
    padding: 12px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }

  .menu-overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
  }

  /* App Hero Section */
  .app-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .app-hero-icon {
    margin-bottom: 20px;
  }

  /* App Details Section */
  .app-details .container {
    flex-direction: column;
  }

  .app-description {
    width: 100%;
  }

  .app-card {
    width: 100%;
    max-width: 100%;
    position: static;
    margin-top: 30px;
  }

  /* Screenshots Grid */
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot img {
    max-width: 80%;
    margin: 0 auto 10px;
  }

  /* Featured App Section */
  .featured-app-content {
    flex-direction: column;
    text-align: center;
  }

  .featured-app-image {
    margin-bottom: 20px;
  }

  /* Newsletter Section */
  .newsletter-content {
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group .btn {
    width: 100%;
    margin-top: 10px;
  }

  /* Footer Adjustments */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    width: 100%;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .app-hero-text h1 {
    font-size: 1.5rem;
  }

  .app-hero-text p {
    font-size: 0.95rem;
  }

  .app-description h2 {
    font-size: 1.4rem;
  }

  .app-description h3 {
    font-size: 1.2rem;
  }

  .feature-list li {
    gap: 10px;
  }

  .feature-list li span {
    font-size: 0.9rem;
  }
}

/* Info Page Styles - Updated */
.info-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.info-card {
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: clamp(25px, 5vw, 40px);
  margin-bottom: clamp(20px, 5vw, 40px);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin: 0 auto clamp(20px, 5vw, 30px);
  font-size: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-icon i.fas {
  font-size: 1.8rem;
  color: white;
}

.info-card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.info-card p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
}

.values-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--background-color);
  padding: clamp(10px, 3vw, 15px) clamp(15px, 3vw, 20px);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.values-list li:hover {
  transform: translateX(10px);
}

.values-list li i.fas {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Contact Section Styles - Updated */
.contact-section {
  padding: var(--section-spacing) 0;
  background-color: var(--light-gray);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 30px);
  justify-content: center;
}

.contact-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: var(--background-color);
  padding: clamp(20px, 4vw, 30px);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin: 0 auto clamp(15px, 3vw, 20px);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.contact-icon i.fas {
  font-size: 1.5rem;
  color: white;
}

.contact-card h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-card p {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.contact-card a {
  display: inline-block;
  font-weight: 500;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.contact-social .social-icon {
  width: clamp(35px, 6vw, 40px);
  height: clamp(35px, 6vw, 40px);
  background-color: var(--light-gray);
  color: var(--primary-color);
}

/* Feedback Form Styles - Updated */
.feedback-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-color);
}

.feedback-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light-gray);
  padding: clamp(25px, 5vw, 40px);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.feedback-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.feedback-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-color);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: clamp(10px, 2vw, 12px) clamp(12px, 2.5vw, 15px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.feedback-form button {
  margin-top: 10px;
}
