body {
  padding-top: 100px;
   font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #3b1dcd, #5510c7);
  overflow-x: hidden;
  color: #fff;
}

/* HERO */
.hero {
  padding: 20px 0 0 0;
  height: auto;
}

.hero-img {
  width: 100%;
  max-width: 430px;
}
.highlight {
  color: #ffffff;
}
.connect {
  background: #000;
  padding: 15px 25px;
  display: inline-block;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
}
.connect:hover {
  background: #fff;
  color: #000;
}

/* INFO SECTIONS */
.seo-textalign {
  text-align: justify;
}
.content-section {
  padding: 60px 0;
  background-color:white;
}

/* CARDS */
.seo-card {
  transition: 0.3s ease;
}
.seo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* FAQ */
#faq{
  background-color: #ffffff;
}

#faq .accordion-button {
  font-size: 1rem;
  padding: 16px;
}
#faq h2 {
  font-size: 2rem;
}

/* FOOTER */
.footer-main {
  background: #111;
  color: #ccc;
  padding: 50px 0 20px;
}
.footer-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}
.services-list li,
.contact-details li {
  margin-bottom: 10px;
  color: #ccc;
}
.social-icon-link {
  font-size: 18px;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}
.social-icon-link:hover {
  color: #6610f2;
}

/* RESPONSIVENESS */

/* Tablets */
@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding-top: 20px;
   
  }
  .hero .col-lg-6 {
    margin-bottom: 25px;
  }
  nav.navbar {
    padding: 15px 20px;
  }
  .highlight{
    margin-top: 70px;
    padding-top: 30px;
      
  }

    .hero-img {
    margin-bottom: -25px;
  }

}

/* Small tablets and large phones */
@media (max-width: 768px) {
  h1, h2 {
    font-size: 28px !important;
  }
  .hero-img {
    max-width: 340px;
    margin-bottom: -25px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  body {
    padding-top: 80px;
  }
    .hero-img {
    margin-bottom:-65px;
  }
  .hero {
    padding: 20px 0 40px 0;
  }
  .connect {
    padding: 12px 18px;
    font-size: 14px;
  }
  .seo-card {
    padding: 20px;
  }
  #faq .accordion-button {
    font-size: 0.9rem;
  }
  footer .footer-col {
    text-align: center;
  }
  .social-icons-container {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
}

        .case-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 40px 25px;
            text-align: center;
            height: 100%;
             box-shadow: 2px 2px 2px 2px rgb(195, 195, 195);
        }

        h2.section-title {
            font-size: 38px;
            font-weight:700;
            color: rgb(0, 0, 0);
        }

        .case-section {
            background: #ffffff;
            color:black;
           
        }

         :root {
            --primary-color: #1a56db;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --dark-color: #1d2240; 
            --light-color: #f8fafc;
        }


        .process-section {
            padding: 80px 0;
            background: var(--dark-color);
            color: white;
        }

        .process-section .section-title::after {
            background: white;
        }

        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 60px auto 0;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
            transform: translateX(50px);
        }

        .process-step:nth-child(even).visible {
            transform: translateX(0);
        }

        .step-number {
            min-width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        .step-content {
            flex: 1;
            padding: 0 30px;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .step-description {
            color: #cbd5e1;
            line-height: 1.7;
        }
        @media (max-width: 768px) {

            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
        }

        .keylist{
            padding:20px;
            font-size: 20px;
        }


/* ====== FLIP CARD CSS ====== */
/* ====== FLIP CARD – RESPONSIVE UPGRADED CSS ====== */

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 280px;
  perspective: 1000px; 
  margin-bottom: 20px;
    display: flex;
  align-items: stretch;

}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flip .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* FRONT SIDE */
.flip-card-front {
  background-color: #d1e9f5;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* BACK SIDE */
.flip-card-back {
  background: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LIST INSIDE THE CARD */
.keylist {
  padding-left: 0 !important;
  list-style: none;
  font-size: 18px;
}
.keylist li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.keylist li i {
  color: #0d6efd;
  margin-right: 8px;
}

/* ====== RESPONSIVENESS ====== */

/* Tablets */
@media (max-width: 992px) {
  .flip-card {
    height: 260px;
    
  }
}

/* Mobile */
@media (max-width: 768px) {
  .flip-card {
    height: 400px;
    padding: 20px;
    cursor: pointer;
  }

  .flip-card-inner {
    height: auto;
  }

  .flip-card-front,
  .flip-card-back {
    height: 350px;
  }

  .keylist {
    font-size: 16px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .flip-card-front,
  .flip-card-back {
    height: 250px;
  }
  
  .keylist {
    font-size: 15px;
  }
}





