
/* General */

.ip-section {
  padding: 100px 8%;
  position: relative;
}

/* Hero Section */
.ip-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #9bcbff, #05004e, #002454, #000000);
  background-size: 400% 400%;
  animation: ip-gradientBG 5s ease infinite;
  color: #fff;
}
@keyframes ip-gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.ip-hero-left {
  flex: 1;
  min-width: 320px;
  padding: 60px 20px;
  z-index: 2;
}
.ip-hero-left-h1 {
  font-size: 44px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.ip-hero-left-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}
.ip-hero-left-ul-li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}
.ip-hero-left-ul-li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffeb3b;
  font-weight: bold;
}
.ip-btn {
  background: #ffeb3b;
  color: #000;
  padding: 14px 32px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ip-btn:hover {
  background: #fff;
  color: #1b263b;
  transform: scale(1.05);
}
.ip-hero-right {
  flex: 1;
  text-align: center;
  min-width: 320px;
  padding: 60px 20px;
  z-index: 2;
}

/* Hero Form */
.ip-hero-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  max-width: 400px;
  margin: auto;
}
.ip-hero-form-h2 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
  color: #fff;
}
.ip-hero-form-input,
.ip-hero-form-textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.ip-hero-form-input::placeholder,
.ip-hero-form-textarea::placeholder {
  color: #ddd;
}
.ip-hero-form-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #ffeb3b;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}
.ip-hero-form-button:hover {
  background: #fff;
  color: #1b263b;
  transform: scale(1.05);
}

/* Hero Shape Divider */
.ip-shape-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.ip-shape-divider svg {
  position: relative;
  display: block;
  width: calc(132% + 1.3px);
  height: 120px;
}
.ip-shape-divider path {
  transform-origin: center;
}

