/* ================= HERO SECTION ================= */

.hero-section{
  min-height:0vh;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#000c24,#020617);
  padding:10px 0;
  padding-top: 100px;
}

/* CONTAINER */

.hero-container{
  width:85%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}

/* LEFT */

.hero-left{
  flex:1;
  color:#fff;
}

.hero-left h1{
  font-size:42px;
  margin-bottom:20px;
}

.hero-left span{
  background:linear-gradient(
    90deg,
    #7c3aed,
    #ec4899
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-left p{
  font-size:17px;
  color:#cbd5e1;
  margin-bottom:30px;
}

/* CTA BUTTON */

.cta-btn{
  padding:14px 28px;
  background:linear-gradient(
    90deg,
    #7c3aed,
    #ec4899
  );
  border:none;
  border-radius:8px;
  color:#fff;
  cursor:pointer;
}

/* RIGHT */

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
}

/* FORM */

.side-form,
.popup-form{
  position:relative;
  background:#0f172a;
  padding:35px;
  border-radius:14px;
  width:100%;
  max-width:420px;
  box-sizing:border-box;
}

/* FORM TITLE */

.side-form h2,
.popup-form h2{
  color:#fff;
  margin-bottom:20px;
}

/* FORM ROW */

.form-row{
  display:flex;
  gap:12px;
}

.form-row input{
  flex:1;
}

/* INPUTS */

.side-form input,
.side-form select,
.side-form textarea,
.popup-form input,
.popup-form select,
.popup-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:none;
  border-radius:6px;
  background:#1e293b;
  color:#fff;
  font-size:14px;
  box-sizing:border-box;
}

/* SUBMIT */

.submit-btn{
  width:100%;
  padding:12px;
  background:linear-gradient(
    90deg,
    #7c3aed,
    #ec4899
  );
  border:none;
  border-radius:8px;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* POPUP */

.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);

  display:none; /* popup hidden initially */

  justify-content:center;
  align-items:center;
  z-index:999;
  animation:fadeIn .3s ease;
}

/* CLOSE */

.close-btn{
  position:absolute;
  top:12px;
  right:15px;
  background:#1e293b;
  border:none;
  color:#fff;
  font-size:18px;
  width:32px;
  height:32px;
  border-radius:50%;
  cursor:pointer;
  transition:.3s ease;
}

.close-btn:hover{
  background:#7c3aed;
  transform:rotate(90deg);
}

/* FADE */

@keyframes fadeIn{

  from{
    opacity:0;
  }

  to{
    opacity:1;
  }

}

/* TABLET */

@media(max-width:992px){

  .hero-container{
    flex-direction:column;
  }

}

/* MOBILE */

@media(max-width:600px){
.hero-section{
  text-align: center;
  padding-left: 2%;
  padding-right: 2%;
}
  .form-row{
    flex-direction:column;
  }

}





















@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* SECTION */

.seo-section {
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  padding: 30px 5%;
  overflow: hidden;
}

/* HEADER */

.seo-header {
  text-align: center;
  margin-bottom: 25px;
}

.seo-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
}

.seo-title-white {
  display: block;
  color: #ffffff;
}

.seo-title-gradient {
  display: block;
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-divider {
  width: 70px;
  height: 3px;
  background: #8b5cf6;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* CONTAINER (UNCHANGED LAYOUT) */

.seo-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

/* TEXT */

.seo-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #cbd5f5;
}

/* LIST */

.seo-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
}

.seo-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 400;
}

.seo-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #8b5cf6;
  font-weight: 700;
}

/* IMAGE */

.seo-image {
  display: flex;
  justify-content: center;
}

.image-glow {
  position: relative;
}

.image-glow::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.45),
    rgba(236, 72, 153, 0.25),
    transparent 60%
  );
  filter: blur(40px);
  z-index: 0;
}

.image-glow img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
}

/* DESKTOP (LAYOUT SAME) */

