.hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      
   
    }

  

   

    /* .container{
      width:min(1240px, calc(100% - 40px));
      margin:auto;
    } */

    .hero-grid{
      display:grid;
      grid-template-columns:1.05fr 1fr;
      align-items:center;
      gap:40px;
    }

    .hero-left, .hero-right{
      transition:all 1.2s ease;
    }

    /* .hero-left{
      transform:translateX(-90px);
    }

    .hero-right{
      transform:translateX(90px);
    } */

    .hero.show .hero-left,
    .hero.show .hero-right{
      opacity:1;
      transform:translateX(0);
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:#f18047;
      color:#ff6f12;
      padding:12px 18px;
      border-radius:999px;
      font-size:14px;
      font-weight:700;
      letter-spacing:2px;
      text-transform:uppercase;
      margin-bottom:24px;
      box-shadow:var(--soft-shadow);
    }

    .hero-left h1{
      font-size:clamp(38px, 5vw, 42px);
      line-height:1.14;
      font-weight:800;
      margin-bottom:24px;
      letter-spacing:-1px;
    }

    .hero-left p{
      font-size:18px;
      line-height:1.50;
      color:var(--muted);
      max-width:720px;
      margin-bottom:38px;
    }

    .hero-actions{
      display:flex;
      align-items:center;
      /* gap:24px; */
      flex-wrap:wrap;
      margin-bottom:28px;
    }

    .btn-primary{
      display:inline-flex;
      align-items:center;
      gap:14px;
      background:linear-gradient(135deg, var(--primary) 0%, #5c4fb1 100%);
      color:var(--white);
      text-decoration:none;
      padding:10px 24px;
      border-radius:999px;
      font-size:22px;
      font-weight:700;
      box-shadow:0 18px 35px rgba(72, 61, 133, 0.28);
      transition:.35s ease;
    }

    .btn-primary:hover{
      transform:translateY(-4px);
      background:linear-gradient(135deg, var(--primary-dark) 0%, #4f42a3 100%);
    }

    .btn-primary .arrow{
      width:30px;
      height:30px;
      display:grid;
      place-items:center;
      border:1px solid rgba(255,255,255,0.35);
      border-radius:50%;
      font-size:16px;
    }

    .watch-wrap{
      display:flex;
      align-items:center;
      gap:18px;
      color:var(--text);
      font-weight:600;
      font-size:24px;
      cursor:pointer;
    }

    .watch-btn{
      width:74px;
      height:74px;
      border-radius:50%;
      background:var(--white);
      box-shadow:var(--shadow);
      display:grid;
      place-items:center;
      position:relative;
      transition:.35s ease;
    }

    .watch-btn::before{
      content:"";
      position:absolute;
      inset:-8px;
      border-radius:50%;
      border:1px dashed rgba(255,140,47,0.35);
      animation:spin 10s linear infinite;
    }

    .watch-btn span{
      width:0;
      height:0;
      border-top:12px solid transparent;
      border-bottom:12px solid transparent;
      border-left:18px solid var(--orange);
      margin-left:5px;
    }

    .watch-wrap:hover .watch-btn{
      transform:scale(1.08);
    }

    .client-row{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
    }

    .avatars{
      display:flex;
      align-items:center;
    }

    .avatar{
      width:52px;
      height:52px;
      border-radius:50%;
      border:4px solid #fff;
      margin-left:-12px;
      overflow:hidden;
      box-shadow:var(--soft-shadow);
      background:linear-gradient(135deg, #ffb26b, #ff7c5f);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:18px;
      font-weight:700;
    }

    .avatar:first-child{
      margin-left:0;
    }

    .client-row h4{
      font-size:24px;
      font-weight:700;
    }

   .hero-right{
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stack-carousel{
  position: relative;
  width: 520px;
  height: 340px;
}

.stack-card{
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  background: #fff;
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.stack-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-1{ animation-name: stack1; }
.card-2{ animation-name: stack2; }
.card-3{ animation-name: stack3; }
.card-4{ animation-name: stack4; }

@keyframes stack1 {
  0%, 25% {
    transform: translate(0,0) scale(1) rotate(0deg);
    z-index: 4;
    opacity: 1;
  }
  26%, 50% {
    transform: translate(35px,18px) scale(0.96) rotate(4deg);
    z-index: 3;
    opacity: .95;
  }
  51%, 75% {
    transform: translate(70px,36px) scale(0.92) rotate(8deg);
    z-index: 2;
    opacity: .85;
  }
  76%, 100% {
    transform: translate(105px,54px) scale(0.88) rotate(12deg);
    z-index: 1;
    opacity: .75;
  }
}

@keyframes stack2 {
  0%, 25% {
    transform: translate(105px,54px) scale(0.88) rotate(12deg);
    z-index: 1;
    opacity: .75;
  }
  26%, 50% {
    transform: translate(0,0) scale(1) rotate(0deg);
    z-index: 4;
    opacity: 1;
  }
  51%, 75% {
    transform: translate(35px,18px) scale(0.96) rotate(4deg);
    z-index: 3;
    opacity: .95;
  }
  76%, 100% {
    transform: translate(70px,36px) scale(0.92) rotate(8deg);
    z-index: 2;
    opacity: .85;
  }
}

@keyframes stack3 {
  0%, 25% {
    transform: translate(70px,36px) scale(0.92) rotate(8deg);
    z-index: 2;
    opacity: .85;
  }
  26%, 50% {
    transform: translate(105px,54px) scale(0.88) rotate(12deg);
    z-index: 1;
    opacity: .75;
  }
  51%, 75% {
    transform: translate(0,0) scale(1) rotate(0deg);
    z-index: 4;
    opacity: 1;
  }
  76%, 100% {
    transform: translate(35px,18px) scale(0.96) rotate(4deg);
    z-index: 3;
    opacity: .95;
  }
}

@keyframes stack4 {
  0%, 25% {
    transform: translate(35px,18px) scale(0.96) rotate(4deg);
    z-index: 3;
    opacity: .95;
  }
  26%, 50% {
    transform: translate(70px,36px) scale(0.92) rotate(8deg);
    z-index: 2;
    opacity: .85;
  }
  51%, 75% {
    transform: translate(105px,54px) scale(0.88) rotate(12deg);
    z-index: 1;
    opacity: .75;
  }
  76%, 100% {
    transform: translate(0,0) scale(1) rotate(0deg);
    z-index: 4;
    opacity: 1;
  }
}

  @media (max-width: 768px){
    .stack-carousel{
      width: 92%;
      height: 250px;
    }
  }

      .floating-card,
      .icon-badge{
        position:absolute;
        z-index:5;
        animation:floatSoft 4s ease-in-out infinite;
      }

      .floating-card{
        background:rgba(255,255,255,0.92);
        backdrop-filter:blur(10px);
        box-shadow:var(--shadow);
        border:1px solid rgba(255,255,255,0.8);
        border-radius:28px;
        padding:20px 28px;
        display:flex;
        align-items:center;
        gap:18px;
      }

      .floating-card .icon{
        width:58px;
        height:58px;
        border-radius:50%;
        display:grid;
        place-items:center;
        font-size:24px;
        background:#ffe8d8;
        color:var(--orange);
        flex-shrink:0;
      }

      .floating-card h3{
        font-size:24px;
        font-weight:800;
        margin-bottom:4px;
      }

      .floating-card p{
        font-size:18px;
        color:var(--muted);
      }

      .card-top{
        top:105px;
        right:10px;
        animation-delay:.5s;
      }

      .card-bottom{
        left:55px;
        bottom:110px;
        animation-delay:1s;
      }

      .card-bottom .icon{
        background:#ece7ff;
        color:#867de0;
      }

      .icon-badge{
        width:64px;
        height:64px;
        border-radius:50%;
        display:grid;
        place-items:center;
        background:#fff;
        box-shadow:var(--soft-shadow);
        font-size:28px;
        font-weight:700;
      }

      .i-shopify{
        top:88px;
        left:92px;
        color:#5aa043;
      }

      .i-wordpress{
        top:265px;
        left:12px;
        color:#2f62c9;
      }

      .i-html{
        left:26px;
        bottom:245px;
        color:#f16529;
      }

      .i-instagram{
        top:320px;
        right:-6px;
        background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
        color:#fff;
      }

      .i-facebook{
        right:66px;
        bottom:78px;
        color:#3b5998;
      }

      .i-php{
        left:50%;
        transform:translateX(-50%);
        bottom:18px;
        color:#5b67a5;
        width:74px;
        height:74px;
        font-size:20px;
        font-weight:800;
        background:#dfe3ff;
      }

      .shape{
        position:absolute;
        border-radius:50%;
        z-index:0;
        filter:blur(2px);
        opacity:.7;
      }

      /* .shape.one{
        width:80px;
        height:80px;
        background:#e4f5ef;
        top:20px;
        left:20px;
      } */

      /* .shape.two{
        width:60px;
        height:60px;
        background:#f8e8de;
        right:110px;
        top:40px;
      } */

      .shape.three{
        width:44px;
        height:44px;
        background:#e6e2fb;
        bottom:80px;
        left:160px;
      }

      @keyframes spin{
        from{ transform:rotate(0deg); }
        to{ transform:rotate(360deg); }
      }

      @keyframes rotateRing{
        from{ transform:translate(-50%, -50%) rotate(0deg); }
        to{ transform:translate(-50%, -50%) rotate(360deg); }
      }

      @keyframes floatY{
        0%,100%{ transform:translate(-50%, -50%) translateY(0px); }
        50%{ transform:translate(-50%, -50%) translateY(-12px); }
      }

      @keyframes floatSoft{
        0%,100%{ transform:translateY(0px); }
        50%{ transform:translateY(-10px); }
      }

    @media (max-width: 1199px){
      .hero-grid{
        grid-template-columns:1fr;
      }

      .hero-left{
        text-align:center;
      }

      .hero-left p{
        margin-inline:auto;
      }

      .hero-actions,
      .client-row{
        justify-content:center;
      }

      .hero-right{
        min-height:700px;
      }
    }

    @media (max-width: 767px){
      .hero{
        padding:30px 0 60px;
      }

      /* .container{
        width:min(100% - 24px, 1240px);
      } */

      .hero-left h1{
        font-size:40px;
      }

      .hero-left p{
        font-size:18px;
        line-height:1.7;
      }

      .btn-primary{
        padding:16px 24px;
        font-size:18px;
      }

      .watch-wrap{
        font-size:18px;
      }

      .watch-btn{
        width:62px;
        height:62px;
      }

      .client-row h4{
        font-size:24px;
        text-align:center;
      }

      .hero-right{
        min-height:560px;
      }

      .hero-visual{
        height:560px;
      }

      .ring-outer{
        width:360px;
        height:360px;
      }

      .ring-main{
        width:300px;
        height:300px;
      }

      .ring-inner{
        width:220px;
        height:220px;
      }

      .person img{
        width:250px;
      }

      .floating-card{
        padding:12px 16px;
        border-radius:20px;
        gap:12px;
      }

      .floating-card .icon{
        width:42px;
        height:42px;
        font-size:18px;
      }

      .floating-card h3{
        font-size:18px;
      }

      .floating-card p{
        font-size:14px;
      }

      .card-top{
        top:75px;
        right:0;
      }

      .card-bottom{
        left:10px;
        bottom:92px;
      }

      .icon-badge{
        width:48px;
        height:48px;
        font-size:20px;
      }

      .i-shopify{ top:60px; left:30px; }
      .i-wordpress{ top:200px; left:0; }
      .i-html{ left:5px; bottom:180px; }
      .i-instagram{ top:235px; right:0; }
      .i-facebook{ right:20px; bottom:45px; }
      .i-php{ bottom:0; width:58px; height:58px; font-size:16px; }
    }

    .why-section{
      width:100%;
      padding:90px 20px;
    }

    .why-wrapper{
      max-width:1150px;
      margin:auto;
      background:#F5F5F5;
      border-radius:50px;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      overflow:visible;
      position:relative;
      box-shadow:0 20px 60px rgba(31, 24, 74, 0.18);
      height: 400px;
    }

    .why-card{
      padding:60px 40px 48px;
      text-align:center;
      color:#2c2c2c;
      position:relative;
      min-height:350px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:flex-start;
      transition:0.35s ease;
      z-index:1;
      width: 300px;
    }

    .why-card:not(.highlight)::after{
      content:"";
      position:absolute;
      top:50px;
      right:0;
      width:1px;
      height:70%;
      background:rgba(255,255,255,0.10);
    }

    .why-card:last-child::after{
      display:none;
    }

    .why-card .icon{
      width:70px;
      height:70px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:26px;
    }

    .why-card .icon svg{
      width:48px;
      height:48px;
      stroke:#2c2c2c;
    }

    .why-card h3{
      font-size:28px;
      font-weight:700;
      line-height:1.25;
      margin-bottom:20px;
    }

    .why-card p{
      font-size:15px;
      line-height:1.4;
      color:#2c2c2c;
      max-width:290px;
    }

    .highlight{
      background:#D4AF37;
      border-radius:28px;
      transform:translateY(-24px);
      box-shadow:0 18px 45px rgba(255, 106, 0, 0.28);
      height: 450px;
      width: 250px;
      z-index:3;
    }

    .highlight p{
      color:#2c2c2c;
    }

    .highlight::after{
      display:none !important;
    }


    @media (max-width: 1199px){
        .why-section{
            display: flex;
        justify-content: center;
align-items: center;
        }
      .why-wrapper{
        flex-direction: column;
        height: auto;
        /* grid-template-columns: repeat(2, 1fr); */
        
      }
      .why-card{
        width: 100%;
      }
     
    @media (max-width: 767px){
      .why-section{
        padding:60px 15px;
      }

      .why-wrapper{
        grid-template-columns:1fr;
        border-radius:28px;
        overflow:hidden;
      }

      .why-card::after{
        display:none !important;
      }
      .highlight{
        border-radius:25px;
        width: 100%;
      }
    }}




    /* Latest Project Start */
     .work-section{
      /* padding: 40px 0 60px; */
      /* background: linear-gradient(180deg, #B08D1C 0%, #B08D2C 35%, #D4AF37 100%); */
      overflow: hidden;
    }

    .work-title{
      text-align:center;
      color:#000000;
      font-size: 46px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .marquee-wrapper{
      width:100%;
      overflow:hidden;
      position:relative;
      margin-bottom:30px;
    }

    .marquee-track{
      display:flex;
      width:max-content;
      gap:22px;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      animation-play-state: running;
      will-change: transform;
    }

    /* .marquee-wrapper:hover .marquee-track{
      animation-play-state: paused;
    } */

    .marquee-left{
      animation-name: scrollLeft;
      animation-duration: 28s;
    }

    .marquee-right{
      animation-name: scrollRight;
      animation-duration: 28s;
    }

    .work-card{
      flex: 0 0 auto;
      width: 480px;
      height: 345px;
      border-radius: 28px;
      overflow: hidden;
      background: rgba(255,255,255,0.08);
      box-shadow: 0 12px 30px rgba(0,0,0,0.18);
      transition: transform .35s ease;
    }

    .work-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .work-card:hover{
      transform: translateY(-6px);
    }

    @keyframes scrollLeft{
      0%{
        transform: translateX(0);
      }
      100%{
        transform: translateX(-50%);
      }
    }

    @keyframes scrollRight{
      0%{
        transform: translateX(-50%);
      }
      100%{
        transform: translateX(0);
      }
    }

    @media (max-width: 991px){
      .work-title{
        font-size: 40px;
      }

      .work-card{
        width: 360px;
        height: 260px;
      }

      .marquee-left,
      .marquee-right{
        animation-duration: 22s;
      }
    }

    @media (max-width: 576px){
      .work-title{
        font-size: 32px;
      }

      .work-card{
        width: 280px;
        height: 210px;
        border-radius: 20px;
      }

      .marquee-track{
        gap:14px;
      }

      .marquee-left,
      .marquee-right{
        animation-duration: 18s;
      }
    }









    /* testimonial */
   .testimonials {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.tag {
  background: orange;
  padding: 5px 15px;
  border-radius: 20px;
  color: #000;
  display: inline-block;
  font-weight: 600;
}

.testimonial-wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-top: 40px;
  flex-wrap: wrap;
}

.review-summary {
  width: 260px;
  min-height: 100%;
  background: #312925;
  padding: 25px 20px;
  border-radius: 12px;
  flex-shrink: 0;
  text-align: left;
}

.review-summary h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.swiper {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  text-align: left;
}

.card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: black;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.stars {
  color: gold;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Tablet */
@media (max-width: 991px) {
  .testimonial-wrapper {
    flex-direction: column;
  }

  .review-summary {
    width: 100%;
    text-align: center;
  }

  .swiper {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .testimonials {
    padding: 40px 15px;
  }

  .testimonials h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .review-summary {
    padding: 20px 15px;
  }

  .review-summary h3 {
    font-size: 20px;
  }

  .card {
    padding: 18px 15px;
  }

  .card h4 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .stars {
    font-size: 16px;
  }
}





/* Services PAge */
 .portfolio-showcase {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .portfolio-heading {
      font-size: 32px;
      margin-bottom: 25px;
      color: #222;
    }

    .portfolio-filters {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }

    .portfolio-filter-btn {
      padding: 10px 22px;
      border: none;
      outline: none;
      cursor: pointer;
      border-radius: 30px;
      background: #e0e0e0;
      color: #222;
      font-size: 15px;
      font-weight: 600;
      transition: 0.3s;
    }

    .portfolio-filter-btn:hover,
    .portfolio-filter-btn.active {
      background: #000;
      color: #fff;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .portfolio-box {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: 0.3s;
    }

    .portfolio-box:hover {
      transform: translateY(-5px);
    }

    .portfolio-box img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .portfolio-info {
      padding: 15px;
      text-align: left;
    }

    .portfolio-info h4 {
      font-size: 20px;
      margin-bottom: 8px;
      color: #111;
    }

    .portfolio-info p {
      font-size: 14px;
      color: #666;
      line-height: 1.5;
    }

    .portfolio-hidden {
      display: none;
    }

    @media (max-width: 991px) {
      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
     

      .portfolio-heading {
        font-size: 26px;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-filter-btn {
        padding: 9px 18px;
        font-size: 14px;
      }

      .portfolio-box img {
        height: 200px;
      }

      .portfolio-info h4 {
        font-size: 18px;
      }

      .portfolio-info p {
        font-size: 13px;
      }
    }



    /* form */
    /* Modal Design */
.enquiry-modal {
    border-radius: 18px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Title */
.modal-title {
    font-weight: 600;
}

/* Floating Label Form */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    padding: 10px 5px;
    font-size: 14px;
    background: transparent;
    transition: 0.3s;
}

.form-group label {
    position: absolute;
    left: 5px;
    top: 10px;
    color: #888;
    font-size: 14px;
    transition: 0.3s;
    pointer-events: none;
}

/* Focus Animation */
.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 2px solid #000;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 12px;
    color: #000;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #2c2c2c;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #ffcc00;
    color: #000;
}




