/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.5;
  background-color: var(--bg-color);
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}



/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--gray-100);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-header.light {
  color: var(--white);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-hover);
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--primary-color);
}

/* ===== SLIDER SECTION ===== */
.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px hsl(270 73% 35%/0.2);
  background-color: #dfa8ff;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  background: linear-gradient(
    to right,
    rgba(240, 240, 240, 0.8),
    rgba(255, 255, 255, 0.8)
  );
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 220px;
  animation: fadeIn 0.5s ease-out;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white" opacity="0.3"/><path d="M0 0L100 100M100 0L0 100" stroke="lightgray" stroke-width="0.5" opacity="0.2"/></svg>');
  opacity: 0.1;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
}

.price-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--primary-color);
  flex: 1;
}

.only-text {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: -5px;
}

.price {
  font-weight: 700;
}

.product-image {
  position: relative;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.product-img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.premium-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  transform: rotate(10deg);
  box-shadow: var(--shadow-sm);
}

.product-name {
  flex: 1;
  text-align: right;
}

.product-name h2 {
  color: var(--primary-hover);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

 .slider .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-hover);
  border: none;
  color: var(--bg-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0.7;
}

.slider .nav-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  opacity: 1;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: rgba(0, 102, 204, 0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--color-blue);
  transform: scale(1.2);
}

.slide:hover .product-img {
  transform: scale(1.05);
}

/* ===== MISSION SECTION ===== */
.mission-section {
  background-color: var(--gray-100);
}

.mission-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.mission-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  background-color: var(--primary-color);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.card-description {
  color: var(--gray-600);
}

/* ===== PROJECTS/SERVICES SECTION ===== */
.projects-section {
  background-color: var(--white);
}

.title {
  text-align: center;
  margin-bottom: 3rem;
}

.title h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-hover);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease;
  padding: 1.5rem;
}

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


.label {
  position: absolute;
  top: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  pointer-events: none;
}

.before-label {
  left: 1rem;
}

.after-label {
  right: 1rem;
}

.details {
  margin-top: 16px;
}

.details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
  transition: var(--transition);
}

.service-card:hover .details h3 {
  color: var(--primary-color);
}

.details p {
  color: var(--gray-600);
  margin: 8px 0;
}

.details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--gray-800);
}

.details ul {
  margin: 8px 0;
}

.details ul li {
  display: flex;
  align-items: center;
  margin: 4px 0;
  color: var(--gray-700);
}

.details ul li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 14px;
}

/* ===== PRICING SECTION ===== */

/* ===== STATS/BRAND LOGO SECTION ===== */
.stats-section {
  padding: 0.5rem 0;
  color: var(--white);
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-card {
  text-align: center;

}

.stat-logo {
  max-width: 90px;
  width: 75px;
  height: auto;
  margin-bottom: 10px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: var(--gray-100);
  padding: 5rem 0;
}

.testimonial-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 12px;
  padding: 4rem 3rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: 0;
  left: 3rem;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-700, #374151);
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.author-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gray-100, #f3f4f6);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900, #111827);
  margin-bottom: 0.375rem;
}