/* Results Section */
.ip-results {
  text-align: center;
  background: #ffffff !important;
  position: relative;
}
.ip-results-h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #000000;
  position: relative;
  z-index: 1;
}
.ip-result-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ip-result-card {
  background: rgb(0 42 92 / 85%);
  color: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;
}
.ip-result-card i {
  font-size: 40px;
  color: #ff9800;
  margin-bottom: 15px;
}
.ip-result-card-h3 {
  margin: 10px 0;
  font-size: 28px;
  color: #ffffff;
}
.ip-result-card-p {
  font-size: 14px;
  color: white;
}
.ip-result-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Industry Section */
.ip-industry {
  text-align: center;
  background: #0d1b2a;
  color: #fff;
}
.ip-industry-h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
}
.ip-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Industry Card Hover Effect */
.ip-industry-card {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}
.ip-industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 20px;
}
.ip-industry-card:hover::before {
  opacity: 1; /* Dark overlay */
}
.ip-industry-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease;
  padding: 20px;
}
.ip-industry-card:hover .ip-industry-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.ip-industry-overlay-h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  color: white;
}
.ip-industry-overlay-p {
  font-size: 14px;
  line-height: 1.5;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .ip-hero { flex-direction: column; text-align: center; padding: 60px 8%; }
  .ip-hero-left-h1 { font-size: 32px; }
  .ip-results-h2, .ip-industry-h2 { font-size: 28px; }
}

  section.seo-results {
      padding: 60px 20px;
     
    }

    section.seo-results h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 32px;
      color: #0f172a;
    }

    /* Slider container */
    .slider {
      max-width: 1200px;
      margin: auto;
      position: relative;
      overflow: hidden;
    }
    .slides {
      display: flex;
      transition: transform 0.6s ease;
    }
    .seo-card {
      flex: 0 0 50%; /* 2 cards per slide on desktop */
      box-sizing: border-box;
      padding: 15px;
    }
    @media (max-width: 768px) {
      .seo-card {flex: 0 0 100%;}
    }

    /* Card design */
    .card-inner {
      background: white;
      border-radius: 18px;
      box-shadow: 0 6px 25px rgba(0,0,0,0.08);
      padding: 20px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-top: 6px solid #3b82f6;
      position: relative;
    }
    .card-inner::after {
      content: "";
      position: absolute;
      bottom: 0; right: 0;
      width:60px !important; 
      height: 80px;
      background: linear-gradient(135deg,#3b82f6,#06b6d4);
      clip-path: polygon(100% 0,100% 100%,0 100%);
      border-bottom-right-radius: 18px;
    }

    .card-header h3 {
      margin: 0;
      font-size: 20px;
      color: #1e293b;
    }
    .card-header span {
      font-size: 13px;
      color: #64748b;
    }

    .keyword-list {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .keyword-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 14px;
      border-radius: 12px;
      background: #f1f5f9;
      font-size: 14px;
      font-weight: 500;
      color: #0f172a;
    }
    .rank {
      background: #22c55e;
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 12px;
    }

    /* Slider buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      color: white;
      border: none;
      font-size: 20px;
      width: 38px; height: 38px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
    }
    .prev {left: 10px;}
    .next {right: 10px;}
    .packages-section {
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
  color: #000000;
}

.packages-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #0077ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.package-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  max-height: 500px;
}

.package-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,119,255,0.15);
}

.package-header {
  padding: 20px;
  text-align: center;
  background:linear-gradient(135deg, #111441, #337ab7);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.package-subheader {
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  color: #0077ff;
  font-weight: 600;
  background: #e6f0ff;
}

.package-price {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0;
  color: #111;
}

.package-price span {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.package-content {
  flex: 1;
  overflow-y: auto;
  padding: 15px 20px;
  text-align: left;
  scrollbar-width: thin;
  scrollbar-color: #0077ff #e0e0e0;
}

.package-content::-webkit-scrollbar {
  width: 6px;
}
.package-content::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
}
.package-content::-webkit-scrollbar-thumb {
  background: #0077ff;
  border-radius: 10px;
}

.package-content h4 {
  font-size: 16px;
  margin: 15px 0 8px;
  color: #337ab7;
  display: flex;
  align-items: center;
}

.package-content h4 i {
  margin-right: 10px;
  font-size: 16px;
  color: #00c6ff;
  min-width: 20px;
  text-align: center;
}

.package-content ul {
  margin: 0 0 10px 18px;
  padding: 0;
}

.package-content li {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.4;
  position: relative;
  padding-left: 18px;
}


.package-btn {
  display: block;
  margin: 15px auto 20px;
  padding: 12px 28px;
  border-radius: 30px;
   background:linear-gradient(135deg, #111441, #337ab7);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,119,255,0.3);
  transition: all 0.3s ease;
}

.package-btn:hover {
  background: linear-gradient(135deg, #0056c7, #0094cc);
  box-shadow: 0 7px 20px rgba(0,86,199,0.4);
}

@media (max-width:1200px){
  .packages-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:768px){
  .packages-container {
    grid-template-columns: 1fr;
  }
  .packages-section h2{
    font-size: 32px;
  }
}

.mainprocess {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 80px 20px;
      margin-bottom: 31px;

  background: radial-gradient(circle at top left, #0a1b2e, #000814);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Title */
h2.process-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 80px;
  color: #ffffff; /* Neon Cyan */
  text-shadow: 0 0 15px rgba(0,255,255,0.5);
  font-weight: 700;
  text-transform: uppercase;
}

/* Roadmap Container */
.roadmap-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 80px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Step Box */
.roadmap-box {
  background: #001633; /* solid dark background for readability */
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 240px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px rgba(203, 255, 255, 0.2);
  transition: 0.3s;
}
.roadmap-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 35px #d4dcff;
}

/* Step number */
.roadmap-box::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #011138; /* single neon color */
  color: #ffffff;
  font-weight: bold;
  line-height: 40px;
  font-size: 16px;
  box-shadow: 0 0 15px #9dbfff;
  z-index: 3;
}

/* Arrow Connector */
.roadmap-box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 50px;
  height: 4px;
  background: #adceff;
  border-radius: 2px;
}
.roadmap-box:last-child::after {
  display: none;
}

/* Box content */
.roadmap-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff; /* Neon Cyan */
  text-shadow: 0 0 8px rgba(0,255,255,0.5);
}
.roadmap-box p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 1000px) {
  .roadmap-flow {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .roadmap-box {
    width: 90%;
    max-width: 400px;
  }
  .roadmap-box::after {
    top: auto;
    bottom: -40px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* Popup Background */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
}

/* Popup Box */
.popup-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 100px auto;
    background: rgb(49, 125, 211);
    padding: 10px;
    border-radius: 8px;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
    cursor: pointer;
    color: #111441;
    background: #ffefef;
    border-radius: 3px;
    padding: 0 8px;
}

/* iframe */
.popup-iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Results Section */
.ip-section.ip-results {
    background: #ffffff;
    padding: 0px 0 60px;
    margin-top: 0;
    text-align: center;
}

/* Heading */
.ip-results-h2 {
    color: #000000;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
}

/* Subtitle */
.ip-results p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 40px;
}

