body{
    margin:0;
    font-family:'Poppins',sans-serif;
}

/* HERO SECTION */
.hero-section{
    min-height:50vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
    background:url(../img/home-bg.gif);
}

.hero-section::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:220px;
    opacity:.35;
    animation: wave 20s linear infinite;
}

@keyframes wave{
    from{background-position-x:0;}
    to{background-position-x:2000px;}
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1050px;
    padding:20px;
}

.hero-title{
    font-size: clamp(34px, 5vw, 64px);
    font-weight:800;
    line-height:1.15;
}

.hero-title span{
    color:#38e6ff;
}

.hero-text15{
    margin-top:18px;
    font-size: 14px;
    color:#dbe7ff;
    line-height:1.8;
}

.hero-btn{
    margin-top:35px;
}

.hero-btn a{
    background:#38e6ff;
    color:#00172e;
    padding:14px 34px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
    display:inline-block;
}

.hero-btn a:hover{
    background:#22cce4;
    transform:translateY(-2px);
}

.trusted{
    margin-top:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    font-size:14px;
    color:#b8c7e0;
}

.trusted::before,
.trusted::after{
    content:"";
    width:90px;
    height:1px;
    background:#38e6ff;
}
@media(max-width:576px){
    .hero-text{font-size:15px;}
}
.services-grid{
    display:grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    grid-template-rows: 240px 240px;
    gap:24px;
}

.service-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    color:#fff;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.7));
    z-index:0;
}
.service-card *{position:relative;z-index:2;}

.center-card{
    grid-row:1 / span 2;
}

.title{
    font-size:18px;
    font-weight:600;
}
.desc{
    font-size:13px;
    line-height:1.6;
}

