 @import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Outfit:wght@100..900&display=swap');
 :root {
       --red: #f06334;
      --dark-red: #9b0c09;
       --black: #111111;
      --blue: #0e76a8;
      --blue-dark: #086aa0;
      --accent: #2563eb;
      --text-dark: #1a1a2e;
      --text-muted: #6b7280;
      --bg-light: #f5f3ef;
      --bg-white: #ffffff;
      --border: #e5e7eb;
      --orange: #f06334;
      --indigo: #6366f1;
      --green: #10b981;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
     font-family: "Google Sans", sans-serif; 
      color: var(--text-dark);
      background: #fff;
      font-size: 15px;
    }

 
    a{
    text-decoration: none;
    color:var(--red);
   }
   h1, h2, h3, h4, h5, h6{
     font-family: "Outfit", sans-serif;
     font-weight: 600;
   }
    .btn-primary { 
      background: var(--orange);
       color: #fff; 
       border-radius: 30px;
        padding: 12px 28px; 
        font-weight: 700; font-size: .85rem; letter-spacing: 1px; 
        text-transform: uppercase; border: none;
         transition: background .2s, transform .2s; 
         display: inline-flex; align-items: center;
          gap: 8px; }
    .btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

      .btn-secondary { 
      background: var(--accent);
       color: #fff; 
       border-radius: 30px;
        padding: 12px 28px; 
        font-weight: 700; font-size: .85rem; letter-spacing: 1px; 
        text-transform: uppercase; border: 1px solid var(--accent);
         transition: background .2s, transform .2s; 
         display: inline-flex; align-items: center;
          gap: 8px; }
    .btn-secondary:hover {border-color: var(--orange); background: var(--orange); color: var(--bg-light); transform: translateY(-2px); }

    /* Custom text colors */
    .text-indigo { color: var(--indigo) !important; }
    .text-green { color: var(--green) !important; }

       /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #fff;
  transition: all 0.5s;
  z-index: 997;
   box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
}

.header .header-container {
  transition: all 0.5s;
  position: relative;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--red);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  background: var(--red);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--dark);
    padding: 22px 15px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent);
    font-weight: 700;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    width:230px;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--dark);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--red);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--text-dark);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