.ip-results .ip-result-card-psection {
    color: #000;
    font-size: 16px;
    margin-bottom: 40px;
}


/* Cards Container */
.ip-result-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Single Card */
.ip-result-card {
    background: linear-gradient(135deg, #111441, #337ab7);
    padding: 35px 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    color: #ffffff;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Hover Effect */
.ip-result-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.ip-result-card i {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Numbers */
.ip-result-card-h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
}

/* Text */
.ip-result-card-p {
    font-size: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ip-result-card {
        width: 100%;
        max-width: 320px;
    }

    .ip-results-h2 {
        font-size: 26px;
    }
}

/* List Icons */

.fas.fa-check {
    color: #28a745;
    margin-right: 6px;
}

.fas.fa-times {
    color: #ff0000;
    margin-right: 6px;
}

.package-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg,#111441,#337ab7);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.package-subheader {
    color: #337ab7;
    font-weight: 600;
    padding: 10px 0;
}

.package-content h4 {
    color: #337ab7;
}

.package-content h4 i {
    color: #337ab7;
  }

  /* ===============================
   PACKAGE BUTTON
=================================*/

.package-btn {
    background: linear-gradient(135deg, #111441, #337ab7);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* ===============================
   POPUP BACKGROUND
=================================*/

.hero-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}


/* ===============================
   POPUP BOX
=================================*/

.hero-popup-box {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #317dd3;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}


/* ===============================
   CLOSE BUTTON
=================================*/

.hero-popup-close {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 32px;
    color: #111441;
    cursor: pointer;
    background: #fff;
    padding: 0 8px;
    border-radius: 4px;
    line-height: 1;
}


/* ===============================
   IFRAME
=================================*/

.hero-popup-frame {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 6px;
}

/* ======================
   STAR RATING
====================== */

.ts-stars i {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 3px;
}

.col-md-6 .box-styling{
color:rgb(0, 0, 0);
font-size:30px;
color: white;
font-weight:bold;
}

.col-md-6 .box-offer{
color:rgb(0, 0, 0);
color: white;
}

.col-md-6 h2{
color: black;
text-align:center;
}

.row .offer-startups{
margin-right:25px;
}

.offer-startups img{
width: 80px;
}

.altra-sub-hero h2{
text-align: center;
}

.Box-Formating h4 {
text-align:center;
color:rgb(0, 0, 0);
font-size:20px;
}

.Box-Formating p {
text-align:center;
}

/* ICON BOX COMMON STYLE */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* FIRST CARD GRADIENT */
.locationdetails-why-heading {
    color: #fff;
}

.why-card-icon {
    background: linear-gradient(135deg, #ff512f, #dd2476);
}

.icon-1 {
    background: linear-gradient(135deg,#ff512f,#dd2476);
}

.icon-2 {
    background: linear-gradient(135deg,#0072ff,#00c6ff);
}

.icon-3 {
    background: linear-gradient(135deg,#00c851,#33b5e5);
}

.icon-4 {
    background: linear-gradient(135deg,#ff6b6b,#feca57);
}

.icon-5 {
    background: linear-gradient(135deg,#5f27cd,#341f97);
}

.icon-6 {
    background: linear-gradient(135deg,#f39c12,#e67e22);
}

.industry-bg1 {
    background-image: url("img/astrology.png");
}

.industry-bg10 {
    background-image: url("img/hair-transplant.png");
}

.industry-bg11 {
    background-image: url("img/study-abroad.jpg");
}

.industry-bg4 {
    background-image: url("img/cosmetic-surgen.png");
}

.industry-bg5 {
    background-image: url("img/CA-firm.jpg");
}

.industry-bg6 {
    background-image: url("img/immgration consultation.png");
}

.industry-bg7 {
    background-image: url("img/ecomarce.jpg");
}

.industry-bg8 {
    background-image: url("img/healthcare.png");
}

.industry-bg15 {
    background-image: url("img/yoga services.png");
}

.industry-bg14 {
    background-image: url("img/Institutes.jpg");
}