@media (min-width: 992px) {

  .seo-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .seo-text {
    flex: 1;
  }

  .seo-image {
    flex: 1;
    justify-content: flex-end;
  }

  .image-glow img {
    max-width: 440px;
  }

}

/* MOBILE */

@media (max-width: 768px) {

  .seo-title {
    font-size: 38px;
  }

  .seo-text p,
  .seo-list li {
    font-size: 16px;
  }
}











@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.projectrun-section {
  padding: clamp(8px, 2vw, 0px) clamp(5vw, 8vw, 9vw);
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  overflow: hidden;
}

.projectrun-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.projectrun-title {
  font-size: 48px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.projectrun-title-white {
  display: block;
  color: #ffffff;
}

.projectrun-title-gradient {
  display: block;
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projectrun-divider {
  width: 80px;
  height: 3px;
  background: #8b5cf6;
  margin: 20px auto 0;
  border-radius: 2px;
}

.projectrun-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.projectrun-text p {
  font-size: 17px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  margin-bottom: 6px;
  color: #cbd5f5;
}

.projectrun-image {
  display: flex;
  justify-content: center;
}

.projectrun-image-glow {
  position: relative;
}

.projectrun-image-glow::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.55),
    rgba(236, 72, 153, 0.3),
    transparent 50%
  );
  filter: blur(60px);
  z-index: 0;
}

.projectrun-image-glow img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .projectrun-container {
    grid-template-columns: 1fr;
  }

  .projectrun-title {
    font-size: 36px;
  }

  .projectrun-text p {
    font-size: 16px;
  }
}
/* ================= CONTENT ================= */


/* ================= BEST SECTION ================= */

.best-title{
  text-align:center;
  font-size:52px;
  margin-bottom:50px;
  background:linear-gradient(90deg,#8b5cf6,#ec4899);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.best-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.best-card{
  background:#fff;
  color:#020617;
  border-radius:20px;
  padding:30px;
  text-align:center;
  transition:.3s ease;
}

.best-card:hover{
  transform:translateY(-6px);
}

.best-icon{
  width:60px;
  height:60px;
  margin:auto auto 16px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#8b5cf6,#ec4899);
  color:#fff;
  font-size:26px;
}

.best-card h3{
  font-size:18px;
}

/* ================= WHY CHOOSE ================= */




























/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.hero-container,
.projectrun-container,
.services-container,
.website-container,
.content-container,
.why-container{
  grid-template-columns:1fr;
  display:grid;
}

.best-grid{
  grid-template-columns:1fr 1fr;
}

.stats-container{
  grid-template-columns:1fr 1fr;
}

.hero-left h1,
.projectrun-title,
.services-title,
.website-title,
.content-title,
.best-title,
.why-left h2,
.industries-section h2,
.faq-title{
  font-size:42px;
}

}

@media(max-width:768px){

section{
  padding:70px 20px;
}

.hero-container{
  width:100%;
}

.hero-left h1{
  font-size:36px;
}

.hero-left p,
.projectrun-text p,
.services-text p,
.website-text p,
.content-text p,
.why-left p{
  font-size:16px;
}

.form-row{
  flex-direction:column;
}

.best-grid,
.stats-container{
  grid-template-columns:1fr;
}

.projectrun-title,
.services-title,
.website-title,
.content-title,
.best-title,
.why-left h2,
.industries-section h2,
.faq-title{
  font-size:34px;
}

.side-form,
.popup-form{
  padding:24px;
}

.industry-item{
  min-width:180px;
}

.industry-icon{
  width:90px;
  height:90px;
  font-size:34px;
}

}














/* ================= HEADER ================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== GLOBAL RESET ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,system-ui,Arial,sans-serif;
}

/* ===== GLOBAL BACKGROUND ===== */

html,
body{
  width:100%;
  max-width:100%;
  margin:0;
  padding:0;

  background:linear-gradient(
    135deg,
    #000c24,
    #020617
  );

  color:#e5e7eb;

  overflow-x:clip;

  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ===== HEADER ===== */

.sf-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:92px;
  z-index:9999;

  background:linear-gradient(
    135deg,
    #f6a5d8 0%,
    #d38df6 50%,
    #9b7cfb 100%
  );

  border-bottom:1px solid rgba(
    255,
    255,
    255,
    0.25
  );

  box-shadow:0 10px 30px rgba(
    0,
    0,
    0,
    0.25
  );
}

