/* assets/css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e1e2f;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}



.btn-primary {
  background: #242B46;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: #0052cc;
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 2px solid #242B46;
  color: #242B46;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline:hover {
  background: #242B46;
  color: white;
}

.hero {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
}

.hero-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #0A2540, #242B46);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #4a5568;
  margin: 20px 0 32px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.bottle-group {
  flex: 1;
  text-align: center;
}

.bottle-group img {
    border-radius: 20px;
  width: 100%;
  max-width: 650px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.explore-down {
  color:red;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

.section-title span {
  background: linear-gradient(120deg, #242B46, #0A2540);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.before-after-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
  border-radius: 48px;
  padding: 40px;
}

.image-comparison {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  cursor: ew-resize;
  background: #e2e8f0;
}

.image-comparison img {
  width: 100%;
  display: block;
  pointer-events: none;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.comparison-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #242B46;
  border-radius: 50%;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  z-index: 20;
  box-shadow: 0 0 20px rgba(0,102,255,0.5);
  transition: 0.2s;
}

.comparison-handle:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.05);
}

.before-after-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 20px;
}

.before-label, .after-label {
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 30px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.before-label {
  color: #e74c3c;
  border-left: 3px solid #e74c3c;
}

.after-label {
  color: #242B46;
  border-right: 3px solid #242B46;
}

.happy-clients {
  background: linear-gradient(135deg, #0A2540, #242B46);
  color: white;
}

.happy-clients .section-title span {
  background: linear-gradient(120deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#services{
     background: linear-gradient(135deg, #0A2540, #242B46);
  color: white;
    
}
.services-cards{
    color:#1e1e2f
}

.clients-grid, .services-cards, .why-grid, .product-cards, .testimonials-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  /*color:#1e1e2f*/
 
}

.client-card, .service-card, .why-card, .product-card, .testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.2);
}

.client-card:hover, .service-card:hover, .why-card:hover, .product-card:hover {
  transform: translateY(-8px);
}

.service-card, .why-card, .product-card, .testimonial-card {
  background: white;
  border: 1px solid #eef2ff;
}

.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid white;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: #FFB800;
  margin-bottom: 15px;
}

.business-name {
  display: inline-block;
 background: linear-gradient(135deg, #0A2540, #242B46);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 10px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
 background: linear-gradient(135deg, #0A2540, #242B46);
  color: white;
  padding: 50px;
  border-radius: 32px;
}

.founder-story {
  background: linear-gradient(135deg, #f0f6ff, #ffffff);
}

.founder-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.founder-image {
  flex: 1;
  text-align: center;
}

.founder-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.founder-story-content {
  flex: 1;
}

.experience-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.badge {
  background: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #242B46;
}

.service-card i, .why-card i {
  font-size: 2.5rem;
  color: #242B46;
  margin-bottom: 20px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #242B46, #0A2540);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8faff;
  margin-bottom: 16px;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
}

.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  color: #4a5568;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 150px;
  padding-top: 16px;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

input, textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
}

.form-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-icons-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8faff;
  border-radius: 16px;
}

.form-icons-row i {
  font-size: 1.8rem;
  color: #242B46;
}

footer {
  background: #0A2540;
  color: white;
  padding: 48px 24px 24px;
  text-align: center;
}

.footer-icons a {
  color: white;
  text-decoration: none;
}

.footer-icons i {
  font-size: 1.8rem;
  margin: 0 12px;
  transition: 0.2s;
  cursor: pointer;
}

.footer-icons a:hover i {
  color: #242B46;
  transform: scale(1.1);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(37,211,102,0.3);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 968px) {
  .hero-body {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .founder-grid {
    flex-direction: column;
    text-align: center;
  }
  .form-container {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .before-after-container {
    padding: 20px;
  }
  .comparison-handle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .logo img {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 200px;
  }
}