


:root{
    --pf-blue:#18afea;
    --pf-dark:#082b43;
    --pf-blue-dark:#087db8;
    --pf-text:#637786;
    --pf-light:#eefaff;
    --pf-border:#dcecf3;
}


/* =========================================================
   MAIN
========================================================= */

.pf-page{
    width:100%;
    background:#fff;
    color:var(--pf-dark);
    font-family:"Poppins",Arial,sans-serif;
    overflow:hidden;
}

.pf-container{
    width:92%;
    max-width:1400px;
    margin:auto;
}


/* =========================================================
   HERO
========================================================= */

.pf-hero{
    position:relative;
    padding:100px 0 75px;
    text-align:center;
    background:
        radial-gradient(circle at 10% 30%,rgba(24,175,234,.14),transparent 25%),
        radial-gradient(circle at 90% 30%,rgba(24,175,234,.12),transparent 25%),
        linear-gradient(135deg,#f8fdff,#eaf8ff);
}

.pf-hero-content{
    max-width:850px;
    margin:auto;
}

.pf-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 18px;
    background:#ddf5ff;
    color:var(--pf-blue-dark);
    border:1px solid #c5edfb;
    border-radius:40px;
    font-size:12px;
    font-weight:700;
    margin-bottom:20px;
}

.pf-tag i{
    font-size:14px;
}

.pf-hero h1{
    margin:0 0 18px;
    font-size:54px;
    line-height:1.15;
    font-weight:800;
}

.pf-hero h1 span{
    color:var(--pf-blue);
}

.pf-hero p{
    max-width:720px;
    margin:auto;
    color:var(--pf-text);
    font-size:15px;
    line-height:1.8;
}


/* =========================================================
   FILTER
========================================================= */

.pf-filter-area{
    padding:35px 0 15px;
    background:#fff;
    position:relative;
    z-index:20;
}

.pf-filter{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:9px;
}

.pf-filter-btn{
    border:1px solid var(--pf-border);
    background:#fff;
    color:#607482;
    padding:10px 18px;
    border-radius:30px;
    font-family:inherit;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.pf-filter-btn:hover{
    color:var(--pf-blue-dark);
    border-color:#9edff4;
    transform:translateY(-2px);
}

.pf-filter-btn.active{
    background:linear-gradient(135deg,#19b4ed,#087db8);
    color:#fff;
    border-color:transparent;
    box-shadow:0 8px 20px rgba(24,175,234,.25);
}


/* =========================================================
   PORTFOLIO AREA
========================================================= */

.pf-portfolio{
    padding:50px 0 100px;
    background:#fff;
}


/* =========================================================
   4 COLUMN GRID
========================================================= */

.pf-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}


/* =========================================================
   CARD
========================================================= */

.pf-card{
    background:#fff;
    border:1px solid var(--pf-border);
    border-radius:16px;
    overflow:hidden;
box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 1);
    transition:.45s;
    animation:pfCardIn .55s ease both;
}

@keyframes pfCardIn{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.pf-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 25px 55px rgba(8,43,67,.13),
        0 0 0 1px rgba(24,175,234,.10);
}


/* =========================================================
   BROWSER
========================================================= */

.pf-browser{
    position:relative;
    height:410px;
    background:#f0f8fb;
    overflow:hidden;
}

.pf-browser-bar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:38px;
    background:rgba(255,255,255,.97);
    border-bottom:1px solid #dcecf3;
    display:flex;
    align-items:center;
    padding:0 12px;
    gap:5px;
    z-index:20;
}

.pf-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#b9dce9;
}

.pf-url{
    height:19px;
    width:65%;
    margin-left:8px;
    background:#f0f7fa;
    border-radius:20px;
    border:1px solid #e1edf2;
}


/* =========================================================
   SCREENSHOT HOLDER
========================================================= */

.pf-screen{
    position:absolute;
    left:0;
    right:0;
    top:38px;
    bottom:0;
    overflow:hidden;
    cursor:pointer;
}


/*
    IMPORTANT:
    Image is NOT object-fit cover.
    It keeps its natural long height.
*/

.pf-screen #1982bb{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:auto;
    min-height:100%;
    display:block;
    object-fit:initial;
    object-position:top center;

    transform:translateY(0);

    transition:
        transform 6s cubic-bezier(.22,.61,.36,1),
        filter .35s ease;
}


/* =========================================================
   HOVER SCROLL
========================================================= */

.pf-card:hover .pf-screen #1982bb{
    filter:saturate(1.06);
}


/* =========================================================
   SCROLL HINT
========================================================= */

.pf-scroll-hint{
    position:absolute;
    z-index:15;
    bottom:14px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:7px;
    padding:7px 12px;
    border-radius:30px;
    background:rgba(255,255,255,.94);
    color:var(--pf-blue-dark);
    font-size:10px;
    font-weight:700;
    white-space:nowrap;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.3s;
}

.pf-scroll-hint i{
    animation:pfArrow 1.2s infinite;
}

@keyframes pfArrow{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(4px);
    }

}

.pf-card:hover .pf-scroll-hint{
    opacity:0;
    transform:translate(-50%,10px);
}


/* =========================================================
   BLUE TOP GLOW
========================================================= */

.pf-screen:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:60px;
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,.18),
        transparent
    );
    pointer-events:none;
}


/* =========================================================
   CARD INFO
========================================================= */

.pf-info{
    padding:19px 18px 20px;
}

.pf-info-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:9px;
}

.pf-category{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:5px 9px;
    border-radius:20px;
    background:#e7f8ff;
    color:var(--pf-blue-dark);
    font-size:9px;
    font-weight:700;
}

.pf-number{
    font-size:9px;
    color:#9aabb5;
    font-weight:700;
}

.pf-info h3{
    font-size:16px;
    line-height:1.35;
    margin:0 0 8px;
}

.pf-info p{
    color:var(--pf-text);
    font-size:11px;
    line-height:1.65;
    margin:0 0 14px;
}

.pf-view{
    display:inline-flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    color:var(--pf-blue-dark);
    font-size:11px;
    font-weight:700;
    transition:.3s;
}

.pf-view i{
    transition:.3s;
}

.pf-view:hover{
    color:var(--pf-blue);
}

.pf-view:hover i{
    transform:translateX(4px);
}


/* =========================================================
   HIDDEN CARD
========================================================= */

.pf-card.pf-hide{
    display:none;
}


/* =========================================================
   EMPTY
========================================================= */

.pf-empty{
    display:none;
    text-align:center;
    padding:70px 20px;
}

.pf-empty i{
    color:var(--pf-blue);
    font-size:40px;
    margin-bottom:15px;
}

.pf-empty h3{
    margin:0 0 7px;
}

.pf-empty p{
    color:var(--pf-text);
    font-size:13px;
}


/* =========================================================
   CTA
========================================================= */

.pf-cta{
    padding:80px 0;
    background:linear-gradient(135deg,#087db8,#18afea);
}

.pf-cta-inner{
    text-align:center;
    color:#fff;
    max-width:750px;
    margin:auto;
}

.pf-cta-inner h2{
    font-size:38px;
    margin:0 0 13px;
}

.pf-cta-inner p{
    font-size:14px;
    line-height:1.8;
    margin:0 auto 25px;
    opacity:.95;
}

.pf-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    color:#087db8;
    padding:13px 25px;
    border-radius:7px;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    transition:.3s;
}

.pf-cta-btn:hover{
    transform:translateY(-3px);
    color:#087db8;
    box-shadow:0 15px 30px rgba(0,0,0,.16);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1200px){

    .pf-grid{
        grid-template-columns:repeat(3,1fr);
    }

}


/* =========================================================
   TABLET SMALL
========================================================= */

@media(max-width:850px){

    .pf-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .pf-hero h1{
        font-size:43px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:550px){

    .pf-container{
        width:92%;
    }

    .pf-hero{
        padding:70px 0 60px;
    }

    .pf-hero h1{
        font-size:33px;
    }

    .pf-hero p{
        font-size:13px;
    }

    .pf-filter{
        gap:6px;
    }

    .pf-filter-btn{
        padding:8px 12px;
        font-size:10px;
    }

    .pf-grid{
        grid-template-columns:1fr;
    }

    .pf-browser{
        height:430px;
    }

    .pf-cta-inner h2{
        font-size:29px;
    }

}





















.clients-section{
  padding:55px 5% 65px;
  overflow:hidden;
  background:#fff;
}

.clients-title{
  text-align:center;
}

.clients-title h2{
  font-size:38px;
  font-weight:800;
  margin-bottom:12px;
  color:#0b1730;
}

.clients-title .line{
  width:55px;
  height:4px;
  background:#c92828;
  border-radius:10px;
  margin:0 auto 25px;
}

.clients-title p{
  max-width:1100px;
  margin:auto;
  font-size:17px;
  line-height:1.55;
  color:#202020;
}

.slider-wrap{
  max-width:1140px;
  margin:30px auto 0;
  position:relative;
}

.slider{
  overflow:hidden;
  padding:5px;
}

.track{
  display:flex;
  gap:12px;
  transition:transform .5s ease;
}

.client-card{
  min-width:calc((100% - 48px)/5);
  height:104px;
  border:1px solid #333;
  border-radius:10px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px;
  flex-shrink:0;
}

.client-card #1982bb{
  max-width:100%;
  max-height:75px;
  object-fit:contain;
  display:block;
}

/* Arrows */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
  font-size:28px;
  color:#222;
  cursor:pointer;
  z-index:5;
  padding-bottom: 5px;
}

.arrow:hover{
  background:#024b81;
  color:#fff;
}

.prev{
  left:-48px;
}

.next{
  right:-48px;
}

/* Dots */
.dots{
  display:flex;
  justify-content:center;
  gap:9px;
  margin-top:15px;
}

.dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#ccc;
  cursor:pointer;
  transition:.3s;
}

.dot.active{
  background:#111;
  transform:scale(1.15);
}

/* Button */
.case-btn{
  display:block;
  width:max-content;
  margin:42px auto 0;
  padding:14px 27px;
  background:#c92828;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  border-radius:3px;
  transition:.3s;
}

.case-btn:hover{
  background:#a91f1f;
  transform:translateY(-2px);
}

/* Tablet */
@media(max-width:900px){

  .client-card{
    min-width:calc((100% - 24px)/3);
  }

  .prev{
    left:5px;
  }

  .next{
    right:5px;
  }

  .arrow{
    background:rgba(255,255,255,.95);
  }
}

/* Mobile */
@media(max-width:600px){

  .clients-section{
    padding:40px 15px 50px;
  }

  .clients-title h2{
    font-size:30px;
  }

  .clients-title p{
    font-size:15px;
    line-height:1.6;
  }

  .client-card{
    min-width:calc((100% - 12px)/2);
    height:95px;
  }

  .client-card #1982bb{
    max-height:65px;
  }

  .prev{
    left:2px;
  }

  .next{
    right:2px;
  }

  .case-btn{
    margin-top:35px;
  }
}





























/*================================================
Services Area CSS
=================================================*/
.services-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}


.pb-70 {
    padding-bottom: 50px;
}


.pt-100 {
    padding-top: 50px;
}





.rrrr {
    text-align: center;
    margin-bottom: 45px;
}