.bg-salesforce{background:linear-gradient(135deg,#49c6dc,#1b4fa0);}
.bg-lead{background:url('https://www.sgdconsult.com/img/sgd-home4.png') center/cover;}
.bg-digital{background:url('https://www.sgdconsult.com/img/sgd-home.png') center/cover;}
.bg-data{background:url('https://www.sgdconsult.com/img/sgd-home2.png') center/cover;}
.bg-recruit{background:linear-gradient(135deg,#1b6dff,#0c3b9e);}

@media(max-width:991px){
    .services-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }
    .center-card{grid-row:auto;}
}

.results-section{
    padding:80px 0;
}

.results-title{
    font-size:32px;
    font-weight:700;
    text-align:center;
}
.results-text{
    max-width:900px;
    margin:18px auto 0;
    text-align:center;
    font-size:14px;
    line-height:1.7;
    color:#3d4d63;
}

.result-card{
    height:320px;
    border-radius:28px;
    color:#fff;
    padding:28px;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:all .4s ease;
}

.result-card:hover{
    transform:translateY(-8px) scale(1.03);
    box-shadow:0 25px 45px rgba(0,0,0,.35);
}

.card-top{
    transition:opacity .3s ease;
}
.result-number{
    font-size:42px;
    font-weight:700;
}
.result-title{
    font-size:16px;
    font-weight:600;
    margin-top:6px;
}

.card-hover-text{
    position:absolute;
    left:28px;
    right:28px;
    bottom:28px;
    font-size:13px;
    line-height:1.6;
    opacity:0;
    transform:translateY(25px);
    transition:all .4s ease;
}
.result-card:hover .card-hover-text{
    opacity:1;
    transform:translateY(0);
}
.result-card:hover .card-top{
    opacity:.85;
}

.bg-1{
    background:linear-gradient(145deg,#061a46,#03102b);
}
.bg-2{
    background:linear-gradient(145deg,#6a4cff,#00d2d3);
}
.bg-3{
    background:linear-gradient(145deg,#1f7a7a,#031b3a);
}
.bg-4{
    background:linear-gradient(145deg,#2e7d6b,#f39c12);
}
@media(max-width:991px){
    .result-card{
        height:auto;
        min-height:260px;
    }
}

.industry-section{
    padding:90px 0;
    background:linear-gradient(180deg,#041a3a,#052b5c);
    color:#fff;
    overflow:hidden;
        background:#041a3a;
}

.section-title{
    font-size:44px;
    font-weight:700;
    line-height:1.2;
}
.section-text{
    font-size:15px;
    color:#d5e1ff;
    max-width:460px;
    margin-top:18px;
}
.cta-btn{
    margin-top:26px;
    display:inline-block;
    background:#fff;
    color:#0040ff;
    padding:12px 30px;
    border-radius:40px;
    font-weight:500;
    text-decoration:none;
}
.cta-btn:hover{
    background:#e8efff;
}

.scroll-box{
    height:520px;
    overflow:hidden;
    position:relative;
}

.scroll-track{
    display:flex;
    flex-direction:column;
}

.industry-card{
    background:linear-gradient(180deg,#062f6f,#041d42);
    border-radius:18px;
    padding:26px;
    display:flex;
    gap:18px;
    margin-bottom:26px;
    box-shadow:0 0 0 1px rgba(255,255,255,.08);
}

.icon-box{
    min-width:56px;
    height:56px;
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.icon-box img{
    width:32px;
}

.card-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
}
.card-text{
    font-size:14px;
    color:#d5e1ff;
    line-height:1.6;
}

@media(max-width:991px){
    .scroll-box {
        height: 475px;
        overflow: scroll;
}
.scroll-track{transform:none!important;}}
.strategy-section {
  padding: 80px 0;
  background: #f9fbff;
  overflow: hidden;
}

.strategy-header {
  position: relative;
  margin-bottom: 40px;
}

.small-text {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}

.main-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #0f172a;
  max-width: 700px;
}

.arrow-controls {
  position: absolute;
  right: 0;
  top: 10px;
  display: flex;
  gap: 12px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: #0f172a;
  color: #fff;
}

.steps-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.steps-wrapper::-webkit-scrollbar {
  display: none;
}

.step-box {
  min-width: 320px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
}

.step-number {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 12px;
}

.step-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.step-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* Mobile */
@media (max-width: 768px) {
  .arrow-controls {
    position: static;
    margin-top: 20px;
  }

  .step-box {
    min-width: 85%;
  }
}

.services-section {
    background: linear-gradient(180deg, #052552, #021733);
    padding: 80px 0;
    color: #fff;
}
.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.service-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid #fff;
    border-radius: 12px;
    cursor: pointer;
    background: transparent;
    transition: 0.3s;
}
.service-tab.active,
.service-tab:hover {
    background: #0c3c78;
}
.icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}
.bg-green { background: #1fbf75; }
.bg-purple { background: #7b61ff; }
.bg-blue { background: #1da1f2; }
.bg-orange { background: #f2994a; }
.content-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    color: #000;
}
.content {
    display: none;
}
.content.active {
    display: block;
}
.item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 16px;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .content-box {
        padding: 25px;
    }
    .hero-section {
      position: relative;
      padding: 10px!important;
      overflow: hidden;
    }
}

.hero-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
    .hero-section::after {
      content: "";
      position: absolute;
      right: -150px;
      bottom: -150px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle at center, rgba(0, 153, 255, 0.08), transparent 70%);
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-title {
      font-size: 44px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .hero-text {
      font-size: 16px;
      color: #4a5a70;
      max-width: 520px;
      margin-bottom: 30px;
    }
    .email-input {
      max-width: 360px;
      border-radius: 30px;
      padding: 14px 20px;
      border: none;
      background: #eef2f7;
    }
    .btn-talk {
      border-radius: 30px;
      padding: 14px 28px;
      background: linear-gradient(135deg, #00d2ff, #3a7bd5);
      color: #fff;
      font-weight: 600;
      border: none;
      margin-left: 10px;
    }
    .btn-talk:hover {
      opacity: 0.9;
    }
    .hero-image-wrapper {
      position: relative;
      z-index: 2;
    }
    .hero-image {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .stat-card {
      position: absolute;
      background: #ffffff;
      border-radius: 16px;
      padding: 16px 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      text-align: center;
    }
    .stat-value {
      font-size: 32px;
      font-weight: 700;
      color: #00a8ff;
    }
    .stat-text {
      font-size: 13px;
      color: #4a5a70;
      margin-top: 5px;
    }
    .stat-1 {
      top: 18%;
      left: -40px;
    }
    .stat-2 {
      top: 8%;
      right: -30px;
    }
    @media (max-width: 991px) {
     .hero-title {
        font-size: 18px;
        line-height: normal;
        padding: 0px !important;
    }
      .stat-card {
        position: static;
        margin-top: 20px;
      }
      .hero-image-wrapper {
        margin-top: 40px;
      }
    }
     .fit-section {
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    .fit-image img {
      width: 100%;
      border-radius: 28px;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }
    .fit-content {
      padding-left: 60px;
    }
    .fit-small-title {
      font-size: 14px;
      font-weight: 600;
      color: #6b7a90;
      margin-bottom: 10px;
    }
    .fit-counter {
      font-size: 14px;
      color: #6b7a90;
      float: right;
    }
    .fit-title {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .fit-text {
      font-size: 16px;
      color: #4a5a70;
      max-width: 520px;
      min-height: 80px;
      transition: opacity 0.4s ease;
    }
    .fit-nav {
      margin-top: 40px;
      display: flex;
      gap: 14px;
    }
    .nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid #d6dde7;
      background: #f8fafc;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .nav-btn:hover {
      background: #eef3f9;
    }
    @media (max-width: 991px) {
      .fit-content {
        padding-left: 0;
        margin-top: 40px;
      }
      .fit-title {
        font-size: 32px;
      }
    }
    .case-section{padding:80px 0;position:relative;}
.section-title{text-align:center;font-size:34px;font-weight:700;margin-bottom:50px;}
.case-wrapper{overflow:hidden;}
.case-track{display:flex;transition:transform .6s ease;}
.case-slide{min-width:100%;padding:0 12px;}
.case-card{border-radius:22px;padding:32px;color:#fff;height:100%;}
.gradient-blue{background:linear-gradient(180deg,#1b3fa3,#1fa2d6);} 
.gradient-navy{background:linear-gradient(180deg,#0e2a5c,#1b6fdc);} 
.white-card{background:#fff;color:#0b1b33;}
.case-card h5{font-size:20px;font-weight:700;margin-bottom:14px;}
.case-card p{font-size:15px;line-height:1.6;}
.quote{font-size:32px;font-weight:700;line-height:1;}
.author{display:flex;align-items:center;gap:12px;margin-top:22px;}
.author img{width:42px;height:42px;border-radius:50%;}
.author-name{font-weight:600;}
.author-role{font-size:14px;color:#6c7a90;}
.slider-nav{position:absolute;top:80px;right:80px;display:flex;gap:8px;}
.nav-btn{width:36px;height:36px;border-radius:50%;border:1px solid #d0d7e2;background:#f5f7fa;cursor:pointer;}
.dots{text-align:center;margin-top:22px;}
.dot{width:8px;height:8px;border-radius:50%;background:#cbd5e1;display:inline-block;margin:0 4px;}
.dot.active{background:#2563eb;}
@media(max-width:991px){
  .slider-nav{right:20px;top:20px;}
}