/* ===== INNER ===== */

.sf-header-inner{
  max-width:1400px;
  height:92px;
  margin:auto;
  padding:0 28px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ===== LOGO ===== */

.sf-logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.mark{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#ffffff;

  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.logo-img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* ===== LOGO TEXT ===== */

.logo-text .title{
  font-size:16px;
  font-weight:800;
  color:#1e1b4b;
}

.logo-text .subtitle{
  font-size:12px;
  color:#312e81;
}

.phone-line{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:4px;
}

.phone-number{
  font-size:16px;
  font-weight:900;
  color:#1e1b4b;
  text-decoration:none;
}

/* ===== NAVIGATION ===== */

.sf-nav{
  display:flex;
  gap:28px;
}

.nav-btn{
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  color:#1e1b4b;

  position:relative;
  transition:all .3s ease;
}

/* ===== HOVER GRADIENT ===== */

.nav-btn:hover,
.nav-btn.active{

  background:linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899
  );

  background-clip:text;
  -webkit-background-clip:text;

  color:transparent;
}

/* ===== UNDERLINE ===== */

.nav-btn::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;

  width:0;
  height:3px;

  background:linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899
  );

  border-radius:3px;

  transform:translateX(-50%);
  transition:width .3s ease;
}

.nav-btn:hover::after,
.nav-btn.active::after{
  width:100%;
}

/* ===== DROPDOWN ===== */

.sf-dropdown{
  position:relative;
}

.sf-dropdown-menu{
  position:absolute;
  top:50px;
  left:0;
  min-width:280px;

  background:#ffffff;
  border-radius:14px;

  box-shadow:0 20px 50px rgba(
    0,
    0,
    0,
    0.15
  );

  display:none;
  flex-direction:column;
  overflow:hidden;
  z-index:9999;
}

.sf-dropdown-menu.show{
  display:flex;
}

.sf-dropdown-menu a{
  padding:18px 22px;
  text-decoration:none;
  color:#15304D;
  font-weight:600;
  border-bottom:1px solid #f1f1f1;
  transition:.3s ease;
}

.sf-dropdown-menu a:last-child{
  border-bottom:none;
}

.sf-dropdown-menu a:hover{
  background:#f5f7fa;
}

/* ===== HAMBURGER ===== */

.hamburger{
  display:none;
  border:none;
  background:none;
  cursor:pointer;
  padding:0;
}

/* ===== MOBILE ===== */

@media(max-width:900px){

  .hamburger{
    display:flex;

    width:56px;
    height:46px;

    background:linear-gradient(
      135deg,
      #8b5cf6,
      #ec4899
    );

    border-radius:14px;

    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;

    box-shadow:0 10px 28px rgba(
      139,
      92,
      246,
      0.45
    );

    z-index:10000;
  }

  .hamburger span{
    width:26px;
    height:3px;
    background:#ffffff;
    border-radius:6px;
    transition:all .3s ease;
  }

  .hamburger.open span:nth-child(1){
    transform:
      translateY(10px)
      rotate(45deg);
  }

  .hamburger.open span:nth-child(2){
    opacity:0;
  }

  .hamburger.open span:nth-child(3){
    transform:
      translateY(-10px)
      rotate(-45deg);
  }

  /* MOBILE NAV */

  .sf-nav{
    position:absolute;
    top:92px;
    left:0;
    right:0;

    background:linear-gradient(
      135deg,
      #f6a5d8 0%,
      #d38df6 50%,
      #9b7cfb 100%
    );

    flex-direction:column;
    align-items:center;

    gap:24px;
    padding:28px 0;

    display:none;
  }

  .sf-nav.open{
    display:flex;
  }

  .nav-btn{
    font-size:20px;
  }

  /* MOBILE DROPDOWN */

  .sf-dropdown-menu{
    position:static;
    width:100%;
    margin-top:10px;
    border-radius:10px;
  }

}

