
*{
   padding:0;
   margin:0;
   box-sizing: border-box;
}

html,body{
  height:100%;
  width:100%;
  background-color: #ffffff;
}

main{
  background-color: #fcfcfc;
}

section{

  background-color: #ffffff;
}


/*Buisness Growth*/
.content-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  background-color: #fcfcfc;
}

.main-heading {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
  color: #111;
}

.intro-paragraph {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-item.animate {
  opacity: 1 ;
  transform: translateY(0);
  
}

.content-item.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
  min-width: 280px;
}

.content-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.content-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

/* IMAGE SECTION */
.content-img {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 100%;

  
  transform: translateX(-60px) scale(0.95);
  opacity: 0;
  transition: all 0.9s ease;
}


.content-item.reverse .image-grid {
  transform: translateX(60px) scale(0.95);
}


.content-item.animate .image-grid {
  transform: translateX(0) scale(1);
  opacity: 1;
}


.image-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}


.image-grid img:hover {
  transform: scale(1.12);
}


@media (max-width: 768px) {
  .content-item, .content-item.reverse {
    flex-direction: column;
  }

  .image-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .image-grid img {
    width: 100%;
    max-width: 90vw;
    transform: none !important;
  }
}




/*Hero section*/

.decorative-heading-section {
  text-align: center;
  margin: 60px 20px 30px;
}

.decorative-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4e11f4;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.decorative-heading::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #4e11f4, #4e11f4);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: growLine 1s ease-in-out;
}

@keyframes growLine {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

@media (max-width: 600px) {
  .decorative-heading {
    font-size: 1.8rem;
  }

  .decorative-heading::after {
    width: 50px;
  }
}


/*Step by Step Service Section*/

.timeline-container {
  max-width: 800px;
  margin: 10px auto;
  padding: 10px;
}

.timeline-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 4px solid #4e11f4;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-marker {
  position: absolute;
  left: -22px;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #4e11f4;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px #4e11f4;
  font-size: 1.2rem;
}

.timeline-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.timeline-content h5 {
  margin-top: 0;
  color: #000000;
}

.timeline-content p {
  margin: 10px 0 0;
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .timeline {
    padding-left: 20px;
    border-left: 3px solid #4CAF50;
  }

  .timeline-marker {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    left: -18px;
  }

  .timeline-content {
    padding: 15px;
  }
}


/*Why Choose TechieTet*/
.marketing-wrapper {
  max-width: 1300px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  margin-bottom:110px;
}

.marketing-container {
  display: flex;
  flex-wrap: wrap;
}

.marketing-steps {
  width: 30%;
  border-right: 2px solid #eee;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.marketing-step {
  display: flex;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
  background: #f8f8f8;
  color: #555;
}

.marketing-step:hover {
  background-color: #f1f1f1;
}

.marketing-step.active {
  background-color: #ffe3ec;
  color: #e91e63;
  font-weight: bold;
}

.marketing-step i {
  font-size: 20px;
  margin-right: 10px;
  color: #e91e63;
}

.marketing-step span {
  font-size: 16px;
}

.marketing-content {
  width: 70%;
  padding-left: 30px;
}

.marketing-info {
  display: none;
  animation: fadeIn 0.3s ease-in-out;

}

.marketing-info.active {
  display: block;
}

.marketing-info h2 {
  margin-bottom: 10px;
  color: #333; 
}

.marketing-info p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}


@media (max-width: 768px) {
  .marketing-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;      
    overflow-x: auto;        
    width: 100%;              
    box-sizing: border-box;
  }

  .marketing-steps,
  .marketing-content {
    box-sizing: border-box;
  }

  .marketing-steps {
    flex: 0 0 60%;           
    padding-right: 10px;
  }

  .marketing-content {
    flex: 0 0 60%;           
    padding-left: 10px;
    word-wrap: break-word;    
    overflow-wrap: break-word;
  }
}


/*Why Choose Us*/
/* .info-section {
  background-color: #fff;
  margin-top: 60px;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom:70px;
}

.info-section h2 {
  font-size: 1.8rem;
  color: #4e11f4;
  margin-bottom: 15px;
  text-align: center;
}

.info-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  text-align: justify;

} */


/*popular tools*/
.popular-tools-section {
  background: linear-gradient(
    -45deg,
    #ffeff4 0%,
    #ffecf2 20%,
    #eef8ff 25%,
    #e2f2ff 45%,
    #e8f5e9 50%,
    #e3ffff 70%,
    #fff6e6 75%,
    #fff6e9 90%,
    #ede7f6 95%,
    #f2ebff 100%
  );
  background-size: 400% 400%;
  animation: gradientBG 8s ease-in-out infinite;
  padding: 60px 0;
  width:100%;
  height:100%;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.popular-tools-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.popular-tools-section .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.popular-tools-section .section-title p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.popular-tools-section .service-item {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
  overflow: hidden;
  height: 100%;
  will-change: transform, box-shadow;
}

.popular-tools-section .service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.popular-tools-section .icon {
  margin-bottom: 20px;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.popular-tools-section .icon img {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.popular-tools-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #333;
}

.popular-tools-section p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .popular-tools-section .icon img {
    height: 60px;
    width: 60px;
  }

  .popular-tools-section h3 {
    font-size: 18px;
  }

  .popular-tools-section p {
    font-size: 14px;
  }
}