.header{
  padding: 15px 0px;
}
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--red), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--red);
    color: #fff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--red);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--red);
    color: #fff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #fff;
    border: 1px solid color-mix(in srgb, var(--red), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 40px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* top-slider */
.top-slider{
   padding: 90px 0 0;
      overflow: hidden;
      position: relative;
      min-height:80vh;
      background-color: #fff;
}
.top-slider h1 {
      font-size: 45px;
      font-weight: 700;
      line-height: 1.12;
      color: var(--text-dark);
      margin-bottom: 18px;
    }
    .top-slider p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }

     .top-slider H5 {
      color: var(--red);
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }

    .top-slider img {
      position: relative;
      z-index: 1;
      height: 350px;
      object-fit: contain;
    }

    .main-banner .swiper-pagination{
      position: absolute;
      top: 30%;
      left: 30px;
      bottom: auto;
      display: block;
      width: 20px;
    }
    /* ===== HERO ===== */
    .hero {
      padding: 80px 0 0;
      overflow: hidden;
      position: relative;
      min-height:90vh;
    }
    .hero-label {
      color: var(--accent);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }
    .hero h1 {
      font-size: 40px;
      font-weight: 700;
      line-height: 1.12;
      color: var(--text-dark);
      margin-bottom: 18px;
    }
    .hero p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .btn-primary-custom {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 13px 28px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary-custom:hover {
      background: var(--blue-dark);
      transform: translateY(-2px);
      color: #fff;
    }
    .hero-img-wrap {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    .hero-circle {
      width: 380px; height: 380px;
      border-radius: 50%;
      background: #e2d8cc;
      position: absolute;
      bottom: 0; right: 30px;
      z-index: 0;
    }
    .hero-img-wrap img {
      position: relative;
      z-index: 1;
      max-height: 440px;
      object-fit: contain;
    }
    /* Placeholder for hero image */
    .hero-person-placeholder {
      width: 320px; height: 440px;
      background: linear-gradient(160deg, #ddd 0%, #c9c9c9 100%);
      border-radius: 12px;
      position: relative;
      z-index: 1;
      display: flex; align-items: center; justify-content: center;
      color: #999; font-size: 14px;
    }

    /* Side icons */
    .hero-side-icons {
      position: absolute;
      right: 10px; top: 40%;
      display: flex; flex-direction: column; gap: 10px;
    }
    .side-icon {
      width: 36px; height: 36px;
      background: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      color: var(--accent);
      font-size: 14px;
    }

    /* ===== BRANDS / TRUSTED PARTNERS ===== */
    .brands-section {
      background: rgba(37, 99, 235, 0.06);
    }
    .brands-section .section-title {
      font-size: clamp(30px, 4vw, 42px);
      margin-bottom: 12px;
    }
    .brands-section .section-label {
      color: var(--text-muted);
      letter-spacing: 2px;
    }

    .brands-strip .swiper {
      padding: 16px 0;
    }
    .brands-strip .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .client-logo {
      opacity: 0.75;
      transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 18px 24px;
      border-radius: 14px;
      text-align: center;
      background: rgba(255, 255, 255, 0.85);
      width: 100%;
      height: 92px;
    }
    .client-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .client-logo:hover {
      opacity: 1;
      transform: translateY(-4px);
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    }

    /* ===== SERVICES ===== */
    .section { padding: 80px 0; }
    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(26px, 3.5vw, 30px);
      font-weight: 500;
      line-height: 1.2;
      color: var(--text-dark);
    }
    .section-title span { color: var(--accent); }

    .service-card {
      background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 40px 28px 20px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      position: relative;
      animation: fadeInUp 0.6s ease-out forwards;
      opacity: 0;
      transform: translateY(30px);
       }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .servicesSwiper .swiper-slide {
       padding-bottom: 40px;
    }
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
    
    .service-card:hover::before {
      transform: scaleX(1);
    }
    .service-card:hover {
      box-shadow: 0 20px 60px rgba(37,99,235,0.15);
      border-color: var(--accent);
    }
    .service-icon {
      width: 80px; height: 80px;
      margin: 0 auto 24px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 16px;
      transition: all 0.3s ease;
      position: relative;
    }
    .service-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--accent), var(--orange));
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .service-arrow::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent), #1d4ed8);
      border-radius: 50%;
      transform: scale(0);
      transition: transform 0.3s ease;
    }
    .service-card:hover .service-arrow::before {
      transform: scale(1);
    }
    .service-card:hover .service-arrow {
      transform: rotate(45deg) scale(1.1);
      box-shadow: 0 8px 25px rgba(37,99,235,0.3);
   
      z-index: 1;
      transition: transform 0.3s ease;
    }
    .service-card:hover .service-icon i {
      transform: scale(1.1);
    }
    .service-card h5 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .service-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .service-arrow {
      position: absolute;
      width: 40px; height: 40px;
      background: var(--accent);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 16px;
      transition: background 0.2s;
      z-index: 2;
      margin-bottom: -20px;
      left: 45%; 
    }
    .service-card:hover .service-arrow { background: var(--red); }

    /* ===== ABOUT / COMPANY ===== */
    .about-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      padding: 100px 0;
      position: relative;
    }
    .about-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e5e7eb" opacity="0.3"/><circle cx="80" cy="80" r="2" fill="%23e5e7eb" opacity="0.3"/><circle cx="60" cy="40" r="1" fill="%23e5e7eb" opacity="0.2"/></svg>');
      background-size: 100px 100px;
      opacity: 0.5;
    }
    .about-section .container {
      position: relative;
      z-index: 1;
    }
    .about-content .company-label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .about-content .display-4 {
      font-size: clamp(32px, 5vw, 48px);
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .about-content .text-primary {
      color: var(--accent) !important;
    }
    .about-content .lead {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .read-more-link{
      color: var(--accent);
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
      text-transform: uppercase;
    }

    /* ===== FAQ SECTION ===== */
    .faq-section {
      background: var(--bg-light);
      padding: 100px 0;
    }
    .faq-section .section-label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--text-muted);
    }
    .faq-section .display-5 {
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .faq-section .lead {
      font-size: 18px;
      color: var(--text-muted);
    }
    .faq-section .accordion-button {
      background: #fff;
      border: none;
      box-shadow: none;
      padding: 20px 24px;
      font-size: 18px;
      letter-spacing: .1px;
      color: var(--text-dark);      
      border-radius: 20px !important;
    }
    .faq-section .accordion-button:not(.collapsed) {
      background: #fff;
      color: var(--accent);
      box-shadow: none;
    }
    .faq-section .accordion-button:focus {
      box-shadow: none;
      border: none;
    }
    .faq-section .accordion-button .number {
      margin-right: 12px;
    }
    .faq-section .accordion-body {
      font-size: 14px;
      background: #fff;
      padding: 0 24px 24px 24px;
      color: var(--text-muted);
      line-height: 1.6;
      border-radius: 0 0 10px 10px;
    }
    .faq-section .accordion-item {
      border: none;
      margin-bottom: 16px;      
      border-radius: 20px !important;
    }

    /* ===== TECHNOLOGIES SECTION ===== */
    .technologies-section {
     background: linear-gradient(90deg, rgba(240, 150, 255, 0.15) 0%, rgba(191, 200, 252, 0.15) 51%, rgba(187, 148, 255, 0.15) 100%);
      padding: 140px 0 120px;
      position: relative;
    }
    .main-banner-content h5 {
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
    .fill-body {
      width: 100%;
    fill:#fff !important;
}
  .pattern-3{
    top:-48px;
  }
    .technologies-section .section-label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--text-muted);
    }
    .technologies-section .display-5 {
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .technologies-section .lead {
      font-size: 18px;
      color: var(--text-muted);
    }


    .tech-category h4 {
      color: var(--accent);
      margin-bottom: 30px;
      font-size: 20px;
    }

    .techo-box .img-box{
      width: 65px;
      height: 65px;
      border-radius: 8px;
      padding: 12px;
      margin: 0 auto;
      box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
       background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
       margin-bottom: 12px;
    }

    .techo-box .img-box img {  
      width: 100%;
      height: 100%;   
      object-fit: cover;
      display: block;;
    }
     .techo-box .heading{
       text-align: center;
     }
    .techo-box .heading h5 {
      font-size: 13px;
      font-weight: 700;
      margin-top: 0px;
    }
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .tech-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .tech-category {
        padding: 30px 20px;
      }

      .tech-items {
        gap: 10px;
      }

      .tech-badge {
        padding: 6px 12px;
        font-size: 13px;
      }
    }

    /* ===== STATS ===== */
    .stats-section {
      background: #020626;
      padding: 80px 0 150px;
      position: relative;
    }
    .stats-section .section-label {
      color: rgba(255,255,255,0.7);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .stats-section .pattern{
       opacity: 0.1;
       rotate: 180deg;
       top:0px;
    }

    .stats-section h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 40px;
    }

    .stats-section .section-p {
      color: rgba(255,255,255,0.7);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 40px;
    }
    .stat-item { text-align: center; padding:30px 20px;background-color: #0D1130;border-radius: 10px; }
    .stat-item h3 {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-item p {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    
    /* ===== VIDEO SECTION ===== */
    .video-section {
      position: relative;
      min-height: 380px;
      display: flex;
      align-items: center;
      background: url('https://images.unsplash.com/photo-1560472355-536de3962603?w=1200&q=80') center/cover no-repeat;
      overflow: hidden;
    }
    .video-overlay {
      position: absolute; inset: 0;
      background: rgba(15,23,42,0.6);
    }
    .video-content {
      position: relative; z-index: 1;
      color: #fff;
      text-align: center;
    }
    .video-content h2 {
      font-size: clamp(26px, 4vw, 48px);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 32px;
    }
    .play-btn {
      width: 64px; height: 64px;
      background: var(--accent);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s, background 0.2s;
      margin-bottom: 12px;
    }
    .play-btn:hover { transform: scale(1.1); background: #1d4ed8; }
    .play-btn i { color: #fff; font-size: 20px; margin-left: 4px; }
    .video-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
    }

    /* ===== CASE STUDIES ===== */
    .case-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.3s, transform 0.3s;
      height: 100%;
    }
    .case-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
      transform: translateY(-4px);
    }
    .case-card-img {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .case-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .case-card-body { padding: 24px; }
    .case-card-body h6 { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
    .case-card-body .badge-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
      display: block;
    }
    .case-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
    .case-card-body a { color: var(--accent); font-size: 13px; font-weight: 700; text-decoration: none; }

    /* Portfolio Tab Styles */
    .nav-tabs {
      border-bottom: 0px;
      margin-bottom: 2rem;
    }

    .nav-tabs .nav-link {
      border: 2px solid var(--accent);
      background: #fff;
      color: var(--accent);
      font-weight: 600;
      font-size: 14px;
      padding: 12px 24px;
      margin-right: 8px;
      border-radius: 20px;
      transition: all 0.3s ease;
      position: relative;
    }


    .nav-tabs .nav-link.active , .nav-tabs .nav-link:hover{
      color: #fff;
      background-color: var(--accent);
       border: 2px solid var(--accent);
    }



    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
       background: #ebeeff;
      padding: 140px 0 50px;
    }
    .testimonial-card {
      background: #fff;
      border-radius:30px 0px 30px 0px;
      padding: 32px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .testimonial-card h6 { font-weight: 800; font-size: 15px; margin-bottom: 12px; }
    .testimonial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ddd, #bbb);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      color: #888;
      overflow: hidden;
    }
    .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .author-name { font-weight: 700; font-size: 14px; }
    .author-role { font-size: 12px; color: var(--text-muted); }
    .swiper-button-prev{
      background-image: none;
      &::after{display: none;
      }
    }
    .swiper-button-next{
      background-image: none;
       &::after{display: none;
      }
    }
    .swiper-button-prev , .swiper-button-next{
      width: 40px !important; height: 40px !important;
      background: var(--accent);
      color:#fff;
      border-radius: 5px;
      border: 2px solid var(--accent);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      align-items: center;
      transition: background 0.2s;
      margin-top: 0px;
    }
    .reviewSwiper-pagination{
       margin: 0px 20px;
       .swiper-pagination-bullet{
         width:20px !important;
          height: 4px !important;
          border-radius: 0px;
       }
       .swiper-pagination-bullet.swiper-pagination-bullet-active{
          width: 30px !important;
          background-color: var(--accent) !important;
       }
    }
    /* ===== BLOG ===== */
    .blog-section { padding: 160px 0 90px; 
    }
    .blog-list a {
      display: block;
      padding: 8px 0;
      color: var(--text-dark);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .blog-list a:hover { color: var(--accent); }
    .blog-list a::before { content: "â†’ "; color: var(--orange); }
    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 16px;
    }
    .blog-card .blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
    .blog-card .blog-date i { margin-right: 4px; }
    .blog-card h5 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
    .blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
    .blog-card a { color: var(--accent); font-size: 13px; font-weight: 700;text-transform: uppercase; text-decoration: none; }
    .blog-card a:hover { color: var(--orange); text-decoration: underline;}
    /* ===== CTA ===== */
    .cta-section {
      background: #020626;
      position: relative;
      padding: 72px 0;
    }
    .cta-section .col-lg-7:before{
        top: 7px;
        content: "";
        position: absolute;
        width: 5px;
        left:0px;
        height: 137px;
        background-color: var(--red);
    }
    .cta-section h2 {
      font-size: clamp(24px, 3.5vw, 40px);
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
    }
    .cta-section h2 span { color: var(--accent); }
    .cta-section p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
    .cta-section .btn-contact {
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 12px 28px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .cta-section .btn-contact:hover { background: #c96a25; }
    .cta-phone h3 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      color: var(--orange);
    }
    .cta-phone p {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .cta-phone i {  color: var(--orange); font-size: 28px; margin-bottom: 8px; }

    /* ===== FOOTER ===== */
    footer {
      background: #020626;
      padding: 60px 0 0;
    }
   
    .footer-description{
      margin-top: 15px;
      font-size: 13px;
      color: #fff;
      line-height: 1.8;
      margin-bottom: 24px;
    }
    footer address { font-size: 13px; color: #fff; font-style: normal; line-height: 1.8; }
    footer address a { color: var(--text-muted); text-decoration: none; }
    footer address a:hover { text-decoration: underline;color: var(--accent); font-weight: 700; }
    .footer-heading {
      font-size: 14px; font-weight: 800;
      color:#fff;
      margin-bottom: 18px;
    }
    .services-links{
      .footer-links li{width: 50%;float: left;  }
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-size: 13px;
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--accent);font-weight: 700; }
    .store-btn img { height: 36px; margin-bottom: 10px; display: block; border-radius: 4px; }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 20px 0;
      margin-top: 40px;
    }
    .footer-bottom p { font-size: 13px; color: var(--text-muted); margin: 0; }
    .social-links { display: flex; gap: 10px; }
    .social-links a {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      font-size: 14px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .social-links a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

    /* ===== CAROUSEL DOTS ===== */
    .dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
    .dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: background 0.2s;
    }
    .dot.active { background: var(--accent); }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp 0.6s ease both; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }

    @media (max-width: 768px) {
      .hero { padding: 48px 0 0; }
      .hero-circle { width: 240px; height: 240px; }
    }


 
.image-box-boder-box {
    position: relative;
}
.image-box-boder-box::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-image: linear-gradient(to bottom, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-position: left top;
    background-size: 100% 8px;
    background-repeat: repeat-y;
    z-index: 1;
}
.image-box-boder-box .image-box-boder::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-image: linear-gradient(to bottom, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-position: left top;
    background-size: 100% 8px;
    background-repeat: repeat-y;
}
.image-box-boder-box .image-box-boder::after {
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    top: 0;
    height: 1px;
    background-image: linear-gradient(to right, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-position: left bottom;
    background-size: 8px 100%;
    background-repeat: repeat-x;
}

.image-box-boder-box::after {
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    bottom: -1px;
    height: 1px;
    background-image: linear-gradient(to right, #ccc 58.33333%, rgba(0, 0, 0, 0) 0%);
    background-position: left bottom;
    background-size: 8px 100%;
    background-repeat: repeat-x;
}

.image-box-boder-box .image-box-boder {
    padding: 0;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ht-box-images .image-box-wrap {
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 30px 35px 31px;
    border-radius: 5px;
}
.ht-box-images .image-box-wrap .box-image {
    text-align: center;
    margin-bottom: 20px;
    color: #086AD8;
}
.ht-box-images .image-box-wrap .box-image img {
   width:80px;
   height: 80px;
}
.feature-images-wrapper {
  padding:60px 0px;
}
.about-section img {
        position: absolute;
    top: 10%;
    left: 35%;
    width: 421px;
    height: auto;
    opacity: 0.2;
}
.ht-box-images .image-box-wrap .content {
    text-align: center;
}
.ht-box-images .image-box-wrap .content .heading {
    line-height: 1.25;
    font-size: 20px;
    margin-bottom: 12px;
}
.ht-box-images .image-box-wrap .content .text {
    line-height: 22px;
    font-size: 14px;
    color:var(--text-muted);
    margin-bottom:0px;
}
.ht-box-images .image-box-wrap .content .more-arrow-link {
    margin-top: 15px;
}
.ht-box-images .image-box-wrap .content .more-arrow-link a {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 13px;
}
.image-box-boder-box .image-box-boder:hover .ht-box-images .image-box-wrap .content .more-arrow-link a{
  color: var(--red);
}
.image-box-boder-box .image-box-boder:hover .ht-box-images {
    background: #fff;
    border-radius: 3px;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    z-index: 3;
    -webkit-box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
    box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
    z-index: 9;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .ht-box-images .image-box-wrap {
    padding: 20px;
  }
  .services-links .footer-links{
     margin-bottom: 40px;
  }
  .services-links .footer-links li {
    width: 100%;
    float: none;
  }
  .top-slider{
    padding-top:140px !important;
  }
}


  
   
    .contact-section {
      padding: 90px 0;
    }

    .contact-info-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px 20px;
      height: 100%;
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .contact-info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(37, 99, 235, 0.10);
    }

    .contact-info-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--accent), var(--orange));
      color: #fff;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .contact-info-card p,
    .contact-info-card a {
      margin: 0;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      text-decoration: none;
    }

    .form-wrap {
      background: #fff;
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.08);
    }

    .form-wrap .form-control,
    .form-wrap .form-select {
      border-radius: 12px;
      min-height: 50px;
      border: 1px solid #dbe2ea;
      box-shadow: none;
      font-size: 14px;
    }

    .form-wrap textarea.form-control {
      min-height: 140px;
      resize: none;
    }

    .form-wrap .form-control:focus,
    .form-wrap .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.10);
    }

    .contact-side-panel {
      background: linear-gradient(135deg, #020626 0%, #11183f 100%);
      border-radius: 24px;
      padding: 28px;
      color: #fff;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .contact-side-panel::before {
      content: "";
      position: absolute;
      right: -45px;
      top: -45px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.18);
    }

    .contact-side-panel h4,
    .contact-side-panel h5,
    .contact-side-panel p,
    .contact-side-panel li,
    .contact-side-panel a {
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .contact-side-panel .muted-light {
      color: rgba(255, 255, 255, 0.72);
    }

    .contact-side-list {
      list-style: none;
      padding: 0;
      margin: 22px 0;
    }

    .contact-side-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.82);
    }

    .contact-side-list i {
      color: var(--orange);
    }

    .office-time-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 16px;
      padding: 16px;
      position: relative;
      z-index: 1;
    }

    .office-time-card p {
      margin-bottom: 8px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 14px;
    }

  
    .map-section-wrap {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.08);
    }

    .map-frame {
      width: 100%;
      height: 420px;
      border: 0;
      display: block;
    }

    .map-info-strip {
      padding: 22px 24px;
      background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
    }

    .map-info-strip p {
      margin: 0;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

  

 
    .about-section-block {
      padding: 90px 0;
    }

    .story-image-wrap {
      position: relative;
      min-height: 430px;
    }

    .story-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-badge {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 18px;
      padding: 14px 18px;
      box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
      max-width: 240px;
    }

    .story-badge strong {
      display: block;
      color: var(--accent);
      font-size: 20px;
      line-height: 1;
      margin-bottom: 4px;
    }

    .story-badge span {
      font-size: 12px;
      color: var(--text-muted);
    }

    

    .mission-card i {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: #fff;
      margin-bottom: 12px;
    }

    .mission-card p {
      margin: 0;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .mission-card {
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      &:hover{
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(37, 99, 235, 0.10);
      }
    }

    .value-area {
      background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
    }

    .value-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      border: 1px solid rgba(37, 99, 235, 0.08);
      height: 100%;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 55px rgba(37, 99, 235, 0.12);
    }

    .value-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
       background: linear-gradient(135deg, #4d6bff, #6d8cff);
      color: #fff;
      font-size: 20px;
      margin-bottom: 18px;
    }

    .value-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 0;
    }

    .about-stat-card {
      background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
      border-radius: 20px;
      padding: 28px 20px;
      border: 1px solid var(--border);
      text-align: center;
      height: 100%;
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
    }

    .about-stat-card h3 {
      font-size: 38px;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .about-stat-card p {
      margin: 0;
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .process-wrap {
      background: #020626;
      border-radius: 28px;
      padding: 45px 40px;
      overflow: hidden;
      position: relative;
    }

    .process-wrap::before {
      content: "";
      position: absolute;
      right: -60px;
      top: -60px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.18);
    }

    .process-wrap .section-title,
    .process-wrap .section-label,
    .process-wrap p,
    .process-wrap h5,
    .process-wrap li {
      color: #fff;
    }

    .process-wrap .section-label {
      color: rgba(255, 255, 255, 0.65);
    }

    .process-wrap .text-muted {
      color: rgba(255, 255, 255, 0.70) !important;
    }


    .process-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 18px;
      padding: 20px;
      height: 100%;
      position: relative;
      z-index: 1;
    }

    .process-step {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .process-card p {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.72);
    }

    @media (max-width: 991px) {
      .about-hero {
        padding-top: 125px;
      }

      .process-wrap {
        padding: 32px 20px;
      }
    }

     .hero-inner-page {
      padding: 145px 0 90px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, #ffffff 45%, rgba(224, 123, 57, 0.12) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-inner-page::before,
    .hero-inner-page::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      opacity: 0.45;
      filter: blur(8px);
    }

    .hero-inner-page::before {
      width: 240px;
      height: 240px;
      top: -60px;
      left: -50px;
      background: rgba(37, 99, 235, 0.14);
    }

    .hero-inner-page::after {
      width: 220px;
      height: 220px;
      right: -70px;
      bottom: 0;
      background: rgba(224, 123, 57, 0.14);
    }

    .page-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .hero-inner-page .lead {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-muted);
    }

   

    .choose-section {
      padding: 90px 0;
    }

    .insight-image-wrap {
      position: relative;
      min-height: 430px;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(135deg, #dbeafe 0%, #fef3c7 100%);
      box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    }

    .insight-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .insight-badge {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background: rgba(255, 255, 255, 0.94);
      padding: 14px 16px;
      border-radius: 16px;
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
      max-width: 220px;
    }

    .insight-badge strong {
      display: block;
      color: var(--accent);
      font-size: 20px;
      margin-bottom: 4px;
      line-height: 1;
    }

    .insight-badge span {
      font-size: 12px;
      color: var(--text-muted);
    }

    .advantage-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px 18px 16px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
      height: 100%;
    }

    .advantage-card i {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(37, 99, 235, 0.10);
      color: var(--accent);
      margin-bottom: 12px;
    }

    .advantage-card p {
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    .difference-area {
      background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
    }

    .difference-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      height: 100%;
      border: 1px solid rgba(37, 99, 235, 0.08);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .difference-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(37, 99, 235, 0.12);
    }

    .difference-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background:linear-gradient(135deg, var(--accent), #7399ed);
      color: #fff;
      font-size: 20px;
      margin-bottom: 18px;
    }

    .difference-card p {
      margin: 0;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .choose-stat-card {
      background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
      border-radius: 20px;
      padding: 28px 20px;
      border: 1px solid var(--border);
      text-align: center;
      height: 100%;
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
    }

    .choose-stat-card h3 {
      font-size: 38px;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .choose-stat-card p {
      margin: 0;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
    }

    .promise-wrap {
      background: #020626;
      border-radius: 28px;
      padding: 45px 40px;
      position: relative;
      overflow: hidden;
    }

    .promise-wrap::before {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 180px;
      height: 180px;
      background: rgba(37, 99, 235, 0.16);
      border-radius: 50%;
    }

    .promise-wrap .section-title,
    .promise-wrap .section-label,
    .promise-wrap h5,
    .promise-wrap p,
    .promise-wrap li {
      color: #fff;
    }

    .promise-wrap .section-label {
      color: rgba(255, 255, 255, 0.65);
    }

    .promise-wrap .text-muted {
      color: rgba(255, 255, 255, 0.72) !important;
    }

    .promise-list {
      list-style: none;
      padding: 0;
      margin: 20px 0 0;
    }

    .promise-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.84);
    }

    .promise-list i {
      color: var(--orange);
    }

    .promise-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 18px;
      padding: 20px;
      height: 100%;
      position: relative;
      z-index: 1;
    }

    .promise-card span {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--orange);
      color: #fff;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .promise-card p {
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.72);
    }

    @media (max-width: 991px) {
      .hero-inner-page {
        padding-top: 125px;
      }

      .hero-trust-row {
        grid-template-columns: 1fr;
      }

      .promise-wrap {
        padding: 32px 20px;
      }
    }

        .blog-hero {
      padding: 145px 0 90px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, #ffffff 45%, rgba(224, 123, 57, 0.12) 100%);
      position: relative;
      overflow: hidden;
    }

    .blog-hero::before,
    .blog-hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      opacity: 0.45;
      filter: blur(8px);
    }

    .blog-hero::before {
      width: 240px;
      height: 240px;
      top: -70px;
      left: -50px;
      background: rgba(37, 99, 235, 0.14);
    }

    .blog-hero::after {
      width: 220px;
      height: 220px;
      right: -70px;
      bottom: 0;
      background: rgba(224, 123, 57, 0.14);
    }

    .blog-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .blog-hero .lead {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-muted);
    }

    .blog-search-box {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 18px;
      padding: 10px;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.08);
    }

    .blog-search-box .form-control {
      border: 0;
      box-shadow: none;
      min-height: 48px;
      font-size: 14px;
      background: transparent;
    }

    .hero-meta-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .meta-box {
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(37, 99, 235, 0.10);
      border-radius: 18px;
      padding: 16px 18px;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    }

    .meta-box strong {
      display: block;
      font-size: 24px;
      color: var(--accent);
      font-family: "Rajdhani", sans-serif;
      margin-bottom: 6px;
      line-height: 1;
    }

    .meta-box span {
      font-size: 13px;
      color: var(--text-muted);
    }

    .blog-section-wrap {
      padding: 90px 0;
    }

    .soft-bg {
      background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
    }

    .featured-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.08);
      height: 100%;
    }

    .featured-card img {
      width: 100%;
      height: 320px;
      object-fit: cover;
    }

    .featured-card-body {
      padding: 24px;
    }

    .article-tag {
      display: inline-flex;
      padding: 6px 12px;
      border-radius: 30px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--accent);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .article-meta i {
      color: var(--orange);
      margin-right: 4px;
    }

    .featured-card-body p {
      color: var(--text-muted);
      line-height: 1.7;
      font-size: 14px;
    }

    .mini-article-card {
      background: #fff;
      border-radius: 18px;
      padding: 18px;
      border: 1px solid var(--border);
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
      height: 100%;
    }

    .mini-article-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 14px;
      margin-bottom: 14px;
    }

    .mini-article-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 0;
      line-height: 1.7;
    }

    .category-card {
      background: #fff;
      border: 1px solid rgba(37, 99, 235, 0.08);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .category-card:hover,
    .post-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(37, 99, 235, 0.12);
    }

    .category-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--accent), var(--orange));
      color: #fff;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .category-card p {
      margin-bottom: 0;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .post-card {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .post-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .post-card-body {
      padding: 22px;
    }

    .post-card-body p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .newsletter-wrap {
      background: #020626;
      border-radius: 28px;
      padding: 42px 36px;
      position: relative;
      overflow: hidden;
    }

    .newsletter-wrap::before {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.16);
    }

    .newsletter-wrap h2,
    .newsletter-wrap p,
    .newsletter-wrap label {
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .newsletter-wrap p {
      color: rgba(255, 255, 255, 0.74);
    }

    .newsletter-form {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 18px;
      padding: 10px;
    }

    .newsletter-form .form-control {
      min-height: 48px;
      border: 0;
      background: transparent;
      color: #fff;
      box-shadow: none;
    }

    .newsletter-form .form-control::placeholder {
      color: rgba(255, 255, 255, 0.65);
    }

    @media (max-width: 991px) {
      .blog-hero {
        padding-top: 125px;
      }

      .hero-meta-grid {
        grid-template-columns: 1fr;
      }
    }

  

    .portfolio-section {
      padding: 90px 0;
    }


    .portfolio-card {
          background: #f9f4f4;
    border: 2px solid rgba(37, 99, 235, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 10px 16px 35px rgba(15, 23, 42, 0.06);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(37, 99, 235, 0.12);
    }

    .portfolio-thumb {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }

    .portfolio-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 320px;
      border-radius: 22px 22px 0 0;
    }

    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(37, 99, 235, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      padding: 20px;
    }

    .portfolio-card:hover .portfolio-overlay {
      opacity: 1;
    }

    .overlay-content {
      text-align: center;
      color: white;
    }

    .overlay-content h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .overlay-content p {
      font-size: 14px;
      margin-bottom: 15px;
      opacity: 0.9;
    }

    .overlay-link {
      display: inline-block;
      background: white;
      color: var(--accent);
      padding: 8px 16px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .overlay-link:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-2px);
    }

    .portfolio-stats-box {
      background: #fff;
      border-radius: 24px;
      border: 1px solid rgba(37, 99, 235, 0.08);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
      padding: 30px 24px;
      height: 100%;
    }

    .portfolio-stats-box h3 {
      font-size: 34px;
      color: var(--accent);
      margin-bottom: 6px;
    }

    .portfolio-stats-box p {
      margin: 0;
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.7;
    }

    .process-wrap {
      background: #020626;
      border-radius: 28px;
      padding: 42px 36px;
      position: relative;
      overflow: hidden;
    }

    .process-wrap::before {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.16);
    }

    .process-wrap h2,
    .process-wrap h5,
    .process-wrap p,
    .process-wrap li,
    .process-wrap .section-label {
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .process-wrap p {
      color: rgba(255, 255, 255, 0.74);
    }

    .process-list {
      list-style: none;
      padding: 0;
      margin: 20px 0 0;
    }

    .process-list li {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 14px;
    }

    .process-list i {
      color: var(--orange);
    }


    @media (max-width: 991px) {
      .portfolio-hero {
        padding-top: 125px;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }
    }

    .work-detail .image-box {
      position: relative;
        display: block;
        box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .19);
       
    }
  
 
    .service-section {
      padding: 60px 0;
    }

    .image-panel {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.10);
      background: #fff;
    }

    .image-panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-tag {
      position: absolute;
      left: 20px;
      bottom: 20px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 16px;
      padding: 12px 16px;
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
      font-size: 13px;
      color: var(--text-muted);
      max-width: 230px;
    }

    .image-tag strong {
      display: block;
      color: var(--accent);
      font-size: 18px;
      margin-bottom: 4px;
      line-height: 1;
    }

    .service-feature-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 20px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
      height: 100%;
    }

    .service-feature-card i {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(37, 99, 235, 0.10);
      color: var(--accent);
      margin-bottom: 12px;
    }

    .service-feature-card p {
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-muted);
    }

    .benefit-card {
      background: #fff;
      border-radius: 20px;
      padding: 26px 22px;
      border: 1px solid rgba(37, 99, 235, 0.08);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(37, 99, 235, 0.12);
    }

    .benefit-icon {
      width: 48px;
    height: 48px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 17px;
    border: 2px solid var(--accent);
    margin-bottom: 16px;
    }

    .benefit-card p {
      margin: 0;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .tech-stack-wrap {
      background: #fff;
      border-radius: 24px;
      padding: 30px 24px;
      border: 1px solid rgba(37, 99, 235, 0.08);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
    }

    .stack-logo-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    .stack-logo {
      background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px 14px;
      text-align: center;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .stack-logo:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.10);
    }

    .stack-logo img {
      width: 52px;
      height: 52px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .stack-logo h6 {
      margin: 0;
      font-size: 14px;
    }

   

    .result-highlight {
      background: #fff;
      border-radius: 24px;
      padding: 20px;
      border: 1px solid rgba(37, 99, 235, 0.08);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
    }

    .result-highlight img {
      width: 100%;
      height: 330px;
      object-fit: cover;
      border-radius: 18px;
    }

    .result-text {
      padding: 10px 4px;
    }

    .process-wrap {
      background: #020626;
      border-radius: 28px;
      padding: 42px 36px;
      position: relative;
      overflow: hidden;
    }

    .process-wrap::before {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.16);
    }

    .process-wrap h2,
    .process-wrap h5,
    .process-wrap p,
    .process-wrap li,
    .process-wrap .section-label {
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .process-wrap p {
      color: rgba(255, 255, 255, 0.74);
    }

    .process-list.white li {justify-content: center;
      color: var(--text-dark);
    }


    @media (max-width: 991px) {
      .service-hero {
        padding-top: 125px;
      }

      .hero-info-grid {
        grid-template-columns: 1fr;
      }

      .stack-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }



    .packages-section {
      padding: 90px 0;
    }

    .soft-bg {
      background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
    }

    .pricing-card {
      background: #fff;
      border: 1px solid rgba(37, 99, 235, 0.08);
      border-radius: 24px;
      padding: 28px 24px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      height: 100%;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 55px rgba(37, 99, 235, 0.12);
    }

    .pricing-card.featured {
      border-color: var(--accent);
      box-shadow: 0 28px 60px rgba(37, 99, 235, 0.14);
    }

    .pricing-badge {
      display: inline-flex;
      padding: 6px 12px;
      border-radius: 30px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--accent);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }

    .pricing-card .price {
      font-size: 42px;
      font-family: "Rajdhani", sans-serif;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .pricing-card .price small {
      font-size: 16px;
      color: var(--text-muted);
    }

    .pricing-card p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 22px;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .feature-list i {
      color: var(--green);
    }


    .process-wrap {
      background: #020626;
      border-radius: 28px;
      padding: 42px 36px;
      position: relative;
      overflow: hidden;
    }

    .process-wrap::before {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(37, 99, 235, 0.16);
    }

    .process-wrap h2,
    .process-wrap h5,
    .process-wrap p,
    .process-wrap li,
    .process-wrap .section-label {
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .process-wrap p {
      color: rgba(255, 255, 255, 0.74);
    }

    .step-badge {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--orange);
      color: #fff;
      font-weight: 700;
      margin-bottom: 12px;
    }



    
    .insight-box,
    .job-card {
      background: #fff;
      border: 1px solid #edf0fb;
      border-radius: 22px;
      padding: 22px;
      height: 100%;
      box-shadow: 0 18px 45px rgba(18, 38, 95, 0.07);
    }

 ,
    .insight-box strong {
      display: block;
      color: #111a3a;
      margin-bottom: 6px;
    }

    
    .insight-box p,
    .job-card p {
      margin-bottom: 0;
      color: #5f6782;
    }

   
    .careers-section {
      padding: 60px 0;
    }


    .life-image-wrap {
      position: relative;
      padding: 12px;
      background: #fff;
      border-radius: 26px;
      box-shadow: 0 20px 50px rgba(24, 48, 108, 0.1);
    }

    .benefit-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin: 24px 0;
    }

    .benefit-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: #fff;
      color: #3a4664;
      font-weight: 600;
      box-shadow: 0 10px 22px rgba(28, 43, 95, 0.08);
    }

    .benefit-pill i {
      color: #4d6bff;
    }

    .job-top {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .job-badge {
      display: inline-flex;
      align-items: center;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(77, 107, 255, 0.12);
      color: #3256db;
      font-weight: 700;
      font-size: 13px;
    }

    .job-location {
      color: #68708b;
      font-size: 14px;
    }

    .job-card h4 {
      color: #111a3a;
      margin-bottom: 12px;
    }

    .job-meta {
      list-style: none;
      padding: 0;
      margin: 18px 0 22px;
    }

    .job-meta li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: #535d79;
      font-size:14px;
    }

    .job-meta i {
      color: #4d6bff;
    }

    .apply-info-card,
    .career-form-card {
      background: #fff;
      border: 1px solid #e9eefc;
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 18px 45px rgba(18, 38, 95, 0.08);
      height: 100%;
    }

    .quick-points {
      list-style: none;
      padding: 0;
      margin: 20px 0 24px;
    }

    .quick-points li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      color: #55607d;
    }

    .quick-points i {
      color: #4d6bff;
      margin-top: 3px;
    }

    .mini-contact-box {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 18px;
      border-radius: 18px;
      background: #f6f8ff;
      color: #45506d;
    }

    .mini-contact-box i {
      color: #4d6bff;
      font-size: 18px;
      margin-top: 2px;
    }

    .career-form label {
      font-weight: 600;
      color: #111a3a;
      margin-bottom: 8px;
    }

    .career-form .form-control,
    .career-form .form-select {
      min-height: 52px;
      border-radius: 14px;
      border: 1px solid #dfe6fb;
      padding: 12px 14px;
      font-size: 14px;
      box-shadow: none;
    }

    .career-form textarea.form-control {
      min-height: 140px;
      resize: vertical;
    }

    .career-form .form-control:focus,
    .career-form .form-select:focus {
      border-color: #4d6bff;
      box-shadow: 0 0 0 0.18rem rgba(77, 107, 255, 0.14);
    }

    .upload-note {
      font-size: 13px;
      color: #6c7591;
      margin-top: 8px;
    }

    .process-wrap {
      background: linear-gradient(135deg, #141d3f 0%, #1d2c5b 100%);
      border-radius: 28px;
      padding: 32px;
      color: #fff;
      box-shadow: 0 24px 60px rgba(16, 29, 67, 0.24);
    }


    .process-card h5,
    .process-wrap h2,
    .process-wrap p {
      color: #fff;
    }


   

    @media (max-width: 991px) {
      .careers-hero {
        padding-top: 130px;
      }

      .showcase-badge {
        position: static;
        margin-top: 14px;
        max-width: 100%;
      }
    }

    .app-metric-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    .app-metric-card {
      background: #fff;
      border: 1px solid rgba(37, 99, 235, 0.08);
      border-radius: 20px;
      padding: 18px;
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
    }

    .app-metric-card h4 {
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .app-metric-card p {
      margin-bottom: 0;
      color: var(--text-muted);
      line-height: 1.7;
    }

   

    .app-platform-card h5 {
      margin-bottom: 10px;
      color: var(--text-dark);
    }

    .app-platform-card p {
      margin-bottom: 0;
      color: var(--text-muted);
      line-height: 1.7;
    }

    

.main-banner {
    padding-top: 114px;
    padding-bottom: 100px;
    position: relative
}

.main-banner-content {
    text-align: left;
    margin-top: 50px;
    position: relative;
    z-index: 2
}

.main-banner-content h1 {
    font-size: 35px;
    margin-bottom: 20px
}

.main-banner-content p {
    margin-bottom: 30px
}

.main-banner-content .btn-primary {
    margin-right: 13px
}

.main-banner-content .btn-secondary i {
    margin-right: 4px
}

.banner-img {
    text-align: center;
    position: relative
}


.pattern,.pattern-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.pattern-2 {
  background-image: url(../images/pattern-2.png);
  height: 100px;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.creative-bg {
    bottom: 0;
    border-radius: 100% 0 0 0
}

.creative-bg,.creative-bg-two {
    position: absolute;
    right: 0;
    width: 50%;
    background: #506cea;
    height: 100%
}

.cta-section .pattern{
   opacity: 0.08;
}

.cta-section .pattern-2{
   opacity: 0.1;
}


 .pattern-4{
   top:-34px
}

.creative-bg-two {
    top: 0;
    border-radius: 0 0 0 100%
}


.text-secondary {
    --bs-text-opacity: 1;
    color: #ebeeff !important;
}
.detail-image-wrap {
      background: #fff;
      border-radius: 24px;
      padding: 10px;
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.08);
      display: block;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
    }

    .detail-image-wrap img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 18px;
      transition: transform 0.3s ease;
    }

    .detail-image-wrap:hover img {
      transform: scale(1.02);
    }

 .zoom-note {
      position: absolute;
      left: 30px;
      bottom: 30px;
      background: rgba(2, 6, 38, 0.78);
      color: #fff;
      padding: 10px 14px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .screenshot-modal .modal-content {
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .screenshot-modal .modal-body {
      padding: 0;
    }

    .screenshot-modal .btn-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      background-color: #fff;
      border-radius: 50%;
      opacity: 1;
      padding: 10px;
    }

    .full-screenshot-image {
      width: 100%;
      height: auto;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 18px;
      display: block;
    }

    .detail-section {
      padding: 60px 0;
    }

    
    .project-info-box {
      background: linear-gradient(135deg, #020626 0%, #11183f 100%);
      border-radius: 24px;
      padding: 28px;
      color: #fff;
      height: 100%;
    }

    .project-info-box h4,
    .project-info-box h5,
    .project-info-box p,
    .project-info-box li,
    .project-info-box a {
      color: #fff;
    }

    .project-info-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .project-info-list li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      font-size: 14px;
    }

    .project-info-list li:last-child {
      border-bottom: 0;
    }

    .project-info-list strong {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 2px;
    }
    
    .work-detail {
            margin-top: -100px;
        }
    .work-detail .image-box {
        position: relative;
        display: block;
        box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .19);
    }
    .result-box {
      background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
      border-radius: 18px;
      padding: 20px;
      height: 100%;
      border: 1px solid rgba(37, 99, 235, 0.08);
    }

    .result-box h3 {
      color: var(--accent);
      font-size: 34px;
      margin-bottom: 6px;
    }

    .result-box p {
      margin: 0;
      font-size: 14px;
      color: var(--text-muted);
    }
    
    
.ai-showcase {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 28px 60px rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.08);
  position: relative;
  z-index: 1;
}