.author-position {
  font-size: 0.875rem;
  color: var(--gray-600, #4b5563);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.testimonial-dots .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--gray-300, #d1d5db);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background-color: var(--primary-color, #3b82f6);
  transform: scale(1.3);
}

.testimonial-dots .dot:hover {
  background-color: var(--primary-color, #3b82f6);
  opacity: 0.7;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.slider .nav-btn {
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--gray-700, #374151);
  font-size: 1.125rem;
}

.slider .nav-btn:hover {
  background: var(--primary-color, #3b82f6);
  color: var(--white);
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonial-container {
    margin: 0 1rem;
    padding: 3.5rem 1.5rem 2.5rem;
  }
  
  .quote-icon {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    font-size: 1.25rem;
  }
  
  .testimonial-quote {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .author-info {
    text-align: center;
  }
  
  .author-image {
    width: 4rem;
    height: 4rem;
  }
  
  .testimonial-slider {
    min-height: 320px;
  }
  
  .slider .nav-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
  
  .testimonial-nav {
    position: relative;
    top: auto;
    transform: none;
    margin-top: 2rem;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-container {
    padding: 3rem 1rem 2rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .testimonial-slider {
    min-height: 350px;
  }
}

/* CSS Variables */

/* ===== CTA SECTION ===== */


/* ===== BLOG SECTION ===== */
.blog-section {
  background-color: var(--light-color);
  position: relative;
  padding-block: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.blog-post {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

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

.featured-post {
  border-top: 4px solid var(--primary-color);
}

.post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-post:hover .post-image img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--light-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.post-content {
  padding: 25px;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-light);
}

.post-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-post:hover .post-title {
  color: var(--primary-color);
}

.post-excerpt {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.post-link {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.post-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.post-link:hover {
  color: var(--primary-hover);
}

.post-link:hover i {
  transform: translateX(5px);
}

.blog-cta {
  text-align: center;
  margin-top: 50px;
}

.view-all-button {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.view-all-button:hover {
  background-color: var(--primary-hover);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}


/* ===== CONTACT FORM SECTION ===== */
.contact-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info Styles */


.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-details {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-text p {
  color: var(--text-light);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contact Form Styles */
.contact-form-container {
  background: var(--white);
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.free-trial-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  .service-categories{
    background-color: #fff;
    .service-category{
      background-color: #fff !important;
    }
  }
}

.index-page .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(60, 9, 108, 0.1);
}

.form-hint {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Service Selection Styles */
.service-selection {
  margin-bottom: 2rem;
}

.service-categories {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-category h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.service-option {
  position: relative;
}

.service-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.service-label {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--gray-100);
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
}

.service-label:hover {
  border-color: var(--primary-color);
  background: var(--primary-color-light);
  color: var(--white);
}

.service-option input[type="checkbox"]:checked + .service-label {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.service-name {
  font-weight: 500;
}

.selected-count {
  padding: 0.75rem 1rem;
  background: var(--success-light);
  color: var(--success-color);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--success-color);
}

/* Upload Section Styles */
.upload-section {
  margin-bottom: 2rem;
}

.upload-area {
  border: 2px dashed var(--gray-400);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  background: var(--gray-50);
}

.upload-area:hover {
  border-color: var(--primary-color);
  background: var(--gray-300);
}

.upload-area i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.upload-area h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.upload-area p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.upload-area.drag-over {
  border-color: var(--primary-color);
  background: var(--primary-color-light);
}

.file-info {
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--success-light);
  color: var(--success-color);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  display: none;
}

.file-info.show {
  display: block;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
  .contact-wrapper {
    gap: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .service-options {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
}

/* Mobile Devices (480px - 768px) */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-info {
    padding: 0;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .contact-icon {
    align-self: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .upload-area {
    padding: 2rem 1.5rem;
  }
  
  .upload-area i {
    font-size: 2.5rem;
  }
  
  .upload-area h3 {
    font-size: 1.125rem;
  }
}

/* Small Mobile Devices (below 480px) */
@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 0;
  }
  
  .contact-wrapper {
    gap: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .contact-form-container {
    padding: 1.25rem;
    border-radius: var(--border-radius);
  }
  
  .service-categories {
    gap: 1rem;
  }
  
  .service-category h4 {
    font-size: 0.875rem;
  }
  
  .upload-area {
    padding: 1.5rem 1rem;
  }
  
  .upload-area i {
    font-size: 2rem;
  }
  
  .upload-area h3 {
    font-size: 1rem;
  }
  
  .upload-area p {
    font-size: 0.875rem;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }
  
  .submit-btn {
    padding: 0.875rem 1.5rem;
  }
}

/* Extra Small Devices (below 360px) */
@media (max-width: 360px) {
  .contact-section {
    padding: 1.5rem 0;
  }
  
  .contact-form-container {
    padding: 1rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .service-label {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }
  
  .upload-area {
    padding: 1.25rem 0.75rem;
  }
}

/* ===== JAVASCRIPT ENHANCEMENTS ===== */
/* Add these styles for dynamic interactions */
.service-option input[type="checkbox"]:focus + .service-label {
  box-shadow: 0 0 0 3px rgba(60, 9, 108, 0.1);
}

.upload-area.active {
  border-color: var(--success-color);
  background: var(--success-light);
}

/* Loading state for submit button */
.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-item {
  opacity: 0;
  transform: translateY(30px);
}

/* ===== RESPONSIVE STYLES ===== */

/* Large desktop screens */
@media (min-width: 1400px) {
  .slide {
    height: 250px;
  }

  .price {
    font-size: 3rem;
  }

  .product-name h2 {
    font-size: 2.5rem;
  }

  .premium-badge {
    width: 70px;
    height: 70px;
    font-size: 0.8rem;
  }
}

/* Medium desktop screens */
@media (max-width: 1200px) {
  .product-info {
    max-width: 800px;
  }
}

/* Small desktop and tablet landscape */
@media (max-width: 992px) {
  .slide {
    height: 180px;
  }

  .price {
    font-size: 2.2rem;
  }

  .product-name h2 {
    font-size: 1.8rem;
  }

  .premium-badge {
    width: 50px;
    height: 50px;
    font-size: 0.6rem;
  }


  .services-grid,
  .pricing-cards,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .slide {
    height: 500px;
  }

  .product-info {
    flex-direction: column;
    text-align: center;
  }

  .price-tag,
  .product-name {
    flex: none;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .product-image {
    flex: none;
    order: 2;
    margin: 15px 0;
  }

  .price-tag {
    order: 1;
  }

  .product-name {
    order: 3;
  }

  .price-tag {
    align-items: center;
  }

  .product-name h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .premium-badge {
    top: -10px;
    right: -10px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .services-grid,
  .pricing-cards,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Large phones */
@media (max-width: 576px) {
  .slide {
    height: 420px;
  }

  .price {
    font-size: 2rem;
  }

  .only-text {
    font-size: 0.9rem;
  }

  .product-name h2 {
    font-size: 1.5rem;
  }

  .slider .nav-btn {
    transform: translateY(0);
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .premium-badge {
    width: 45px;
    height: 45px;
    font-size: 0.55rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .slide {
    height: 350px;
  }

  .slide-content {
    padding: 10px;
  }

  .price {
    font-size: 1.8rem;
  }

  .product-name h2 {
    font-size: 1.3rem;
  }

  .premium-badge {
    width: 40px;
    height: 40px;
    font-size: 0.5rem;
  }

  .dots {
    bottom: 10px;
  }

  .dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Special case for very small height screens (landscape on phones) */
@media (max-height: 500px) and (orientation: landscape) {
  .slide {
    height: 200px;
  }

  .product-info {
    flex-direction: row;
  }

  .price-tag,
  .product-name {
    flex: 1;
  }

  .price-tag {
    text-align: left;
    align-items: flex-start;
  }

  .product-name {
    text-align: right;
  }

  .product-image {
    flex: 2;
    order: 2;
  }

  .premium-badge {
    width: 40px;
    height: 40px;
    font-size: 0.5rem;
  }
}

/* Desktop specific styles */
@media (min-width: 992px) {
  .mission-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr 1.2fr;
  }

  .contact-info .section-header {
    text-align: left;
  }

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





        .about-page .clients-section {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .about-page .clients-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #4a90e2, #50c878, #ff6b6b);
        }

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

        .about-page .clients-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
        }

        .about-page .clients-section h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #4a90e2, #50c878);
            border-radius: 2px;
        }

        .about-page .clients-section > .container > p {
            text-align: center;
            max-width: 700px;
            margin: 2rem auto 0;
            font-size: 1.1rem;
            color: #555;
        }

        .about-page .client-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .about-page .client-logo {
            width: 180px;
            height: 100px;
            background: #fff;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            transition: all 0.4s ease;
            filter: grayscale(100%);
            opacity: 0.8;
            position: relative;
            overflow: hidden;
        }

        .about-page .client-logo::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .about-page .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .about-page .client-logo:hover::before {
            left: 100%;
        }

        .about-page .client-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .about-page .client-logo:hover img {
            transform: scale(1.05);
        }

        /* Animation for logos on load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 0.8;
                transform: translateY(0);
            }
        }

        .about-page .client-logo {
            animation: fadeInUp 0.6s ease forwards;
        }

        .about-page .client-logo:nth-child(2) {
            animation-delay: 0.1s;
        }

        .about-page .client-logo:nth-child(3) {
            animation-delay: 0.2s;
        }

        .about-page .client-logo:nth-child(4) {
            animation-delay: 0.3s;
        }

        .about-page .client-logo:nth-child(5) {
            animation-delay: 0.4s;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .about-page .client-logos {
                gap: 2rem;
            }
            
            .about-page .client-logo {
                width: 160px;
                height: 90px;
            }
        }

        @media (max-width: 768px) {
            .about-page .clients-section {
                padding: 3rem 0;
            }
            
            .about-page .clients-section h2 {
                font-size: 2rem;
            }
            
            .about-page .client-logos {
                gap: 1.5rem;
            }
            
            .about-page .client-logo {
                width: 140px;
                height: 80px;
                padding: 1rem;
            }
        }

        @media (max-width: 576px) {
            .about-page .client-logos {
                gap: 1rem;
            }
            
            .about-page .client-logo {
                width: 120px;
                height: 70px;
            }
            .hide-mobile{
              display: none;
            }
        }