/* ===== PAGE OFFSET ===== */

.app-page{
  padding-top:100px;
}

/* ===== GLOBAL RESET ===== */





/* what we do best  */


/* ================= SERVICES HIGHLIGHT ================= */

.sh-wrap{
  font-family:'Poppins',sans-serif;
  padding-bottom:24px;
  padding-top: 0px;
}

/* TITLE */

.sh-title{
  text-align:center;
  font-size:56px;
  font-weight:800;
  background:linear-gradient(90deg,#8b5cf6,#ec4899);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:32px;
}

/* GRID */

.sh-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:24px;
}

/* FIRST 6 */

.sh-card:nth-child(1),
.sh-card:nth-child(2),
.sh-card:nth-child(3),
.sh-card:nth-child(4),
.sh-card:nth-child(5),
.sh-card:nth-child(6){
  grid-column:span 4;
}

/* LAST 4 */

.sh-card:nth-child(7),
.sh-card:nth-child(8),
.sh-card:nth-child(9),
.sh-card:nth-child(10){
  grid-column:span 3;
}

/* CARD */

.sh-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  min-height:210px;
  text-align:center;
  cursor:pointer;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;

  position:relative;
  overflow:hidden;
  text-decoration:none;

  box-shadow:0 18px 50px rgba(0,0,0,.35);
  transition:transform .3s ease, box-shadow .3s ease;
}

.sh-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 70px rgba(0,0,0,.5);
}

/* ICON */

.sh-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
  background:linear-gradient(135deg,#8b5cf6,#ec4899);
  box-shadow:0 0 26px rgba(139,92,246,.45);
  transition:.3s;
  z-index:2;
}

/* TITLE */

.sh-card h3{
  font-size:18px;
  font-weight:600;
  color:#020617;
  margin:0;
  transition:.3s;
  z-index:2;
}

/* HOVER TEXT */

.sh-hover-text{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  font-size:18px;
  line-height:1.6;
  color:#fff;
  opacity:0;
  transition:.3s;
  z-index:3;
  text-align:center;
}

/* OVERLAY */

.sh-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#8b5cf6,#ec4899);
  opacity:0;
  transition:.3s;
}

/* HOVER */

.sh-card:hover::before{
  opacity:1;
}

.sh-card:hover .sh-hover-text{
  opacity:1;
}

.sh-card:hover h3,
.sh-card:hover .sh-icon{
  opacity:0;
}

/* TABLET */

@media(max-width:1024px){

  .sh-grid{
    grid-template-columns:1fr 1fr;
  }

  .sh-card{
    grid-column:span 1 !important;
  }
}

/* MOBILE */

@media(max-width:768px){

  .sh-wrap{
    padding:40px 20px;
  }

  .sh-title{
    font-size:36px;
  }

  .sh-grid{
    grid-template-columns:1fr;
  }

  .sh-card{
    grid-column:span 1 !important;
    min-height:auto;
    padding:22px;
  }

  .sh-card::before,
  .sh-hover-text{
    display:none;
  }

  .sh-card h3,
  .sh-icon{
    opacity:1 !important;
  }
}








/* WEBSITE DEVELOPMENT CONVERTS  */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ================= SECTION ================= */

.section-wrap{
  padding:20px 6%;
  font-family:'Poppins',sans-serif;
  color:#e5e7eb;
}

/* ================= HEADER ================= */

.section-header{
  max-width:900px;
  margin:auto;
  text-align:center;
  margin-bottom:35px;
}

/* ================= TITLE ================= */

.section-title{
  font-size:56px;
  font-weight:800;
  line-height:1.2;
}

.title-white{
  color:#ffffff;
}