.chat-preview {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  margin: 0 auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 15px;
}

.chat-header i {
  color: #6366f1;
  font-size: 18px;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  padding: 10px 14px;
  border-radius: 18px;
  max-width: 80%;
  font-size: 13px;
  line-height: 1.4;
}

.message.user {
  background: #6366f1;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.message.bot {
  background: #f3f4f6;
  color: #374151;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.responsive-showcase {
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 28px 60px rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.08);
  position: relative;
  z-index: 1;
}

.device-preview {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  height: 280px;
}

.mobile-device,
.tablet-device,
.desktop-device {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
  font-weight: 600;
  color: #10b981;
  font-size: 14px;
}

.mobile-device {
  width: 100px;
  height: 160px;
}

.tablet-device {
  width: 160px;
  height: 200px;
}

.desktop-device {
  width: 220px;
  height: 160px;
}

.screen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (max-width:767px){
    .banner-img img{
        width:100%;
        height: auto;
        margin-top:40px;
        display:none;
    }
    .about-section img{
        left:0px;
        width:100%;
    }
    .main-banner .swiper-pagination {
        position: absolute;
        top: auto;
        left: auto;
        bottom: 20px;
        display: none;
        width: 100%;
    }
    .main-banner {
    padding-top: 83px;
    padding-bottom: 49px;
}
    .pattern-3 , .pattern-4{
        display:none;
    }
    .blog-section {
        padding: 60px 0 60px;
    }
    .testimonials-section {
        padding: 60px 0 50px;
    }
    .header a.btn-secondary {
        display: none;
    }
}