.services-area.bg-fff5ee {
background: radial-gradient(circle at 15% 20%, rgba(56, 169, 255, .18), transparent 28%), radial-gradient(circle at 85% 80%, rgba(23, 105, 224, .14), transparent 30%), #f7faff;
}

.services-area.bg-fafafa {
  background-color: #fafafa;
}

.services-area.bg-fafafa {
  background-color: #fafafa;
}

.services-area.bg-0f051e {
  background-color: #0f051e;
}

.services-area.bg-0f051e .section-title h2 {
  color: #ffffff;
}

.single-services {
  background-color: #ffffff;
 box-shadow: 0 2px 10px -1px rgb(87 97 100);
  margin-bottom: 30px;
  text-align: center;
  padding: 35px 10px 75px 10px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services::before {
  content: '';
  position: absolute;
  bottom: -88%;
  left: 0;
  width: 175%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: -webkit-gradient(linear, left bottom, right top, from(#fdb084), color-stop(#ff9870), color-stop(#ff7e62), color-stop(#ff5f59), to(#ff3656));
 background: #024b81;
          transform: rotate(-14deg);
}

.single-services .image {
  margin-bottom: 25px;
}




.single-services h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.single-services h3 a {
  color: #202647;
}

.single-services .services-btn {
  color: #e90813;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services .services-btn i {
  position: relative;
  top: 1px;
}

.single-services:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-services:hover .services-btn {
  letter-spacing: 1px;
}

.single-services:hover h3 a {
  color: #e90813;
}

.single-services .icon {
  margin-bottom: 20px;
}

.single-services .icon i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background: -webkit-gradient(linear, left bottom, right top, from(#fdb084), color-stop(#ff9870), color-stop(#ff7e62), color-stop(#ff5f59), to(#ff3656));
  background: linear-gradient(to right top, #fdb084, #ff9870, #ff7e62, #ff5f59, #ff3656);
  color: #ffffff;
  font-size: 45px;
  border-radius: 50px;
}

.single-services-item {
  margin-bottom: 30px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item .content {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 35px 20px;
  max-width: 350px;
  margin: -50px auto 0;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}

.single-services-item .content h3 {
  margin-bottom: 10px;
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-item .content h3 a {
  color: #202647;
}

.single-services-item .content span {
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #6b6b84;
}

.single-services-item .content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: -webkit-gradient(linear, left bottom, right top, from(#fdb084), color-stop(#ff9870), color-stop(#ff7e62), color-stop(#ff5f59), to(#ff3656));
  background: linear-gradient(to right top, #fdb084, #ff9870, #ff7e62, #ff5f59, #ff3656);
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}

.single-services-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-services-item:hover .content::before {
  height: 100%;
}

.single-services-item:hover .content h3 a {
  color: #ffffff;
}

.single-services-item:hover .content span {
  color: #ffffff;
}

.single-services-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-bottom: 30px;
  text-align: center;
  padding: 35px 30px 45px 30px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box::before {
  content: '';
  position: absolute;
  bottom: -92%;
  left: 0;
  width: 120%;
  height: 100%;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: -webkit-gradient(linear, left bottom, right top, from(#fdb084), color-stop(#ff9870), color-stop(#ff7e62), color-stop(#ff5f59), to(#ff3656));
  background: linear-gradient(to right top, #fdb084, #ff9870, #ff7e62, #ff5f59, #ff3656);
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
}

.single-services-box .icon {
  margin-bottom: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .icon i {
  display: inline-block;
  height: 120px;
  width: 120px;
  line-height: 120px;
  background: -webkit-gradient(linear, left bottom, right top, from(#fdb084), color-stop(#ff9870), color-stop(#ff7e62), color-stop(#ff5f59), to(#ff3656));
  background: linear-gradient(to right top, #fdb084, #ff9870, #ff7e62, #ff5f59, #ff3656);
  color: #ffffff;
  font-size: 45px;
  border-radius: 50px;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.single-services-box h3 {
  font-size: 25px;
  margin-bottom: 16px;
}

.single-services-box h3 a {
  color: #202647;
}

.single-services-box .services-btn {
  color: #e90813;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .services-btn i {
  position: relative;
  top: 1px;
}

.single-services-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-services-box:hover .services-btn {
  letter-spacing: 1px;
}

.single-services-box:hover h3 a {
  color: #e90813;
}

.single-services-box:hover .icon {
  -webkit-animation: bounce 2s;
          animation: bounce 2s;
}














  .industries-section {
      position: relative;
      overflow: hidden;
      padding: 55px 45px 70px;
        background: radial-gradient(circle at 15% 20%, rgba(56, 169, 255, .18), transparent 28%), radial-gradient(circle at 85% 80%, rgba(23, 105, 224, .14), transparent 30%), #f7faff;
    }

    /* Decorative dots */
    .industries-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 190px;
      height: 190px;
      opacity: 0.55;
      background-image: radial-gradient(#d9e6fa 3px, transparent 3px);
      background-size: 21px 21px;
      mask-image: linear-gradient(to right, black, transparent);
      -webkit-mask-image: linear-gradient(to right, black, transparent);
    }

    .industries-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200px;
      height: 170px;
      opacity: 0.45;
      background-image: radial-gradient(#d9e6fa 3px, transparent 3px);
      background-size: 21px 21px;
      mask-image: linear-gradient(to top, black, transparent);
      -webkit-mask-image: linear-gradient(to top, black, transparent);
    }

    .industries-container {
      position: relative;
      z-index: 2;
      max-width: 1450px;
      margin: auto;
    }

    /* Top small heading */
    .section-label {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 23px;
          font-size: 18px;
    font-weight: 600;
    color: #e90813;
    }

    .section-label span {
      width: 26px;
      height: 3px;
      background: #024b81;
      display: block;
      border-radius: 10px;
    }

    /* Main heading */
    .main-heading {
      max-width: 1200px;
      margin: auto;
      text-align: center;
      font-size:30px;
      line-height: 1.12;

      font-weight: 800;
      color: #102047;
    }

    /* Description */
    .section-description {
      max-width: 1260px;
      margin: 27px auto 48px;
      text-align: center;
      font-size: 18px;
      line-height: 1.65;
      color: #66738b;
      font-weight: 400;
    }

    /* Grid */
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 18px;
    }

    /* Cards */
    .industry-card {
      min-height: 238px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid #e0e9f7;
      border-radius: 18px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 30px 15px;
      position: relative;
      overflow: hidden;
      box-shadow:
        0 8px 28px rgba(35, 86, 150, 0.06),
        0 2px 8px rgba(35, 86, 150, 0.03);
      transition: all 0.35s ease;
    }

    .industry-card::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(20, 104, 232, 0.035);
      transition: 0.35s ease;
    }

    .industry-card:hover {
      transform: translateY(-8px);
      border-color: #c9dcfa;
      box-shadow:
        0 18px 45px rgba(35, 86, 150, 0.12),
        0 4px 15px rgba(35, 86, 150, 0.06);
    }

    .industry-card:hover::before {
      transform: scale(1.4);
    }

    /* Icon circle */
    .icon-box2 {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(
        145deg,
        #f8fbff,
        #eef5ff
      );
      border: 1px solid #e4edfb;
      box-shadow:
        inset 0 1px 5px rgba(255,255,255,0.9),
        0 7px 18px rgba(25, 90, 180, 0.06);
      margin-bottom: 22px;
      position: relative;
      z-index: 2;
    }

    .icon {
      font-size: 45px;
      line-height: 1;
    }

    .industry-name {
      position: relative;
      z-index: 2;
      color: #12213f;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    /* Blue underline */
    .card-line {
      width: 30px;
      height: 3px;
      border-radius: 10px;
      background: #024b81;
      position: relative;
      z-index: 2;
      transition: 0.3s ease;
    }

    .industry-card:hover .card-line {
      width: 45px;
    }

    /* Tablet */
    @media (max-width: 1150px) {
      .industry-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .main-heading {
        font-size: 42px;
      }
    }

    /* Mobile */
    @media (max-width: 700px) {
      .industries-section {
        padding: 45px 18px 55px;
      }

      .section-label {
        font-size: 16px;
      }

      .main-heading {
        font-size: 31px;
        line-height: 1.18;
        letter-spacing: -0.8px;
      }

      .section-description {
        font-size: 16px;
        line-height: 1.6;
        margin: 20px auto 35px;
      }

      .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
      }

      .industry-card {
        min-height: 190px;
        padding: 20px 8px;
        border-radius: 15px;
      }

      .icon-box2 {
        width: 72px;
        height: 72px;
        margin-bottom: 15px;
      }

      .icon {
        font-size: 34px;
      }

      .industry-name {
        font-size: 14px;
        margin-bottom: 12px;
      }
    }

    @media (max-width: 430px) {
      .industry-grid {
        grid-template-columns: 1fr 1fr;
      }

      .industry-card {
        min-height: 175px;
      }

      .icon-box2 {
        width: 65px;
        height: 65px;
      }

      .icon {
        font-size: 30px;
      }

      .industry-name {
        font-size: 13px;
      }
    }
	
	
	
.icon-box2{
  width:72px;
  height:72px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f1f6ff;
  margin-bottom:18px;
  transition:.3s ease;
}

.icon-box2 i{
  font-size:32px;
  color:#024b81;
}

.industry-card:hover .icon-box2{
  background:#e5efff;
  transform:translateY(-3px);
}

.industry-card:hover .icon-box2 i{
  color:#e90813;
}









:root{
    --blue:#1769e0;
    --blue2:#38a9ff;
    --navy:#071a38;
    --navy2:#0b2854;
    --text:#61708a;
    --bg:#f6f9fd;
    --white:#fff;
    --border:#e4ebf4;
    --shadow:0 25px 70px rgba(8,35,75,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}



/* =========================
   HERO
========================= */

.hero6{
    min-height:300px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at 15% 20%,rgba(56,169,255,.18),transparent 28%),
        radial-gradient(circle at 85% 80%,rgba(23,105,224,.14),transparent 30%),
        #f7faff;
}

.hero6-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:850px;
    margin:auto;
    padding:70px 0;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:9px 18px;
    border-radius:100px;
    background:#e9f4ff;
    color:#e90813;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    animation:down .7s ease;
}

.hero6 h1{
        font-size: 35px;
    line-height:1.08;
    margin:20px 0;
 
}



.hero6 p{
	margin-bottom: 20px;
    max-width:800px;
 
    font-size:15px;
    line-height:1.8;
    animation:up 1.1s ease;
}

.orb{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(23,105,224,.15);
}

.orb1{
    width:340px;
    height:340px;
    left:-170px;
    top:-130px;
    animation:rotate 18s linear infinite;
}

.orb2{
    width:250px;
    height:250px;
    right:-100px;
    bottom:-100px;
    animation:rotate 15s linear infinite reverse;
}

.dots{
    position:absolute;
    width:140px;
    height:140px;
    background-image:radial-gradient(#e90813 1.5px,transparent 1.5px);
    background-size:14px 14px;
    opacity:.14;
    right:12%;
    top:65px;
}













/* ========================================
   FOOTER VARIABLES
======================================== */

.premium-footer {

    --footer-dark: #06182f;
    --footer-dark2: #0a2345;
    --footer-blue: #1769e0;
    --footer-blue2: #36aaff;
    --footer-text: #91a4bc;
    --footer-border: rgba(255,255,255,.09);

    font-family: 'Inter', sans-serif;

}


/* ========================================
   MAIN FOOTER
======================================== */

.footer-main {

background: #024b81;

    padding: 75px 0 0px;

    color: var(--footer-text);

}


.footer-container {

    width: 92%;
    max-width: 1250px;
    margin: auto;

}


/* ========================================
   GRID
======================================== */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.35fr
        .8fr
        1fr
        1fr;

    gap: 55px;

    padding-bottom: 40px;



}


/* ========================================
   COMPANY
======================================== */

.footer-logo {

    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;

}

.footer-logo #1982bb {

    max-width: 175px;
  

    object-fit: contain;

}


.footer-company p {

    font-size: 14px;

    line-height: 1.9;

    color: white;

    max-width: 360px;

}


/* ========================================
   SOCIAL
======================================== */

.footer-social {

    display: flex;

    gap: 9px;


}


.fa-brands {
    color: white;
    font-weight: 400;
}


.footer-social a {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(255,255,255,.07);

    border: 1px solid var(--footer-border);

    color: #c8d6e7;

    font-size: 13px;

    transition: .35s;

}

.footer-social a:hover {

  

    color: white;

    transform:
        translateY(-5px)
        rotate(3deg);

    border-color: transparent;

    box-shadow:
        0 10px 25px rgba(23,105,224,.25);

}


/* ========================================
   HEADINGS
======================================== */

.footer-links h3,
.footer-contact h3 {

    color: #fff;

    font-size: 17px;

    margin: 5px 0 24px;

    font-weight: 700;

    position: relative;

}

.footer-links h3::after,
.footer-contact h3::after {

    content: "";

    display: block;

    width: 32px;

    height: 3px;

    margin-top: 9px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--footer-blue),
            #1b70e4
        );

}


/* ========================================
   LINKS
======================================== */

.footer-links ul {

    list-style: none;

    padding: 0;
    margin: 0;

}

.footer-links li {

    margin-bottom: 13px;

}

.footer-links a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: white;

    font-size: 14px;

    transition: .3s;

}

.footer-links a i {

    color: white;

    font-size: 9px;

    transition: .3s;

}

.footer-links a:hover {

    color: #fff;

    transform: translateX(5px);

}

.footer-links a:hover i {

    transform: translateX(3px);

}


/* ========================================
   CONTACT
======================================== */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 10px;

}

.footer-contact-icon {

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: white;

    background: rgba(255,255,255,.07);

    border: 1px solid var(--footer-border);

    transition: .3s;

}

.footer-contact-item:hover .footer-contact-icon {

    background: var(--footer-blue);

    color: white;

    transform: translateY(-3px);

}

.footer-contact-item span {

    display: block;

    color: #ffffff;
    font-size: 12px;

    margin-bottom: -5px;




}

.footer-contact-item a,
.footer-contact-item strong {

    color: #e4edf7;

    font-size: 14px;

    line-height: 1.5;

}

.footer-contact-item a:hover {

    color: #1b70e4;

}


/* ========================================
   OFFICES
======================================== */

.footer-offices {

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.25fr;

    gap: 20px;

    padding-top: 35px;

}


.footer-office {

    display: flex;

    gap: 15px;

    padding: 23px;

    border-radius: 16px;

    background: rgba(255,255,255,.045);

    border: 1px solid var(--footer-border);

    transition: .35s;

}

.footer-office:hover {

    background: rgba(255,255,255,.075);

    border-color: rgba(54,170,255,.25);

    transform: translateY(-4px);

}


.office-icon {

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--footer-blue),
            #1b70e4
        );

}

.footer-office span,
.footer-newsletter > span {

    display: block;

    color: #1b70e4;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

    margin-bottom: 5px;

}

.footer-office h4,
.footer-newsletter h4 {

    color: #fff;

    font-size: 15px;

    margin-bottom: 7px;

}

.footer-office p {

    color: var(--footer-text);

    font-size: 11px;

    line-height: 1.7;

}


/* ========================================
   NEWSLETTER
======================================== */

.footer-newsletter {

    padding: 23px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(23,105,224,.16),
            rgba(54,170,255,.06)
        );

    border: 1px solid rgba(54,170,255,.18);

}

.footer-newsletter p {

    font-size: 12px;

}


.newsletter-input {

    height: 48px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding-left: 14px;

    margin-top: 14px;

    border-radius: 10px;

    background: rgba(255,255,255,.07);

    border: 1px solid var(--footer-border);

}

.newsletter-input > i {

    color: #7890aa;

    font-size: 12px;

}

.newsletter-input input {

    min-width: 0;

    flex: 1;

    height: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    color: #fff;

    font-family: inherit;

    font-size: 11px;

}

.newsletter-input input::placeholder {

    color: #7589a1;

}

.newsletter-input button {

    width: 45px;
    height: 45px;

    border: 0;

    border-radius: 9px;

    margin-right: 1px;

    color: white;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            var(--footer-blue),
            #1b70e4
        );

    transition: .3s;

}

.newsletter-input button:hover {

    transform: scale(.94);

}


/* ========================================
   BOTTOM
======================================== */

.footer-bottom {

    background: #041226;

    border-top: 1px solid rgba(255,255,255,.05);

}


.bottom-inner {

    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    position: relative;

}

.bottom-inner p {

 color: #ffffff;
    font-size: 16px;

}

.bottom-inner strong {

    color: #a9bdd2;

}

.bottom-links {

    display: flex;

    gap: 22px;

}

.bottom-links a {

    color: #657b96;

    font-size: 11px;

    transition: .3s;

}

.bottom-links a:hover {

    color: #1b70e4;

}


/* ========================================
   BACK TO TOP
======================================== */

.back-top {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--footer-blue),
            #1b70e4
        );

    transition: .35s;

}

.back-top:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(23,105,224,.3);

}


/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1050px) {

    .footer-grid {

        grid-template-columns:
            1.3fr 1fr 1fr;

    }

    .footer-company {

        grid-column: span 3;

    }

    .footer-company p {

        max-width: 600px;

    }

}


@media(max-width:750px) {

    .footer-main {

        padding: 55px 0 25px;

    }

    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

    }

    .footer-company {

        grid-column: span 2;

    }

    .footer-offices {

        grid-template-columns: 1fr;

    }

    .bottom-inner {

        padding: 20px 0;

        flex-wrap: wrap;

        justify-content: center;

        text-align: center;

    }

}