.title-gradient{
  background:linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ================= DESCRIPTION ================= */

.section-desc{
  font-size:18px;
  font-weight:400;
  line-height:1.8;
  color:#cbd5f5;
  margin-top:14px;
}

/* ================= CONTENT ================= */

.section-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* ================= IMAGE ================= */

.section-image{
  display:flex;
  justify-content:center;
}

.section-image img{
  width:100%;
  max-width:500px;
  border-radius:18px;
  display:block;
}

/* ================= TEXT ================= */

.section-text p{
  font-size:18px;
  line-height:1.8;
  margin-top:10px;
  color:#cbd5f5;
}

/* ================= LIST ================= */

.section-list{
  list-style:none;
  padding:0;
  margin-bottom:12px;
}

.section-list li{
  font-size:18px;
  margin-bottom:6px;
  padding-left:24px;
  position:relative;
}

.section-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#8b5cf6;
  font-weight:700;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

  .section-container{
    grid-template-columns:1fr;
    gap:30px;
  }

  .section-title{
    font-size:38px;
  }

  .section-desc,
  .section-text p,
  .section-list li{
    font-size:16px;
  }

}












/* CONTENT  */





@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= SECTION ================= */

.contentcore-section{
  font-family:'Poppins',sans-serif;
  color:#e5e7eb;
  padding:0 5%;
  overflow:hidden;
}

/* ================= HEADER ================= */

.contentcore-header{
  text-align:center;
  margin-bottom:30px;
}

/* TITLE */

.contentcore-title{
  font-size:48px;
  font-weight:800;
  line-height:1.2;
}

.contentcore-title-white{
  display:block;
  color:#ffffff;
}

.contentcore-title-gradient{
  display:block;
  background:linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* DIVIDER */

.contentcore-divider{
  width:70px;
  height:3px;
  background:#8b5cf6;
  margin:14px auto 0;
  border-radius:2px;
}

/* ================= CONTAINER ================= */

.contentcore-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* ================= TEXT ================= */

.contentcore-text p{
  font-size:17px;
  font-weight:400;
  line-height:1.8;
  margin-bottom:12px;
  color:#cbd5f5;
}

/* ================= LIST ================= */

.contentcore-list{
  list-style:none;
  padding:0;
  margin:12px 0 16px;
}

.contentcore-list li{
  position:relative;
  padding-left:26px;
  margin-bottom:8px;
  font-size:17px;
}

.contentcore-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#8b5cf6;
  font-weight:700;
}

/* ================= IMAGE ================= */

.contentcore-image{
  display:flex;
  justify-content:center;
}

.contentcore-image-glow{
  position:relative;
}

.contentcore-image-glow::before{
  content:"";
  position:absolute;
  inset:-20%;

  background:radial-gradient(
    circle,
    rgba(139,92,246,0.45),
    rgba(236,72,153,0.25),
    transparent 60%
  );

  z-index:0;
}

.contentcore-image-glow img{
  position:relative;
  z-index:2;
  width:100%;
  max-width:340px;
  border-radius:12px;
  display:block;
}

/* ================= DESKTOP ================= */

@media(min-width:992px){

  .contentcore-container{
    flex-direction:row;
    align-items:center;
    gap:40px;
  }

  .contentcore-image{
    justify-content:flex-end;
  }

  .contentcore-image-glow img{
    max-width:420px;
  }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .contentcore-title{
    font-size:36px;
  }

  .contentcore-text p,
  .contentcore-list li{
    font-size:16px;
  }

}







/* WHY CHOOSE SHAINFOTECHNOLOGY */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== WHY CHOOSE US ===== */

.why-wrap{
  padding-top:20px;
  font-family:'Poppins',sans-serif;
  color:#ffffff;
}

/* ================= CONTAINER ================= */

.why-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:30px;
}

/* ================= LEFT ================= */

.why-left{
  text-align:center;
}

.why-left h2{
  font-size:48px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:12px;
}

