
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(to right, #02242d, #0dc7c7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-accent {
  color: #a0ffff;
}

.text-accent2 {
  color: #e5354b;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1rem);
  margin-bottom: 2rem;
  opacity: 0.9;
}



.offer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-green {
  color: #10b981;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

.offer-text {
  font-size: 1.2rem;
  font-weight: 600;
}

.original-price {
    text-decoration: line-through;
    color: #a0ffff;
}

.cta-button {
  background: #e5354b;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
  background: rgba(229, 53, 75, 0.9);
  transform: scale(1.05);
}

.cta-button .icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-card {
  background: rgb(0 0 0 / 30%);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-image {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.hero-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #02242d;
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 32px;
  height: 32px;
  color: #e5354b;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #02242d;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e5354b;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
      height: 250px;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.service-features li:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #e5354b;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1rem;
}

.service-ideal {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.service-button {
  width: 100%;
  background: #e5354b;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.service-button:hover {
  background: rgba(229, 53, 75, 0.9);
}

.services-note {
    text-align: center;
    color: #e5354b;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #02242d;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-container {
  space-y: 1rem;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #02242d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #e5354b;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 1.5rem 0;
  color: #6b7280;
  line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
  padding: 80px 0;
  background: linear-gradient(to right, #02242d, #0dc7c7);
  color: white;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
    background: rgb(0 0 0 / 30%);
}

.badge:hover {

background: rgb(65 60 60 / 33%);

}

.badge-icon {
  width: 16px;
  height: 16px;
  color: #10b981;
  margin-right: 0.5rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.achievement-card {
  background: rgb(0 0 0 / 30%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
background: rgb(65 60 60 / 33%);
  transform: scale(1.05);
}

.achievement-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 1rem;
  color: #10b981;
}

.achievement-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.achievement-card p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.client-logos {
  text-align: center;
}

.client-logos p {
    color: #a0ffff;
    opacity: 1;
    margin-bottom: 2rem;
    font-size: 30px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.logo-placeholder {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: white;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.reason-card {
    background: white;
    border: 2px solid #d8d8d8;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 10px 50px 10px;
    height: 250px !important;
}

.reason-card:hover {
  transform: translateY(-8px);
  border-color: #0dc7c7;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.reason-icon {
  width: 32px;
  height: 32px;
  color: #e5354b;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
  transform: scale(1.1);
}

.reason-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #02242d;
  margin-bottom: 1rem;
}

.reason-card p {
  color: #6b7280;
  line-height: 1.6;
}

.cta-box {
    max-width: 800px;
    margin: 80px auto;
    background: linear-gradient(to right, #f3f3f3, #d6d6d6);
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    color: black;
}

.cta-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* About Team Section */
.about-team-section {
  padding: 80px 0;
  background: #f9fafb;
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.founder-profile {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.founder-header {
  background: linear-gradient(to right, #02242d, #0dc7c7);
  color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-avatar {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.founder-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.founder-info p {
  opacity: 0.8;
}

.founder-quote {
  background: rgba(2, 36, 45, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem;
}

.founder-quote p {
  font-style: italic;
  font-size: 1.1rem;
  color: #02242d;
  line-height: 1.6;
}

.founder-details {
  padding: 0 1.5rem 1.5rem;
}

.founder-details h4 {
  font-weight: 600;
  color: #02242d;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.founder-details p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: #f3f4f6;
  color: #02242d;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.team-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(2, 36, 45, 0.05);
  border-radius: 8px;
}

.stat-icon {
  width: 24px;
  height: 24px;
  color: #e5354b;
  margin: 0 auto 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #02242d;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
}

.locations {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.locations h4 {
  font-weight: 600;
  color: #02242d;
  margin-bottom: 1rem;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-tag {
  background: #0dc7c7;
  color: #02242d;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.location-icon {
  width: 12px;
  height: 12px;
}

.why-work-with-us {
  background: linear-gradient(to right, #02242d, #0dc7c7);
  color: white;
  border-radius: 12px;
  padding: 1.5rem;
}

.why-work-with-us h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-work-with-us ul {
  list-style: none;
}

.why-work-with-us li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

.why-work-with-us li:before {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1rem;
}

/* Target Audience Section */
.target-audience-section {
  padding: 80px 0;
  background: white;
}

.target-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.target-card {
    background: white;
    border-left: 4px solid #e5354b;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 30px 10px 50px 10px;
    height: 300px !important;
}

.target-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.target-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.target-icon {
  width: 32px;
  height: 32px;
  color: #e5354b;
  background: rgba(229, 53, 75, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.target-content {
  flex-grow: 1;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.target-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #02242d;
  display: flex;
  align-items: flex-start;
}

.target-card p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.target-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.example-tag {
  background: rgba(13, 199, 199, 0.1);
  color: #02242d;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.target-cta {
       max-width: 800px;
    margin: 80px auto;
    background: linear-gradient(to right, #f3f3f3, #d6d6d6);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: black;
} 

.target-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.target-cta p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.target-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
}

/* Deliverables Section */
.deliverables-section {
  padding: 80px 0;
  background: #f9fafb;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem !important;
}

.deliverable-card {
    background: white;
    border-top: 4px solid #e5354b;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 450px !important;
    min-height: 400px !important;
    max-height: 500px;
}

.deliverable-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.deliverable-icon {
  width: 32px;
  height: 32px;
  color: #e5354b;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.deliverable-card:hover .deliverable-icon {
  transform: scale(1.1);
}

.deliverable-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #02242d;
  margin-bottom: 1rem;
}

.deliverable-card p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.deliverable-details {
  list-style: none;
  text-align: left;
}

.deliverable-details li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.deliverable-details li:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #0dc7c7;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.deliverables-cta {
    background: linear-gradient(to right, #f3f3f3, #d6d6d6);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: black;
}

.deliverables-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.deliverables-cta p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
    background: rgb(10 158 160);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1rem;
    color: white;
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta-section {
  padding: 20px 0;
  background: linear-gradient(to right, #02242d, #0dc7c7);
  color: white;
  text-align: center;
}

.final-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.limited-time {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.final-offer-card {
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 2rem auto;
    background: rgb(0 0 0 / 30%);
}

.urgency-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.urgency-point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}

.urgency-icon {
  width: 20px;
  height: 20px;
  color: #e5354b;
}

.final-benefits {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.package-breakdown {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
}

.package-breakdown h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.package-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
}

.package-title {
  font-weight: 600;
  color: #0dc7c7;
  margin-bottom: 0.25rem;
}

.package-value {
  opacity: 0.8;
  font-size: 0.9rem;
}

.final-cta {
  margin: 3rem 0;
}

.final-cta-button {
  background: #e5354b;
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 10px 30px rgba(229, 53, 75, 0.3);
}

.final-cta-button:hover {
  background: rgba(229, 53, 75, 0.9);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(229, 53, 75, 0.4);
}

.final-subtext {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.final-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  
}

.final-feature {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgb(0 0 0 / 30%);
}

.final-feature h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0dc7c7;
  margin-bottom: 0.5rem;
}

.final-feature p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.disclaimer {
    margin-top: 3rem;
    opacity: 1;
    font-size: 0.9rem;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .typeformsfintec {
    text-align: center;
    margin: 60px auto;
    width: 100% !important;
}
  
  button.btn.open-case-study-modal {
    width: 100% !important;
    background: #e5354b;
}

.main-image {
    width: 100%;
    height: 200px !important;
    object-fit: cover;
}
  
  .ipress-item img {
    display: inline-block;
    margin: 0 auto;
    border: 1px solid #ccc;
    height: 5rem !important;
    object-fit: contain;
    border-radius: 10px;
    padding: 10px;
    background-color: #ffffff;
    width: 150px !important;
}



.cta-box {
    max-width: 800px;
    background: linear-gradient(to right, #f3f3f3, #d6d6d6);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    color: black;
    margin-top: 80px;
}
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cards {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-content {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .target-groups {
    grid-template-columns: 1fr;
  }
  
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  
  .urgency-points {
    grid-template-columns: 1fr;
  }
  
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .final-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .service-card,
  .reason-card,
  .target-card,
  .deliverable-card {
    padding: 1.5rem;
  }
  
  .final-cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}


.price-color {
    font-size: 25px;
    color: #a0ffff;
}





.ipress-item img {
    display: inline-block;
    margin: 0 auto;
    border: 1px solid #ccc;
    height: 8rem;
    object-fit: contain;
    border-radius: 10px;
    padding: 10px;
    background-color: #ffffff;
    width: 250px;
}


.case-setuffy-slider.slick-dotted {
    padding: 10px 0px 50px 0 !important;
}


.walkaway .slick-slide {
    margin: 15px 10px 15px 10px;
}

/* Space between each dot */
.walkaway .slick-dots {
  margin: 0 6px; /* Adjust as needed */
}

.slick-dotted.slick-slider {
    margin-bottom: 30px;
    text-align: center;
}

.text-center {
    text-align: center;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background-color: #25D366;
    display: flex
;
    justify-content: center;
    align-items: center;
        animation: heartbeat 1.5s infinite;

}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}



  @keyframes heartbeat {
    0% {
      transform: scale(1);
    }
    14% {
      transform: scale(1.3);
    }
    28% {
      transform: scale(1);
    }
    42% {
      transform: scale(1.3);
    }
    70% {
      transform: scale(1);
    }
  }


    .offer-badge {
      background-color: #fce8d5;
      border-left: 6px solid #ff9800;
      padding: 15px;
      border-radius: 8px;
    }

    .offer-text {
      font-size: 20px;
      font-weight: 600;
      color: #333;
    }

    .price-color {
      color: #d32f2f;
      font-weight: bold;
    }

   .original-price {
    text-decoration: line-through;
    color: #a0ffff;
    margin-top: 12px;
    font-size: 20px;
}

img.ziubairt {
    width: 100%;
    border-radius: 10px;
}