@media(max-width:500px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-company {

        grid-column: span 1;

    }

    .footer-company p {

        font-size: 14px;

    }

    .footer-links h3,
    .footer-contact h3 {

        margin-bottom: 18px;

    }

    .bottom-links {

        width: 100%;

        justify-content: center;

        gap: 15px;

    }

    .back-top {

        margin-top: 5px;

    }

}







.popup{
    cursor:default;
}

.popup h2{
    cursor:move;
    user-select:none;
}

/* Button */

.open-btn{

background:linear-gradient(135deg,#d4af37,#f5d76e);

color:#111;

padding:14px 35px;

border-radius:50px;

border:none;

font-weight:600;

cursor:pointer;

}



/* Overlay */

.popup-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.85);

display:none;

align-items:center;
justify-content:center;

z-index:999;

}


/* Popup Box */

.popup{

width:600px;

background:
linear-gradient(145deg,#151515,#080808);

border:1px solid #ffffff;

border-radius:25px;

padding:20px;

position:relative;

box-shadow:0 0 40px rgba(212,175,55,.25);

animation:show .4s ease;

}


@keyframes show{

from{

transform:translateY(-40px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}


/* Close */

.close{

position:absolute;

right:25px;

top:20px;

font-size:28px;

color:#d4af37;

cursor:pointer;

}



/* Heading */

.popup h2{

text-align:center;

color:#fff;

font-size:32px;

}


.popup h2 span{

    color: #e90813;

}


.popup p{

text-align:center;

color:#aaa;

margin:10px 0 30px;

}



/* Input */

.input-box{

margin-bottom:18px;

}


.input-box input,
.input-box select,
.input-box textarea{

width:100%;

padding:10px 18px;

background:#0b0b0b;

border:1px solid #333;

border-radius:12px;

color:#fff;

outline:none;

}


.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

border-color:#d4af37;

}


textarea{

height:100px;

resize:none;

}



/* Submit */

.submit-btn{

width:100%;

padding:15px;

border:none;

border-radius:50px;

    background: linear-gradient(180deg, #024b81 0%, #0A4FB7 100%);

font-weight:600;

font-size:16px;

cursor:pointer;

transition:.3s;
color:white;

}


.submit-btn:hover{

background:#fff;
color:black;


}





.project-wrapper .project-image-items video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}


.project-wrapper .project-image-items #1982bb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}


* {box-sizing: border-box;}
body {background:#eee;}
video {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 33.3%; 
  float: left;
}
























:root{
    --primary:#024b81;
    --primary-dark:#024b81;
    --secondary:#024b81;
    --dark:#10213f;
    --text:#64748b;
    --light:#f7faff;
    --white:#ffffff;
    --border:#e7edf6;
    --shadow:0 20px 60px rgba(21,69,130,.10);
}



a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}





/* =========================
   ABOUT INTRO
========================= */

.about-section{
    padding:70px 0;
}



.about-image{
    position:relative;
}

.about-image-main{
    min-height:470px;
    border-radius:28px;
    background:linear-gradient(145deg,#eaf5ff,#ffffff);
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-icon{
    width:180px;
    height:180px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:white;
    font-size:75px;
    box-shadow:0 25px 60px rgba(23,105,224,.25);
    animation:pulseIcon 3s infinite;
}

.about-floating{
    position:absolute;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    border-radius:16px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    color:#e90813;
}

.about-floating i{
    color:var(--primary);
    font-size:22px;
}

.float-card-one{
    left:-30px;
    bottom:45px;
}

.float-card-two{
    right:-25px;
    top:45px;
}

.section-tag{
    color:var(--primary);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:43px;
    line-height:1.2;
    margin-bottom:22px;
}

.about-content h2 span{
    color:var(--primary);
}

.about-content p{
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

.about-list{
    margin-top:25px;
    display:grid;
    gap:14px;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#334155;
}

.about-list i{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#eaf5ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

/* =========================
   MISSION VISION
========================= */

.mission-section{
    padding:40px 0;
    background:var(--light);
}

.section-heading{
    text-align:center;
    max-width:720px;
    margin:0 auto 55px;
}

.section-heading .section-tag{
    display:block;
}

.section-heading h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-heading h2 span{
    color:var(--primary);
}

.section-heading p{
    line-height:1.8;
}

.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mv-card{
    background:#fff;
    padding:42px;
    border-radius:24px;
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;
    transition:.4s ease;
}

.mv-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
    border-color:#cfe4ff;
}

.mv-card::after{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:#eef7ff;
    right:-60px;
    bottom:-60px;
}

.mv-icon{
    width:65px;
    height:65px;
    border-radius:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(135deg, #1982bb, #15a0eb);
    color:#fff;
    font-size:26px;
    margin-bottom:25px;
}

.mv-card h3{
    font-size:25px;
    margin-bottom:14px;
}

.mv-card p{
    line-height:1.85;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-section{
    padding:110px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.why-content h2{
    font-size:30px;
    line-height:1.2;
    margin-bottom:18px;
}

.why-content h2 span{
    color:var(--primary);
}

.why-content > p{
    line-height:1.8;
    margin-bottom:30px;
}

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:17px;
}

.feature{
    padding:22px;
    border:1px solid var(--border);
    border-radius:17px;
    background:#fff;
    transition:.35s ease;
}

.feature:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(20,70,130,.09);
}

.feature i{
    color:var(--primary);
    font-size:23px;
    margin-bottom:13px;
}

.feature h4{
    font-size:16px;
    margin-bottom:6px;
}

.feature p{
    font-size:13px;
    line-height:1.6;
}

/* =========================
   TECH BOX
========================= */

.tech-box{
    background:linear-gradient(145deg,#f3f9ff,#fff);
    border:1px solid var(--border);
    border-radius:30px;
    padding:45px;
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.tech-circle{
    position:absolute;
    border:1px dashed rgba(23,105,224,.25);
    border-radius:50%;
}

.circle-one{
    width:270px;
    height:270px;
    animation:rotate 18s linear infinite;
}

.circle-two{
    width:190px;
    height:190px;
    animation:rotate 12s linear infinite reverse;
}

.tech-center{
    width:105px;
    height:105px;
    border-radius:25px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:42px;
    box-shadow:0 20px 45px rgba(23,105,224,.28);
    z-index:2;
}

.tech-item{
    position:absolute;
    width:52px;
    height:52px;
    border-radius:15px;
    background:#1982bb;
    border:1px solid var(--border);
    box-shadow:0 12px 30px rgba(20,70,130,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:21px;
}

.tech-1{top:45px;left:50%;transform:translateX(-50%);}
.tech-2{right:70px;top:50%;transform:translateY(-50%);}
.tech-3{bottom:45px;left:50%;transform:translateX(-50%);}
.tech-4{left:70px;top:50%;transform:translateY(-50%);}

/* =========================
   CTA
========================= */

.cta-section{
    padding:40px 0;
}

.cta-box{
    background:linear-gradient(135deg,#f1f8ff,#fff);
    border:1px solid #dcecff;
    border-radius:30px;
    padding:65px 50px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cta-box h2{
    font-size:40px;
    margin-bottom:15px;
}

.cta-box h2 span{
    color:var(--primary);
}

.cta-box p{
    max-width:650px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 30px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:700;
    box-shadow:0 15px 35px rgba(23,105,224,.22);
    transition:.35s ease;
}

.cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(23,105,224,.30);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-25px);
    }
}

@keyframes pulseIcon{
    0%,100%{
        transform:scale(1);
        box-shadow:0 25px 60px rgba(23,105,224,.25);
    }
    50%{
        transform:scale(1.05);
        box-shadow:0 30px 75px rgba(23,105,224,.35);
    }
}

@keyframes rotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Scroll Reveal */

.reveal{
    opacity:0;
    transform:translateY(45px);
    transition:all .9s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .about-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .mv-grid{
        grid-template-columns:1fr;
    }

    .counter-grid{
        grid-template-columns:1fr 1fr;
        gap:40px 20px;
    }

    .about-content h2,
    .why-content h2,
    .section-heading h2{
        font-size:34px;
    }

    .about-image{
        max-width:650px;
        margin:auto;
    }

}

@media(max-width:600px){

    .about-section,
    .why-section{
        padding:75px 0;
    }

    .mission-section{
        padding:75px 0;
    }

    .hero6-content{
        padding:70px 15px;
    }

    .hero6-content h1{
        font-size:25px;
    }

    .about-image-main{
        min-height:350px;
    }

    .about-floating{
        padding:13px 15px;
        font-size:12px;
    }

    .float-card-one{
        left:10px;
        bottom:20px;
    }

    .float-card-two{
        right:10px;
        top:20px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .counter-grid{
        grid-template-columns:1fr 1fr;
    }

    .counter h3{
        font-size:32px;
    }

    .cta-box{
        padding:45px 20px;
    }

    .cta-box h2{
        font-size:30px;
    }

}










































:root{
    --blue:#1769e0;
    --blue2:#38a9ff;
    --navy:#071a38;
    --navy2:#0b2854;
    --text:#61708a;
    --bg:#f6f9fd;
    --white:#fff;
    --border:#e4ebf4;
    --shadow:0 25px 70px rgba(8,35,75,.12);
}



/* =========================
   MAIN CONTACT
========================= */

.contact-area{
    padding:90px 0;
    background:#fff;
}

.contact-wrap{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    min-height:650px;
    border-radius:32px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

/* LEFT */

.contact-left{
    position:relative;
    overflow:hidden;
    padding:50px;
    background:
        radial-gradient(circle at 90% 10%,rgba(56,169,255,.25),transparent 30%),
        linear-gradient(145deg,#1881ba,#0c3671);
    color:white;
}

.contact-left h2{
    color:white;
    font-size:36px;
    line-height:1.2;
    margin-bottom:16px;
}

.contact-left > p{
    color:rgba(255,255,255,.73);
    line-height:1.8;
    margin-bottom:40px;
}

.contact-point{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.point-icon{
    flex:0 0 52px;
    height:52px;
    border-radius:16px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.13);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#62bcff;
    font-size:19px;
    transition:.35s;
}

.contact-point:hover .point-icon{
    background:#fff;
    color:#e90813;
    transform:translateY(-4px) rotate(6deg);
}

.contact-point h4{
    color:#fff;
    font-size:15px;
    margin-bottom:5px;
}

.contact-point p{
    color:rgba(255,255,255,.68);
    font-size:13px;
    line-height:1.6;
}

.contact-decoration{
    position:absolute;
    width:250px;
    height:250px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:50%;
    right:-100px;
    bottom:-100px;
}

.contact-decoration:before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    left:45px;
    top:45px;
}

.socials{
    display:flex;
    gap:9px;
    margin-top:35px;
}

.socials a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    color:#fff;
    background:rgba(255,255,255,.09);
    transition:.3s;
}

.socials a:hover{
      background: linear-gradient(100deg, #e90813, var(--blue2));
    color:#e90813;
    transform:translateY(-4px);
}

/* RIGHT FORM */

.contact-right{
    padding:50px;
    background:#fff;
}

.form-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:32px;
}

.form-top small{
        color: #e90914;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.form-top h2{
    font-size:32px;
    margin-top:7px;
}

.form-top p{
    font-size:13px;
    margin-top:7px;
}

.form-bubble{
    width:62px;
    height:62px;
    flex:0 0 62px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
  color: #024b81;
    background:#edf6ff;
    font-size:23px;
    animation:bounce 3s infinite;
}



.field{
    margin-bottom:19px;
}

.field label{
    display:block;
    color:var(--navy);
    font-size:13px;
    font-weight:700;
    margin-bottom:8px;
}

.field label span{
    color:#ef4444;
}

.input-wrap{
    position:relative;
}

.input-wrap i{
    position:absolute;
    left:16px;
    top:17px;
    color:#8da0b8;
    font-size:14px;
    transition:.3s;
}

.input{
    width:100%!important;
    height:53px;
    border:1px solid var(--border)!important;
    border-radius:13px!important;
    outline:none;
    background:#f9fbfe;
    padding:0 15px 0 44px;
    color:var(--navy);
    font-family:inherit;
    font-size:14px!important;
    transition:.3s;
}

textarea.input{
    height:115px;
    padding-top:15px;
    resize:none;
}

.input:focus{
    background:#fff;
    border-color:#e90813;
    box-shadow:0 0 0 4px rgba(23,105,224,.08);
}

.input-wrap:focus-within i{
    color:#e90813;
}

.select-wrap{
    position:relative;
}

.select-wrap i{
    position:absolute;
    right:16px;
    top:18px;
    color:#e90813;
    pointer-events:none;
}

select.input{
    appearance:none;
    cursor:pointer;
}

.submit{
    width:100%;
    height:55px;
    border:0;
    border-radius:14px;
    background:linear-gradient(100deg,#e90813,var(--blue2));
    color:white;
    font-family:inherit;
    font-weight:800;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    box-shadow:0 15px 35px rgba(23,105,224,.22);
    transition:.35s;
}

.submit:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 45px rgba(23,105,224,.3);
}

/* =========================
   LOCATIONS
========================= */

.locations{
    padding:100px 0;
    background:var(--bg);
}

.heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 55px;
}

.heading small{
    color:#e90813;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:800;
}



.heading h2 span{
    color:#e90813;
}

.heading p{
    line-height:1.8;
}

.office-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.office{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.office:hover{
    transform:translateY(-9px);
    box-shadow:var(--shadow);
}

.office-number{
    position:absolute;
    top:17px;
    right:20px;
    color:#e9f1fa;
    font-size:45px;
    font-weight:800;
    font-family:'Poppins';
}

.office-icon{
    width:57px;
    height:57px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    color:#e90813;
    background:#eaf5ff;
    font-size:21px;
    margin-bottom:20px;
    transition:.35s;
}

.office:hover .office-icon{
    color:white;
    background:linear-gradient(135deg,#e90813,var(--blue2));
    transform:scale(1.08) rotate(-5deg);
}

.office h3{
    font-size:21px;
    margin-bottom:11px;
}

.office p{
    font-size:13px;
    line-height:1.8;
    min-height:73px;
}

.office a{
    display:inline-flex;
    gap:7px;
    align-items:center;
    margin-top:17px;
    color:#e90813;
    font-size:12px;
    font-weight:800;
}

/* =========================
   MAP
========================= */

.map-section{
    padding:100px 0;
}

.map-box{
  
   
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
    position:relative;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

.map-label{
    position:absolute;
    z-index:3;
    left:25px;
    top:25px;
    background:#fff;
    border-radius:16px;
    padding:15px 18px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--navy);
    font-size:13px;
    font-weight:700;
}

.map-label i{
    color:#e90813;
}

/* =========================
   BOTTOM CTA
========================= */

.bottom-cta{
    padding:0 0 100px;
}

.cta{
    border-radius:30px;
    padding:60px 35px;
    text-align:center;
    background:
        radial-gradient(circle at 10% 20%,rgba(56,169,255,.15),transparent 25%),
        linear-gradient(135deg,#edf7ff,#fff);
    border:1px solid #dcecff;
}

.cta i{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:20px;
    color:white;
    background:linear-gradient(135deg,#e90813,var(--blue2));
    font-size:25px;
    box-shadow:0 15px 35px rgba(23,105,224,.22);
}

.cta h2{
    font-size:38px;
    margin-bottom:12px;
}

.cta h2 span{
    color:#e90813;
}

.cta p{
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/* =========================
   REVEAL
========================= */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s ease,transform .8s ease;
}

.reveal.active{
	
    opacity:1;
    transform:translateY(0);
}

/* =========================
   ANIMATION
========================= */

@keyframes up{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes down{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes rotate{
    from{transform:rotate(0)}
    to{transform:rotate(360deg)}
}

@keyframes bounce{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-7px)}
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

    .contact-wrap{
        grid-template-columns:1fr;
    }

    .office-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:650px){

    .contact-area,
    .locations,
    .map-section{
        padding:70px 0;
    }

    .contact-left,
    .contact-right{
        padding:30px 22px;
    }

    .row{
        grid-template-columns:1fr;
        gap:0;
    }

    .office-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .heading h2{
        font-size:32px;
    }

    .form-top h2{
        font-size:27px;
    }

    .map-box{
        height:350px;
    }

    .cta h2{
        font-size:30px;
    }

}














.map-section {
    padding: 80px 0;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.map-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 90, 146, 0.10);
}

.map-title {
    padding: 22px 25px;
    background: linear-gradient(135deg, #005a92, #0077b8);
    color: #fff;
}

.map-title h3 {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 700;
}

.map-title span {
    font-size: 14px;
    opacity: 0.9;
}

.map-box {
    width: 100%;
    line-height: 0;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 350px;
}

/* Mobile */
@media (max-width: 768px) {
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .map-box iframe {
        height: 300px;
    }
}


























/* =========================
   STATS
========================= */

.stats-section{
    background:#fff;

    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat{
    text-align:center;

    padding:22px 10px;

    border-right:1px solid var(--border);
}

.stat:last-child{
    border:0;
}

.stat strong{
    display:block;

    color:#024b81;

    font-size:22px;
    font-weight:800;
}

.stat span{
    color:#7b8996;

    font-size:14px;
}


/* =========================
   COMMON
========================= */

.section{
    padding:82px 0;
}

.heading{
    max-width:720px;

    margin:0 auto 45px;

    text-align:center;
}

.heading span{
    color:#e90914;

    font-size:14px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;
}

.heading h2{
    color:#024b81;

    font-size:33px;

    line-height:1.25;

    margin:9px 0 12px;
}

.heading p{
    color:#788896;

    font-size:16px;

    line-height:1.8;
}


/* =========================
   SERVICES
========================= */

.services{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.service{
    position:relative;

    overflow:hidden;

    background:#fff;

    border:1px solid var(--border);

    border-radius:13px;

    padding:27px 23px;

    transition:.35s;
}

.service:after{
    content:"";

    position:absolute;

    width:110px;
    height:110px;

    border-radius:50%;

    right:-55px;
    top:-55px;

    background:#eaf8ff;

    transition:.4s;
}

.service:hover{
    transform:translateY(-8px);

    border-color:#a8dced;

    box-shadow:
    0 20px 40px rgba(20,100,140,.10);
}

.service:hover:after{
    transform:scale(1.6);
}

.icon{
    position:relative;
    z-index:2;

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:13px;

    background:#e9f8ff;

    color:#024b81;

    font-size:24px;

    margin-bottom:16px;

    transition:.35s;
}

.service:hover .icon{
    transform:rotate(-6deg) scale(1.08);
}

.service h3{
    position:relative;
    z-index:2;

    color:#293d4e;

    font-size:14px;

    margin-bottom:8px;
}

.service p{
    position:relative;
    z-index:2;

    color:#788795;

    font-size:14px;

    line-height:1.8;
}


/* =========================
   GRAPHICS SECTION
========================= */

.graphics-section{
    background:
    linear-gradient(
        135deg,
        #e9f8ff,
        #f9fdff
    );
}

.graphics-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:17px;
}

.graphic-card{
    background:#fff;

    border:1px solid var(--border);

    border-radius:12px;

    padding:23px 17px;

    text-align:center;

    transition:.35s;
}

.graphic-card:hover{
    transform:translateY(-7px);

    box-shadow:
    0 15px 30px rgba(20,100,140,.09);
}

.graphic-icon{
    width:64px;
    height:64px;

    margin:0 auto 13px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#e9f8ff;

    color:#024b81;

    font-size:27px;
}

.graphic-card h3{
    color:#293c4d;

    font-size:14px;

    margin-bottom:6px;
}

.graphic-card p{
    color:#7c8b97;

    font-size:14px;

    line-height:1.7;
}


/* =========================
   WEB DESIGN
========================= */

.web-layout{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;
}

.web-card{
    background:#fff;

    border:1px solid var(--border);

    border-radius:14px;

    padding:28px;
}

.web-card h3{
    color:#293c4d;

    font-size:19px;

    margin-bottom:10px;
}

.web-card > p{
    color:#7a8996;

    font-size:10.5px;

    line-height:1.8;

    margin-bottom:20px;
}

.check-list{
    list-style:none;

    display:grid;

    gap:10px;
}

.check-list li{
    color:#586877;

    font-size:14px;
}

.check-list li:before{
    content:"✓";

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:20px;
    height:20px;

    border-radius:50%;

    background:#e9f8ff;

    color:#024b81;

    margin-right:8px;

    font-weight:800;
}


/* =========================
   WEBSITE FEATURES
========================= */

.features{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:15px;
}

.feature{
    background:white;

    border:1px solid #dfedf4;

    border-radius:11px;

    padding:22px 15px;

    text-align:center;

    transition:.3s;
}

.feature:hover{
    background:#fff;

    transform:translateY(-6px);

    box-shadow:
    0 15px 30px rgba(20,100,140,.08);
}

.feature-icon{
    width:46px;
    height:46px;

    margin:0 auto 11px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#e8f8ff;

    color:#024b81;

    font-size:19px;
}

.feature h3{
    font-size:14px;

    margin-bottom:6px;
}

.feature p{
    color:#7b8995;

    font-size:14px;

    line-height:1.7;
}


/* =========================
   PROCESS
========================= */

.process-section{
    background:#182d3e;
}

.process-section .heading h2{
    color:#fff;
}

.process-section .heading p{
    color:#91a2af;
}

.process{
    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:18px;
}

.process-card{
    text-align:center;
}

.process-number{
    width:65px;
    height:65px;

    margin:0 auto 15px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#203f54;

    color:#74d1f5;

    border:1px solid rgba(255,255,255,.08);

    font-size:14px;

    font-weight:800;

    transition:.3s;
}

.process-card:hover .process-number{
    background:#024b81;

    color:#fff;

    transform:scale(1.1);
}

.process-card h3{
    color:#fff;

    font-size:14px;

    margin-bottom:6px;
}

.process-card p{
    color:#8fa0ad;

    font-size:14px;

    line-height:1.7;
}


/* =========================
   WHY US
========================= */

.why{
    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:60px;

    align-items:center;
}

.why-design{
    position:relative;

    min-height:370px;

    overflow:hidden;

    border-radius:18px;

    background:
    linear-gradient(
        145deg,
        #119bd9,
        #087bb7
    );

    padding:35px;

    box-shadow:
    0 25px 50px rgba(20,120,170,.15);
}

.why-design:after{
    content:"🎨";

    position:absolute;

    right:-10px;
    bottom:-30px;

    font-size:180px;

    opacity:.12;
}

.why-design h3{
    position:relative;
    z-index:2;

    color:#fff;

    font-size:30px;

    line-height:1.2;
}

.why-content small{
    color:#e90914;

    font-size:14px;

    letter-spacing:2px;

    font-weight:800;
}

.why-content h2{
    color:#024b81;

    font-size:32px;

    line-height:1.25;

    margin:9px 0 13px;
}

.why-content > p{
    color:#788795;

    font-size:14px;

    line-height:1.8;

    margin-bottom:20px;
}


/* =========================
   FAQ
========================= */



.faq{
    max-width:850px;

    margin:auto;
}

.faq-item{
    background:#fff;

    border:1px solid var(--border);

    border-radius:8px;

    overflow:hidden;

    margin-bottom:9px;
}

.question{
    padding:17px 20px;

    display:flex;

    align-items:center;
    justify-content:space-between;

    cursor:pointer;

    font-size:14px;

    font-weight:600;
}

.question span:last-child{
    width:24px;
    height:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#e9f8ff;

    color:#024b81;

    font-size:15px;

    transition:.3s;
}

.answer{
    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;
}

.answer p{
    padding:0 20px 17px;

    color:#788795;

    font-size:14px;

    line-height:1.8;
}

.faq-item.active .answer{
    max-height:150px;
}

.faq-item.active .question span:last-child{
    transform:rotate(45deg);
}


/* =========================
   CTA
========================= */

.cta{
    padding:80px 0;

    background:
    radial-gradient(
        circle at 50% 0,
        rgba(17,150,211,.17),
        transparent 45%
    ),
    #e9f8ff;
}

.cta-content{
    text-align:center;
}

.cta-content span{
    color:#e90914;

    font-size:14px;

    letter-spacing:2px;

    font-weight:800;
}

.cta-content h2{
    color:#024b81;

    font-size:36px;

    margin:9px 0;
}

.cta-content p{
    max-width:620px;

    margin:0 auto 24px;

    color:#748493;

    font-size:14px;

    line-height:1.8;
}


/* =========================
   SCROLL ANIMATION
========================= */

.reveal{
    opacity:0;

    transform:translateY(25px);

    transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal-show{
    opacity:1;

    transform:translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .design-board{
        max-width:550px;
        margin:auto;
    }

    .services{
        grid-template-columns:repeat(2,1fr);
    }

    .graphics-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .features{
        grid-template-columns:repeat(2,1fr);
    }

    .process{
        grid-template-columns:repeat(3,1fr);
        row-gap:30px;
    }

    .why{
        grid-template-columns:1fr;
    }
}


@media(max-width:650px){

    .hero{
        padding:100px 0 55px;
    }

    .hero h1{
        font-size:34px;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .stat{
        border-bottom:1px solid var(--border);
    }

    .services,
    .web-layout{
        grid-template-columns:1fr;
    }

    .graphics-grid,
    .features{
        grid-template-columns:1fr 1fr;
    }

    .process{
        grid-template-columns:1fr 1fr;
    }

    .section{
        padding:65px 0;
    }

    .heading h2{
        font-size:27px;
    }

    .design-board{
        transform:scale(.85);

        width:115%;

        margin-left:-7%;
    }

    .cta-content h2{
        font-size:28px;
    }
}


@media(max-width:430px){

    .graphics-grid,
    .features,
    .process{
        grid-template-columns:1fr;
    }

    .design-board{
        transform:scale(.68);

        width:145%;

        margin-left:-22%;
    }
}










.hero-buttons{
	display: inline-flex;
    gap:12px;
    flex-wrap:wrap;
}

.btn-blue{
    padding:13px 22px;
     background: linear-gradient(100deg, #024b81, var(--blue2));
    color:#fff;
    border-radius:7px;
    font-size:14px;
    font-weight:700;

    box-shadow:0 10px 25px rgba(21,149,211,.20);

    transition:.35s;
}

.btn-blue:hover{
    background:#e90813;
    transform:translateY(-3px);
}

.btn-white{
    padding:13px 22px;
    background:#fff;
    color:#455468;
    border:1px solid #d6e8f0;
    border-radius:7px;
    font-size:14px;
    font-weight:600;

    transition:.3s;
}

.btn-white:hover{
    border-color:#e90813;
    color:#e90813;
}





















    .cms-page {
        font-family: "Poppins", Arial, sans-serif;
        color: var(--secondary);
        background: #fff;
        overflow: hidden;
    }

    .cms-container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

   
    /* ================= INTRO ================= */

    .cms-intro {
        padding: 90px 0;
        background: #fff;
    }

    .cms-section-title {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 50px;
    }

    .cms-section-title .small-title {
        color: #1982bb;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .cms-section-title h2 {
        font-size: 35px;
        line-height: 1.25;
        margin: 0 0 15px;
        color: var(--secondary);
    }

    .cms-section-title p {
        color: var(--text);
        line-height: 1.8;
        margin: 0;
    }

    .cms-intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 55px;
        align-items: center;
    }

    .cms-intro-image {
        background: linear-gradient(135deg, #e8f9ff, #f7fdff);
        border: 1px solid #d8f0fa;
        border-radius: 18px;
        padding: 35px;
    }

    .cms-code-window {
        background: #09283d;
        border-radius: 13px;
        padding: 22px;
        box-shadow: 0 20px 40px rgba(11,41,66,.15);
    }

    .code-head {
        display: flex;
        gap: 7px;
        margin-bottom: 20px;
    }

    .code-head span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #a7d9eb;
    }

    .code-line {
        height: 9px;
        border-radius: 10px;
        background: #28556d;
        margin: 12px 0;
    }

    .code-line.w1 { width: 85%; }
    .code-line.w2 { width: 65%; }
    .code-line.w3 { width: 75%; }
    .code-line.w4 { width: 45%; }

    .cms-intro-content h3 {
        font-size: 23px;
        margin: 0 0 10px;
    }

    .cms-intro-content p {
        color: var(--text);
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .cms-check-list {
        padding: 0;
        margin: 25px 0 0;
        list-style: none;
    }

    .cms-check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 13px;
        color: #42586a;
    }

    .cms-check-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        top: -2px;
        width: 21px;
        height: 21px;
        border-radius: 50%;
        background: #dff6ff;
        color: var(--primary-dark);
        text-align: center;
        line-height: 21px;
        font-size: 12px;
        font-weight: bold;
    }

    /* ================= SERVICES ================= */

    .cms-services {
        padding: 90px 0;
        background: #f5fbfe;
    }

    .cms-service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .cms-service-card {
        background: #fff;
        padding: 30px 27px;
        border-radius: 14px;
        border: 1px solid #e2f0f5;
        transition: .3s;
        position: relative;
        overflow: hidden;
    }

    .cms-service-card:before {
        content: "";
        position: absolute;
        width: 0;
        height: 3px;
        left: 0;
        top: 0;
        background: #1982bb;
        transition: .3s;
    }

    .cms-service-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(11,41,66,.09);
    }

    .cms-service-card:hover:before {
        width: 100%;
    }

    .cms-icon {
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #e5f8ff;
        color: var(--primary-dark);
        font-size: 25px;
        margin-bottom: 20px;
    }

    .cms-service-card h3 {
        font-size: 19px;
        margin: 0 0 11px;
    }

    .cms-service-card p {
        font-size: 14px;
        color: var(--text);
        line-height: 1.7;
        margin: 0;
    }

    /* ================= CMS TYPES ================= */

    .cms-types {
        padding: 90px 0;
        background: #fff;
    }

    .cms-types-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .cms-type {
        text-align: center;
        padding: 28px 18px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: #fff;
        transition: .3s;
    }

    .cms-type:hover {
        border-color: #a9e5f9;
        background: #f8fdff;
        transform: translateY(-5px);
    }

    .cms-type-icon {
        font-size: 29px;
        color: #1982bb;
        margin-bottom: 13px;
    }

    .cms-type h4 {
        margin: 0 0 8px;
        font-size: 17px;
    }

    .cms-type p {
        margin: 0;
         font-size: 14px;
        color: var(--text);
        line-height: 1.6;
    }

    /* ================= PROCESS ================= */

    .cms-process {
        padding: 90px 0;
        background: #f5fbfe;
    }

    .cms-process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
    }

    .cms-process-card {
        text-align: center;
        background: #fff;
        padding: 30px 20px;
        border-radius: 14px;
        border: 1px solid #e2f0f5;
    }

    .cms-number {
        width: 52px;
        height: 52px;
        margin: 0 auto 18px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #1982bb, var(--primary-dark));
        color: #fff;
        font-weight: 700;
        font-size: 17px;
        box-shadow: 0 8px 20px rgba(24,174,234,.20);
    }

    .cms-process-card h4 {
        font-size: 17px;
        margin: 0 0 9px;
    }

    .cms-process-card p {
        margin: 0;
         font-size: 14px;
        color: var(--text);
        line-height: 1.7;
    }

    /* ================= WHY US ================= */

    .cms-why {
        padding: 90px 0;
    }

    .cms-why-grid {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 60px;
        align-items: center;
    }

    .cms-why-box {
        padding: 38px;
        border-radius: 18px;
        background: linear-gradient(135deg, #e9f9ff, #f8fdff);
        border: 1px solid #d8f0fa;
    }

    .cms-why-box h3 {
        font-size: 30px;
        margin: 0 0 16px;
    }

    .cms-why-box p {
        color: var(--text);
        line-height: 1.8;
    }

    .cms-feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .cms-feature {
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 11px;
    }

    .cms-feature strong {
        display: block;
        margin-bottom: 7px;
        font-size: 15px;
    }

    .cms-feature span {
        color: var(--text);
         font-size: 14px;
        line-height: 1.6;
    }

    /* ================= CTA ================= */

    .cms-cta {
        padding: 80px 0;
        background: linear-gradient(135deg, #087fbd, #16b4ed);
    }

    .cms-cta-inner {
        text-align: center;
        color: #fff;
        max-width: 800px;
        margin: auto;
    }

    .cms-cta h2 {
        font-size: 40px;
        margin: 0 0 15px;
    }

    .cms-cta p {
        margin: 0 auto 28px;
        line-height: 1.8;
        opacity: .94;
        max-width: 650px;
    }

    .cms-cta .cms-btn {
        background: #fff;
        color: var(--primary-dark);
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width: 992px) {
        .cms-hero-grid,
        .cms-intro-grid,
        .cms-why-grid {
            grid-template-columns: 1fr;
        }

        .cms-hero {
            padding: 75px 0;
        }

        .cms-hero h1 {
            font-size: 42px;
        }

        .cms-service-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .cms-types-grid,
        .cms-process-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 600px) {
        .cms-container {
            width: 92%;
        }

        .cms-hero h1 {
            font-size: 34px;
        }

        .cms-hero p {
            font-size: 15px;
        }

        .cms-section-title h2 {
            font-size: 29px;
        }

        .cms-service-grid,
        .cms-types-grid,
        .cms-process-grid,
        .cms-feature-grid {
            grid-template-columns: 1fr;
        }

        .cms-dashboard-body {
            grid-template-columns: 55px 1fr;
        }

        .cms-cta h2 {
            font-size: 30px;
        }
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	    :root {
        --seo-primary: #18aeea;
        --seo-primary-dark: #087fbd;
        --seo-secondary: #0b2942;
        --seo-light: #eefaff;
        --seo-text: #536575;
        --seo-border: #dcecf4;
    }

	
	 .seo-page {
       
        color: var(--seo-secondary);
        background: #fff;
        overflow: hidden;
    }

    .seo-container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

  
   
    /* ================= INTRO ================= */

    .seo-intro {
        padding: 90px 0;
        background: #fff;
    }

    .seo-section-title {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 50px;
    }

    .seo-small-title {
        color: #e90813;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .seo-section-title h2 {
        font-size: 35px;
        line-height: 1.25;
        margin: 0 0 15px;
        color:#024b81;
    }

    .seo-section-title p {
        color: var(--seo-text);
        line-height: 1.8;
        margin: 0;
    }

    .seo-intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 55px;
        align-items: center;
    }

    .seo-analysis-box {
        background: linear-gradient(135deg, #e9f9ff, #f8fdff);
        border: 1px solid #d8f0fa;
        border-radius: 18px;
        padding: 35px;
    }

    .seo-analysis-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
    }

    .seo-analysis-header strong {
        font-size: 17px;
    }

    .seo-score {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 7px solid #bdeafa;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--seo-primary-dark);
        font-size: 19px;
        font-weight: 700;
        background: #fff;
    }

    .seo-progress {
        margin-bottom: 18px;
    }

    .seo-progress-top {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        margin-bottom: 7px;
        color: var(--seo-text);
    }

    .seo-progress-bar {
        height: 8px;
        background: #dcecf2;
        border-radius: 10px;
        overflow: hidden;
    }

    .seo-progress-bar span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg, #1982bb, var(--seo-primary-dark));
        border-radius: 10px;
    }

    .seo-intro-content h3 {
        font-size: 25px;
        margin: 0 0 18px;
    }

    .seo-intro-content p {
        color: var(--seo-text);
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .seo-check-list {
        padding: 0;
        margin: 25px 0 0;
        list-style: none;
    }

    .seo-check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 13px;
        color: #42586a;
    }

    .seo-check-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        top: -2px;
        width: 21px;
        height: 21px;
        border-radius: 50%;
        background: #dff6ff;
        color: var(--seo-primary-dark);
        text-align: center;
        line-height: 21px;
        font-size: 12px;
        font-weight: bold;
    }

    /* ================= SERVICES ================= */

    .seo-services {
        padding: 90px 0;
        background: #f5fbfe;
    }

    .seo-service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .seo-service-card {
        background: #fff;
        padding: 30px 27px;
        border-radius: 14px;
        border: 1px solid #e2f0f5;
        transition: .3s;
        position: relative;
        overflow: hidden;
    }

    .seo-service-card:before {
        content: "";
        position: absolute;
        width: 0;
        height: 3px;
        left: 0;
        top: 0;
        background: #1982bb;
        transition: .3s;
    }

    .seo-service-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(11,41,66,.09);
    }

    .seo-service-card:hover:before {
        width: 100%;
    }

    .seo-icon {
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #e5f8ff;
        color: var(--seo-primary-dark);
        font-size: 25px;
        margin-bottom: 20px;
    }

    .seo-service-card h3 {
        font-size: 19px;
        margin: 0 0 11px;
    }

    .seo-service-card p {
        font-size: 14px;
        color: var(--seo-text);
        line-height: 1.7;
        margin: 0;
    }

    /* ================= SEO AREAS ================= */

    .seo-areas {
        padding: 90px 0;
        background: #fff;
    }

    .seo-area-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .seo-area {
        text-align: center;
        padding: 28px 18px;
        border-radius: 12px;
        border: 1px solid var(--seo-border)!important;
        background: #fff;
        transition: .3s;
    }

    .seo-area:hover {
        border-color: #a9e5f9;
        background: #f8fdff;
        transform: translateY(-5px);
    }

    .seo-area-icon {
        font-size: 29px;
        color: #1982bb;
        margin-bottom: 13px;
    }

    .seo-area h4 {
        margin: 0 0 8px;
        font-size: 17px;
    }

    .seo-area p {
        margin: 0;
         font-size: 14px;
        color: var(--seo-text);
        line-height: 1.6;
    }

    /* ================= PROCESS ================= */

    .seo-process {
        padding: 90px 0;
        background: #f5fbfe;
    }

    .seo-process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .seo-process-card {
        text-align: center;
        background: #fff;
        padding: 30px 20px;
        border-radius: 14px;
        border: 1px solid #e2f0f5;
    }

    .seo-number {
        width: 52px;
        height: 52px;
        margin: 0 auto 18px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #1982bb, var(--seo-primary-dark));
        color: #fff;
        font-weight: 700;
        font-size: 17px;
        box-shadow: 0 8px 20px rgba(24,174,234,.20);
    }

    .seo-process-card h4 {
        font-size: 17px;
        margin: 0 0 9px;
    }

    .seo-process-card p {
        margin: 0;
         font-size: 14px;
        color: var(--seo-text);
        line-height: 1.7;
    }

    /* ================= WHY SEO ================= */

    .seo-why {
        padding: 90px 0;
    }

    .seo-why-grid {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 60px;
        align-items: center;
    }

    .seo-why-box {
        padding: 38px;
        border-radius: 18px;
        background: linear-gradient(135deg, #e9f9ff, #f8fdff);
        border: 1px solid #d8f0fa;
    }

    .seo-why-box h3 {
        font-size: 30px;
        margin: 0 0 16px;
    }

    .seo-why-box p {
        color: var(--seo-text);
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .seo-feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .seo-feature {
        padding: 22px;
        border: 1px solid var(--seo-border);
        border-radius: 11px;
    }

    .seo-feature strong {
        display: block;
        margin-bottom: 7px;
        font-size: 15px;
    }

    .seo-feature strong i {
        color: #1982bb;
        margin-right: 6px;
    }

    .seo-feature span {
        color: var(--seo-text);
         font-size: 14px;
        line-height: 1.6;
    }

    /* ================= CTA ================= */

    .seo-cta {
        padding: 80px 0;
        background: linear-gradient(135deg, #087fbd, #16b4ed);
    }

    .seo-cta-inner {
        text-align: center;
        color: #fff;
        max-width: 800px;
        margin: auto;
    }

    .seo-cta h2 {
        font-size: 40px;
        margin: 0 0 15px;
    }

    .seo-cta p {
        margin: 0 auto 28px;
        line-height: 1.8;
        opacity: .94;
        max-width: 650px;
    }

    .seo-cta .seo-btn {
        background: #fff;
        color: var(--seo-primary-dark);
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }
	
	
.seo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 27px;
    background: linear-gradient(135deg, #1982bb, var(--seo-primary-dark));
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(24, 174, 234, .22);
    transition: .3s;
}

    /* ================= RESPONSIVE ================= */

    @media(max-width: 992px) {

        .seo-hero-grid,
        .seo-intro-grid,
        .seo-why-grid {
            grid-template-columns: 1fr;
        }

        .seo-hero {
            padding: 75px 0;
        }

        .seo-hero h1 {
            font-size: 42px;
        }

        .seo-service-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .seo-area-grid,
        .seo-process-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 600px) {

        .seo-container {
            width: 92%;
        }

        .seo-hero h1 {
            font-size: 34px;
        }

        .seo-hero p {
            font-size: 15px;
        }

        .seo-section-title h2 {
            font-size: 29px;
        }

        .seo-service-grid,
        .seo-area-grid,
        .seo-process-grid,
        .seo-feature-grid {
            grid-template-columns: 1fr;
        }

        .seo-cta h2 {
            font-size: 30px;
        }
    }
	
	
	
	
	
	
	
	
	
	
/* =====================================================
   GLOBAL
===================================================== */



:root{
    --sky:#eaf8ff;
    --sky2:#dff4ff;
    --blue:#1595d3;
    --blue-dark:#0878b4;
    --red:#ff5156;
    --dark:#172536;
    --text:#263648;
    --muted:#718096;
    --white:#ffffff;
    --border:#dceef6;
}



/* =====================================================
   STATS
===================================================== */

.shop-stats{
    background:#fff;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat{
    text-align:center;
    padding:23px 10px;
    border-right:1px solid var(--border);
}

.stat:last-child{
    border:0;
}

.stat strong{
    color:var(--blue);
    font-size:24px;
    font-weight:800;
    display:block;
}

.stat span{
    color:#7b8795;
    font-size:14px;
}


/* =====================================================
   COMMON
===================================================== */

.section{
    padding:85px 0;
}

.heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 48px;
}

.heading span{
    color:var(--red);
    font-size:14px;
    font-weight:800;
    letter-spacing:1.8px;
    text-transform:uppercase;
}



.heading p{
    color:#788695;
     font-size:14px;
    line-height:1.8;
}


/* =====================================================
   ECOMMERCE SERVICES
===================================================== */

.services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service{
    position:relative;
    overflow:hidden;

    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;

    padding:28px 24px;

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;
}

.service::after{
    content:"";
    position:absolute;
    width:100px;
    height:100px;
    right:-50px;
    top:-50px;

    background:#e8f8ff;
    border-radius:50%;

    transition:.4s;
}

.service:hover{
    transform:translateY(-8px);
    border-color:#a9dff3;
    box-shadow:0 20px 40px rgba(20,100,140,.10);
}

.service:hover::after{
    transform:scale(1.7);
}

.icon{
    position:relative;
    z-index:2;

    width:55px;
    height:55px;
    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eaf8ff;
    color:var(--blue);

    font-size:25px;

    margin-bottom:18px;

    transition:.35s;
}

.service:hover .icon{
    transform:scale(1.08) rotate(-5deg);
}

.service h3{
    position:relative;
    z-index:2;

    color:#26384a;
    font-size:16px;
    margin-bottom:8px;
}

.service p{
    position:relative;
    z-index:2;

    color:#778595;
    font-size:14px;
    line-height:1.75;
}


/* =====================================================
   HOW ECOMMERCE WORKS
===================================================== */

.workflow-section{
    background:
        linear-gradient(
            135deg,
            #e9f8ff,
            #f7fcff
        );
}

.workflow{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.workflow-card{
    background:#fff;
    border:1px solid #dceef6;
    border-radius:12px;
    padding:25px;

    display:flex;
    gap:18px;

    transition:.35s;
}

.workflow-card:hover{
    transform:translateX(6px);
    box-shadow:0 15px 35px rgba(20,100,140,.08);
}

.workflow-number{
    min-width:43px;
    height:43px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#e8f8ff;
    color:var(--blue);

    font-size:14px;
    font-weight:800;
}

.workflow-card h3{
    font-size:15px;
    margin-bottom:6px;
}

.workflow-card p{
    color:#7a8795;
    font-size:14px;
    line-height:1.75;
}


/* =====================================================
   FEATURES
===================================================== */

.feature-section{
    background:#fff;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.feature{
    text-align:center;
    padding:25px 18px;

    background:#f8fcfe;
    border:1px solid #e2f0f6;
    border-radius:10px;

    transition:.35s;
}

.feature:hover{
    transform:translateY(-6px);
    background:#fff;
    box-shadow:0 15px 30px rgba(20,100,140,.08);
}

.feature-icon{
    width:50px;
    height:50px;
    margin:0 auto 13px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#e8f8ff;
    color:var(--blue);

    font-size:20px;
}

.feature h3{
    font-size:14px;
    margin-bottom:6px;
}

.feature p{
    color:#7d8997;
    font-size:14px;
    line-height:1.7;
}


/* =====================================================
   SHOPPING JOURNEY
===================================================== */

.journey{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    position:relative;
}

.journey::before{
    content:"";
    position:absolute;
    left:10%;
    right:10%;
    top:37px;
    height:2px;
    background:#d9edf5;
}

.journey-item{
    text-align:center;
    position:relative;
    z-index:2;
}

.journey-icon{
    width:74px;
    height:74px;
    margin:auto auto 18px;

    border-radius:50%;

    background:#fff;
    border:1px solid #dceef5;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--blue);
    font-size:21px;

    box-shadow:0 8px 20px rgba(20,100,140,.07);

    transition:.35s;
}

.journey-item:hover .journey-icon{
    background:var(--blue);
    color:#fff;
    transform:translateY(-5px);
}

.journey-item h3{
    font-size:14px;
    margin-bottom:6px;
}

.journey-item p{
    color:#7c8895;
    font-size:9.5px;
    line-height:1.65;
}


/* =====================================================
   PAYMENT / ADMIN / ORDER
===================================================== */

.business-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.business-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:30px;
}

.business-card h3{
    font-size:20px;
    margin-bottom:10px;
}

.business-card > p{
    color:#7a8795;
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
}

.checks{
    list-style:none;
    display:grid;
    gap:11px;
}

.checks li{
    color:#556373;
    font-size:14px;
}

.checks li::before{
    content:"✓";
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:20px;
    height:20px;

    margin-right:8px;

    border-radius:50%;
    background:#e9f8ff;
    color:var(--blue);

     font-size:14px;
    font-weight:800;
}


/* =====================================================
   PROCESS
===================================================== */

.process-section{
    background:#0b5982;
}

.process-section .heading h2{
    color:#fff;
}

.process-section .heading p{
    color:#96a5b4;
}

.process{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.process-card{
    text-align:center;
    position:relative;
}

.process-circle{
    width:68px;
    height:68px;
    margin:0 auto 17px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#203e53;
    border:1px solid rgba(255,255,255,.12);

    color:#72cef2;

     font-size:14px;
    font-weight:800;

    transition:.35s;
}

.process-card:hover .process-circle{
    background:var(--blue);
    color:#fff;
    transform:scale(1.08);
}

.process-card h3{
    color:#fff;
    font-size:14px;
    margin-bottom:7px;
}

.process-card p{
    color:#91a0ae;
    font-size:9.5px;
    line-height:1.7;
}




/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1000px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .shop-visual{
        max-width:550px;
        margin:auto;
    }

    .services{
        grid-template-columns:repeat(2,1fr);
    }

    .features{
        grid-template-columns:repeat(2,1fr);
    }

    .journey{
        grid-template-columns:repeat(3,1fr);
        row-gap:30px;
    }

    .journey::before{
        display:none;
    }

    .process{
        grid-template-columns:repeat(3,1fr);
        row-gap:30px;
    }

    .why{
        grid-template-columns:1fr;
    }

}


@media(max-width:650px){

    .shop-hero{
        padding:110px 0 60px;
    }

    .hero-grid h1{
        font-size:35px;
    }

    .shop-visual{
        transform:scale(.9);
        margin-left:-20px;
        width:calc(100% + 40px);
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .stat{
        border-bottom:1px solid var(--border);
    }

    .services,
    .workflow,
    .business-grid{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr 1fr;
    }

    .journey{
        grid-template-columns:1fr 1fr;
    }

    .process{
        grid-template-columns:1fr 1fr;
    }

    .section{
        padding:65px 0;
    }

    .heading h2{
        font-size:28px;
    }

    .cta-inner h2{
        font-size:29px;
    }

}

@media(max-width:430px){

    .features,
    .journey,
    .process{
        grid-template-columns:1fr;
    }

    .shop-visual{
        transform:scale(.75);
        margin-left:-50px;
        width:calc(100% + 100px);
    }

}
























:root{
    --red:#e90813;
    --red-dark:#e90813;
    --blue:#1769ff;
    --dark:#18202d;
    --text:#252d3b;
    --muted:#788292;
    --border:#e7ebf1;
}


/* =========================================================
   HERO
========================================================= */

.webdev-hero{
    position:relative;
    padding:155px 0 90px;
    background: radial-gradient(circle at 90% 20%, rgba(24, 174, 234, .18), transparent 30%), radial-gradient(circle at 10% 80%, rgba(24, 174, 234, .10), transparent 30%), linear-gradient(135deg, #f7fdff 0%, #eaf8ff 100%);
    overflow:hidden;
}

.webdev-hero::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border:1px solid rgba(255,77,82,.10);
    border-radius:50%;
    top:-150px;
    right:-100px;
}

.webdev-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:65px;
    align-items:center;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 14px;
    border-radius:30px;
    background:#fff1f1;
    color:#1982bb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-tag i{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#1982bb;
    animation:pulse 1.8s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,77,82,.5);
    }

    70%{
        box-shadow:0 0 0 9px rgba(255,77,82,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(255,77,82,0);
    }
}

.webdev-hero h1{
    font-size:50px;
    line-height:1.13;
    font-weight:800;
    color:var(--dark);
    margin-bottom:20px;
}

.webdev-hero h1 span{
    color:#1982bb;
}

.hero-description{
    color:var(--muted);
    font-size:15px;
    line-height:1.9;
    max-width:600px;
    margin-bottom:28px;
}

.hero-buttons{
   
    gap:13px;
    flex-wrap:wrap;
}

.btn-red{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:13px 22px;
    background:#1982bb;
    color:white;
    text-decoration:none;
    border-radius:7px;
    font-size:14px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(255,77,82,.20);
    transition:.35s;
}

.btn-red:hover{
    background:var(--red-dark);
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(255,77,82,.30);
}

.btn-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 22px;
    border:1px solid #dfe4eb;
    background:#fff;
    color:#4b5563;
    text-decoration:none;
    border-radius:7px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn-light:hover{
    border-color:#1982bb;
    color:#1982bb;
}


/* =========================================================
   HERO CODE WINDOW
========================================================= */

.code-window{
    position:relative;
    background:#111722;
    border-radius:15px;
    padding:12px;
    box-shadow:
        0 30px 70px rgba(20,30,50,.18);
    transform:perspective(1000px) rotateY(-5deg);
    animation:heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat{

    0%,100%{
        transform:perspective(1000px) rotateY(-5deg) translateY(0);
    }

    50%{
        transform:perspective(1000px) rotateY(-5deg) translateY(-9px);
    }
}

.code-top{
    height:32px;
    display:flex;
    align-items:center;
    gap:6px;
    padding:0 8px;
}

.code-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#444d5c;
}

.code-body{
    background:#0b1018;
    border-radius:8px;
    padding:25px 24px;
    min-height:330px;
}

.code-line{
    height:7px;
    border-radius:10px;
    background:#293242;
    margin:13px 0;
}

.code-line.short{
    width:45%;
}

.code-line.medium{
    width:68%;
}

.code-line.long{
    width:90%;
}

.code-line.red{
    background:#ff555b;
    width:55%;
}

.code-line.blue{
    background:#5488ff;
    width:73%;
}

.code-line.green{
    background:#53d69b;
    width:38%;
}

.code-number{
    position:absolute;
    right:20px;
    top:65px;
    padding:8px 12px;
    border-radius:6px;
    background:#1b2432;
    color:#8fa8ff;
    font-size:14px;
}


/* =========================================================
   STATS
========================================================= */

.webdev-stats{
    background:#fff;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat{
    text-align:center;
    padding:25px 10px;
    border-right:1px solid var(--border);
}

.stat:last-child{
    border-right:0;
}

.stat strong{
    display:block;
    color:#1982bb;
    font-size:26px;
    font-weight:800;
}

.stat span{
    color:#7d8695;
    font-size:14px;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.web-section{
    padding:90px 0;
}

.section-title{
    
    max-width:720px;
    margin:0 auto 50px;
}

.section-title span{
    color:#1982bb;
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-size:14px;
    font-weight:800;
}

.section-title h2{
    font-size:30px;
    line-height:1.25;
    margin:10px 0 13px;
    color:#024b81;
    font-weight:800;
}

.section-title p{
    color:#7a8493;
    font-size:14px;
    line-height:1.8;
}


/* =========================================================
   WHAT WE DO
========================================================= */

.dev-services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.dev-card{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:28px 25px 30px;
    overflow:hidden;
    transition:.4s;
}

.dev-card::after{
    content:"";
    position:absolute;
    width:100px;
    height:100px;
    background:#fff0f0;
    border-radius:50%;
    right:-45px;
    top:-45px;
    transition:.4s;
}

.dev-card:hover{
    transform:translateY(-8px);
    border-color:#ffb2b5;
    box-shadow:0 20px 40px rgba(30,40,60,.10);
}

.dev-card:hover::after{
    transform:scale(1.8);
}

.dev-icon{
    width:54px;
    height:54px;
    border-radius:12px;
    background:#fff1f1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1982bb;
    font-size:25px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
    transition:.35s;
}

.dev-card:hover .dev-icon{
    transform:rotate(-5deg) scale(1.08);
}

.dev-card h3{
    font-size:17px;
    margin-bottom:9px;
    position:relative;
    z-index:2;
}

.dev-card p{
    color:#788292;
    font-size:14px;
    line-height:1.75;
    position:relative;
    z-index:2;
}


/* =========================================================
   FRONTEND / BACKEND SPLIT
========================================================= */

.stack-section{
    background:#111722;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.stack-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,77,82,.08);
    filter:blur(80px);
    left:-180px;
    top:-100px;
}

.stack-section .section-title h2{
    color:#fff;
}

.stack-section .section-title p{
    color:#929aaa;
}

.stack-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.stack-box{
    position:relative;
    padding:35px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.035);
    border-radius:14px;
    overflow:hidden;
    transition:.35s;
}

.stack-box:hover{
    border-color:rgba(255,77,82,.35);
    transform:translateY(-5px);
}

.stack-label{
    color:#ff777b;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.stack-box h3{
    font-size:25px;
    margin:10px 0;
}

.stack-box > p{
    color:#8f98a9;
    font-size:14px;
    line-height:1.8;
    margin-bottom:25px;
}

.tech-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.tech{
    padding:7px 12px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.04);
    border-radius:5px;
    color:#b8bfcb;
    font-size:14px;
}


/* =========================================================
   DEVELOPMENT LAYERS
========================================================= */

.layers{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.layer{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:25px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    transition:.35s;
}

.layer:hover{
    transform:translateX(6px);
    box-shadow:0 15px 35px rgba(20,30,50,.08);
}

.layer-number{
    min-width:42px;
    height:42px;
    border-radius:50%;
    background:#fff1f1;
    color:#1982bb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:14px;
}

.layer h3{
    font-size:15px;
    margin-bottom:5px;
}

.layer p{
    color:#7c8593;
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-area{
    background:#f0f4f9;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.feature{
    
    gap:15px;
    background:#fff;
    padding:22px;
    border-radius:10px;
    border:1px solid #e2e7ee;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 28px rgba(20,35,60,.08);
}

.feature-icon{
    min-width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:#fff1f1;
    color:#1982bb;
    font-size:18px;
}

.feature h3{
    font-size:14px;
    margin-bottom:5px;
}

.feature p{
    color:#7c8593;
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.process-wrapper{
    position:relative;
}

.process-line{
    position:absolute;
    top:38px;
    left:10%;
    right:10%;
    height:1px;
    background:#e3e7ed;
}

.process-grid{
    position:relative;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.process-item{
    text-align:center;
}

.process-circle{
    width:76px;
    height:76px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#fff;
    border:1px solid #e2e6ec;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1982bb;
    font-size:17px;
    font-weight:800;
    position:relative;
    z-index:2;
    box-shadow:0 8px 20px rgba(20,30,50,.07);
}

.process-item h3{
    font-size:14px;
    margin-bottom:7px;
}

.process-item p{
    color:#7c8593;
    font-size:14px;
    line-height:1.7;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:60px;
    align-items:center;
}

.why-visual{
      background: linear-gradient(180deg, #1982bb 0%, #0A4FB7 100%) !important;
    border-radius:18px;
    min-height:390px;
    padding:35px;
    position:relative;
    overflow:hidden;
    color:white;
}

.why-visual::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    right:-80px;
    top:-70px;
}

.why-visual::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
    left:-70px;
    bottom:-80px;
}

.why-visual h3{
    font-size:32px;
    line-height:1.15;
    position:relative;
    z-index:2;
}

.code-symbol{
    position:absolute;
    right:30px;
    bottom:25px;
    font-size:110px;
    font-weight:800;
    opacity:.16;
}

.why-content .small-label{
    color:#1982bb;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:800;
}

.why-content h2{
    font-size:36px;
    line-height:1.2;
    margin:10px 0 15px;
}

.why-content > p{
    color:#788292;
    font-size:14px;
    line-height:1.8;
    margin-bottom:25px;
}

.check-list{
    list-style:none;
    display:grid;
    gap:13px;
}

.check-list li{
    color:#4d5665;
    font-size:14px;
}

.check-list li::before{
    content:"✓";
    width:20px;
    height:20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff0f0;
    color:#1982bb;
    margin-right:9px;
    font-size:14px;
    font-weight:800;
}


/* =========================================================
   CTA
========================================================= */

.webdev-cta{
    padding:85px 0;
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(255,77,82,.15),
            transparent 45%
        ),
        #111722;
}

.cta-box{
    text-align:center;
}

.cta-box span{
    color:#ff777b;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:800;
}

.cta-box h2{
    color:#e90813;
    font-size:40px;
    line-height:1.2;
    margin:12px 0;
}

.cta-box p{
    color:#8d96a6;
    font-size:14px;
    max-width:600px;
    margin:0 auto 25px;
}


/* =========================================================
   FAQ
========================================================= */

.faq{
    max-width:850px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:8px;
    margin-bottom:10px;
    overflow:hidden;
}

.faq-question{
    padding:18px 20px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:14px;
    font-weight:600;
}

.faq-question span{
    width:25px;
    height:25px;
    border-radius:50%;
    background:#fff1f1;
    color:#1982bb;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
}

.faq-answer p{
    padding:0 20px 18px;
    color:#788292;
    font-size:14px;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:160px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px){

    .webdev-hero-grid{
        grid-template-columns:1fr;
    }

    .webdev-hero h1{
        font-size:44px;
    }

    .code-window{
        max-width:650px;
        margin:auto;
    }

    .dev-services{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(3,1fr);
        row-gap:35px;
    }

    .process-line{
        display:none;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

}


@media(max-width:700px){

    .webdev-hero{
        padding:125px 0 70px;
    }

    .webdev-hero h1{
        font-size:35px;
    }

    .hero-description{
        font-size:14px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .stat{
        border-bottom:1px solid var(--border);
    }

    .dev-services,
    .stack-grid,
    .layers,
    .feature-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr 1fr;
    }

    .web-section{
        padding:65px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .why-content h2{
        font-size:29px;
    }

    .cta-box h2{
        font-size:30px;
    }

}