.why-left h2 span{
  background:linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.why-left p{
  font-size:17px;
  font-weight:400;
  line-height:1.8;
  color:#cbd5f5;
  max-width:620px;
  margin:auto;
  margin-bottom:16px;
}

/* TAGLINE */

.why-tagline{
  font-size:17px;
  font-weight:600;
}

/* ================= FEATURES ================= */

.why-features{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* ================= CARD ================= */

.why-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:18px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  transition:.25s ease;
}

/* EXACT HOVER */

.why-card:hover{
  transform:translateY(-4px);
  border-color:#8b5cf6;
  box-shadow:0 18px 50px rgba(
    139,
    92,
    246,
    0.35
  );
}

/* ================= ICON ================= */

.why-icon{
  width:42px;
  height:42px;
  border-radius:10px;
  background:linear-gradient(
    135deg,
    #8b5cf6,
    #ec4899
  );
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

/* ================= CARD TITLE ================= */

.why-card h4{
  font-size:17px;
  font-weight:600;
  margin-bottom:4px;
}

/* ================= CARD TEXT ================= */

.why-card p{
  font-size:17px;
  font-weight:400;
  color:#cbd5f5;
  line-height:1.7;
}

/* ================= DESKTOP ================= */

@media(min-width:992px){

  .why-wrap{
    padding:60px 8%;
  }

  .why-container{
    flex-direction:row;
    align-items:center;
    gap:40px;
  }

  .why-left{
    flex:1;
    text-align:left;
  }

  .why-left p{
    margin:0 0 18px 0;
  }

  .why-features{
    flex:1;
  }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .why-left h2{
    font-size:36px;
  }

  .why-card p{
    font-size:16px;
  }

}



/* INDUSTRIES */




@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== INDUSTRIES SECTION ===== */

.sha-industries{
  padding-top:0px;
  font-family:'Poppins',sans-serif;
  color:#ffffff;
  overflow:hidden;
}

/* ================= HEADING ================= */

.sha-industries h2{
  text-align:center;
  font-size:48px;
  font-weight:800;
  font-family:'Poppins',sans-serif;
}

/* GRADIENT TEXT */

.sha-industries h2 span{
  background:linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ================= DESCRIPTION ================= */

.sha-industries p{
  max-width:900px;
  margin:0 auto 0px;
  text-align:center;
  font-size:17px;
  font-weight:400;
  line-height:1.8;
  color:#cbd5f5;
  font-family:'Poppins',sans-serif;
}

/* ================= SLIDER ================= */

.industry-slider{
  overflow:hidden;
}

/* TRACK */

.industry-track{
  display:flex;
  gap:50px;
  width:max-content;
  animation:scroll 26s linear infinite;
}

/* PAUSE ON HOVER */

.industry-slider:hover .industry-track{
  animation-play-state:paused;
}

/* ================= ITEM ================= */

.industry-item{
  min-width:220px;
  padding-top:50px;
  text-align:center;
}

/* ================= ICON ================= */

.industry-icon{
  width:120px;
  height:120px;
  margin:0 auto 18px;
  border-radius:50%;
  border:2px solid rgba(
    139,
    92,
    246,
    0.6
  );

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:44px;
  color:#8b5cf6;
  background:rgba(255,255,255,0.02);

  position:relative;
  transition:all .35s ease;
}

/* GLOW */

.industry-icon::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius:50%;

  background:linear-gradient(
    135deg,
    #8b5cf6,
    #ec4899
  );

  opacity:0;
  filter:blur(22px);
  transition:opacity .35s ease;
  z-index:-1;
}

/* EXACT HOVER */

.industry-item:hover .industry-icon{
  background:linear-gradient(
    135deg,
    #8b5cf6,
    #ec4899
  );
  color:#ffffff;
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(
    139,
    92,
    246,
    .45
  );
}

.industry-item:hover .industry-icon::after{
  opacity:.6;
}

/* ================= INDUSTRY TITLE ================= */

.industry-item h4{
  font-size:16px;
  font-weight:600;
  color:#ffffff;
  font-family:'Poppins',sans-serif;
}

/* ================= SCROLL ================= */

@keyframes scroll{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .sha-industries{
    padding:90px 20px;
  }

  .sha-industries h2{
    font-size:36px;
  }

  .sha-industries p{
    font-size:16px;
  }

  .industry-item{
    min-width:180px;
  }

  .industry-icon{
    width:100px;
    height:100px;
    font-size:36px;
  }

}





/* STATS SECTION  */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== STATS SECTION ===== */

.sha-stats{
  background:#ffffff;
  padding:20px 1vw;
  font-family:'Poppins',sans-serif;
}

/* ================= INNER ================= */

.sha-stats-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  text-align:center;
}

/* ================= NUMBER ================= */

.stat-value{
  font-size:48px;
  font-weight:800;
  font-family:'Poppins',sans-serif;
  background:linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:10px;
}

/* ================= LABEL ================= */

.stat-label{
  font-size:17px;
  font-weight:400;
  font-family:'Poppins',sans-serif;
  color:#0f172a;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

  .sha-stats-inner{
    grid-template-columns:1fr 1fr;
    gap:50px;
  }

}

@media(max-width:480px){

  .sha-stats-inner{
    grid-template-columns:1fr;
  }

  .stat-value{
    font-size:42px;
  }

  .stat-label{
    font-size:16px;
  }

}





/* FAQ */



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= FAQ SECTION ================= */

.home-faq-wrap{
  padding-top:20px;
  font-family:'Poppins',sans-serif;
  color:#ffffff;
}

/* ================= CONTAINER ================= */

.home-faq-container{
  max-width:1100px;
  margin:auto;
}

/* ================= TITLE ================= */

.home-faq-title{
  text-align:center;
  font-size:48px;
  font-weight:800;
  margin-bottom:8px;
}

.faq-title-white{
  color:#ffffff;
}

.faq-title-gradient{
  background:linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ================= SUBTITLE ================= */

.home-faq-sub{
  text-align:center;
  color:#cbd5f5;
  font-size:17px;
  margin-bottom:22px;
}

/* ================= CARD ================= */

.home-faq-card{
  border-radius:20px;
  padding:20px;
  box-shadow:0 20px 60px rgba(
    0,
    0,
    0,
    0.25
  );
}

/* ================= FAQ ITEM ================= */

.home-faq-item{
  border-top:1px solid rgba(
    255,
    255,
    255,
    0.1
  );
  padding:14px 4px;
}

.home-faq-item:last-child{
  border-bottom:1px solid rgba(
    255,
    255,
    255,
    0.1
  );
}

/* ================= HEADER ================= */

.home-faq-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

/* ================= QUESTION ================= */

.home-faq-question{
  font-size:17px;
  font-weight:600;
}

.home-faq-item.open
.home-faq-question{
  color:#8b5cf6;
}

/* ================= TOGGLE ================= */

.home-faq-toggle{
  width:30px;
  height:30px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
  font-weight:700;

  background:linear-gradient(
    135deg,
    #8b5cf6,
    #ec4899
  );

  color:#ffffff;
}

/* ================= ANSWER ================= */

.home-faq-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:all .35s ease;
}

.home-faq-item.open
.home-faq-answer{
  max-height:200px;
  opacity:1;
}

.home-faq-answer p{
  margin-top:8px;
  font-size:17px;
  line-height:1.7;
  color:#cbd5f5;
}

/* ================= CTA ================= */

.home-faq-cta{
  margin-top:24px;
  padding:20px;
  border-radius:18px;
  background:#ffffff;
  text-align:center;
}

.home-faq-cta h3{
  font-size:24px;
  font-weight:700;
  color:#020617;
  margin-bottom:6px;
}

.home-faq-cta p{
  font-size:17px;
  color:#475569;
  margin-bottom:12px;
}

.home-faq-cta button{
  padding:10px 28px;
  border-radius:999px;
  border:none;
  background:#020617;
  color:#ffffff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .home-faq-title{
    font-size:36px;
  }

  .home-faq-question,
  .home-faq-answer p{
    font-size:16px;
  }

}