    :root {
      --primary: #3247D9;
      --dark: #000000;
      --light: #ffffff;
      --gray: #f5f7fb;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: #222;
      background: var(--light);
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    section {
      padding: 50px 0;
    }
  section#about_2 {
      padding: 50px 0px 50px 0px;
    }
  section.hero {
      padding: 0px;
    }
    .section-title {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-title h2 {
      color: var(--primary);
      margin-bottom: 12px;
    }

    .section-title p {
      max-width: 720px;
      margin: auto;
      color: #666;
    }

    /* Top Header */
    .top-header {
      background: var(--dark);
      color: var(--light);
      font-size: 14px;
    }

    /* Navbar */
    .navbar-brand {
      font-weight: 800;
      font-size: 26px;
      color: var(--primary) !important;
      letter-spacing: 1px;
    }

    .nav-link {
      font-weight: 500;
      color: #111 !important;
      margin-right: 18px;
    }

    .btn-primary {
      background: var(--primary);
      border-color: var(--primary);
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
    }

    .btn-primary:hover {
      background: #1f34c5;
      border-color: #1f34c5;
    }

    /* Hero */
    .hero {
      position: relative;
      height: 70vh;
    }

    .hero .carousel-item {
      height: 70vh;
      background-size: cover;
      background-position: center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0,0,0,0.75), rgba(50,71,217,0.6));
      z-index: 1;
    }

    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      color: #fff;
    }

    .hero-content h1 {
      font-size: 56px;
      font-weight: 800;
      line-height: 1.2;
    }

    .hero-content p {
      max-width: 600px;
      font-size: 18px;
      margin-top: 15px;
    }

    /* Cards */
    .image-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      /* box-shadow: 0 12px 35px rgba(0,0,0,0.08); */
      transition: 0.3s;
      height: 100%;
    }

    .image-card:hover {
      transform: translateY(-10px);
      /* box-shadow: 0 18px 45px rgba(0,0,0,0.12); */
    }

    .image-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .image-card .card-body {
      padding: 22px;
    }

     /* ---------------- ABOUT US / WHO WE ARE ---------------- */
    .about-grid_2 img {
      width: 100%;
      border-radius: 18px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    }

    .about-points_2 .point {
      display: flex;
      gap: 14px;
      margin-bottom: 18px;
    }

    .about-points_2 .point i {
      color: var(--primary);
      font-size: 20px;
      margin-top: 4px;
    }


    /* About Cards */
    .about-card {
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      height: 100%;
      transition: 0.3s;
    }

    .about-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 45px rgba(0,0,0,0.12);
    }

    .about-card img {
      width: 60px;
      margin-bottom: 15px;
    }

    /* Numbers */
    .numbers {
      background: linear-gradient(120deg, var(--primary), #1a2fbf);
      color: #fff;
    }

    .counter-box h3 {
      font-size: 42px;
      font-weight: 800;
    }

    /* Testimonials */
    .testimonial-card {
      background: #fff;
      border-radius: 18px;
      padding: 35px;
      /* box-shadow: 0 12px 35px rgba(0,0,0,0.08); */
      height: 100%;
      text-align: center;
    }

    .testimonial-card img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .testimonial-card h6 {
      margin-bottom: 2px;
      font-weight: 600;
    }

    /* Clients */
    .client-logo img {
      max-height: 70px;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: 0.3s;
    }

    .client-logo img:hover {
      filter: grayscale(0);
      opacity: 1;
    }

    /* How It Works */
    .process-step {
      text-align: center;
      position: relative;
    }

    .process-circle {
      width: 140px;
      height: 140px;
      border: 2px dashed #ccc;
      border-radius: 50%;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .process-circle i {
      font-size: 42px;
      color: var(--primary);
    }

    .process-number {
      position: absolute;
      top: -10px;
      right: -10px;
      background: var(--primary);
      color: #fff;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    /* Team */
    .team-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 35px rgba(0,0,0,0.08);
      transition: 0.3s;
      text-align: center;
      height: 100%;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }

    .team-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }

    .team-card .card-body {
      padding: 22px;
    }

    /* CTA */
    .cta {
      background: var(--primary);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1600&q=80') center/cover;
      opacity: 0.15;
      z-index: 0;
    }

    .cta .container {
      position: relative;
      z-index: 1;
    }

    /* Contact */
    .contact-info p {
      margin-bottom: 12px;
      font-size: 15px;
    }

    .contact-info i {
      color: var(--primary);
      margin-right: 10px;
    }

    .form-control {
      border-radius: 10px;
      padding: 12px 14px;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: #fff;
      padding: 70px 0 20px;
    }

    footer h5 {
      color:white;
      font-weight: 700;
      margin-bottom: 18px;
    }

    footer a {
      color: #ccc;
      text-decoration: none;
    }

    footer a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 40px;
      padding-top: 15px;
      text-align: center;
      font-size: 14px;
    }

    /* Swiper Arrows - Circular Design */
    .swiper-button-next,
    .swiper-button-prev {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #ffffff;
      color: var(--primary);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(0,0,0,0.06);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 18px;
      font-weight: 700;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 14px 35px rgba(0,0,0,0.18);
      border-color: var(--primary);
    }

  


/* About_us_Page_CSS */
.hero_about {
    background: url("banner.jpg") center/cover no-repeat;
    color: #fff;
    padding: 140px 0;
    position: relative;
  }

  .hero_about ::before {
    content: "";
    position: absolute;
    inset: 0;
   
  }

  .hero_about .container {
    position: relative;
    z-index: 2;
  }
  .feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-top: 5px solid #3247D9;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3247D9, #000);
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}


  /* Contact_us_Page_CSS */
.hero_contact {
    background: url("banner.jpg") center/cover no-repeat;
    color: #fff;
    padding: 140px 0;
    position: relative;
  }

  .hero_contact ::before {
    content: "";
    position: absolute;
    inset: 0;
   background:rgb(0 0 0 / 16%);
   z-index: 1;
  }

  .hero_contact .container {
    /* position: relative; */
    /* z-index: 2; */
  }
  
  /* product_page_CSS */
 .hero_products {
      background: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      position: relative;
      color: #fff;
      padding: 120px 0;
      text-align: center;
    }
    .hero_products::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }
    .hero_products .container {
      position: relative;
      z-index: 2;
    }

    /* Category Cards */
    .product-category-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 280px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      transition: 0.3s ease;
    }
    .product-category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }
    .product-category-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .product-category-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
      display: flex;
      align-items: flex-end;
      padding: 25px;
      color: #fff;
    }
    .product-category-overlay h5 {
      margin: 0;
      font-size: 20px;
    }

    /* Product Cards */
    .product-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
      transition: 0.3s ease;
      height: 100%;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    }
    .product-card img {
      height: 220px;
      width: 100%;
      object-fit: cover;
    }
    .product-card .p-4 {
      display: flex;
      flex-direction: column;
      height: calc(100% - 220px);
    }
    /* .product-card ul {
      padding-left: 18px;
    } */
    .product-card ul li {
      margin-bottom: 6px;
      font-size: 14px;
    }

    /* Icon Feature Cards */
    .product-feature-card {
      background: #fff;
      border-radius: 16px;
      padding: 35px 25px;
      text-align: center;
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
      transition: 0.3s ease;
      height: 100%;
    }
    .product-feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    }
    .product-feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #3247D9;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 20px;
    }

    /* CTA */
    .cta {
      background: linear-gradient(120deg, #000, #3247D9);
      color: #fff;
      text-align: center;
    }



    .hero_projects {
      background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      position: relative;
      color: #fff;
      padding: 120px 0;
      text-align: center;
    }
    .hero_projects::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }
    .hero_projects .container {
      position: relative;
      z-index: 2;
    }

    /* ===== NEW CATEGORY DESIGN (MATCHING PRODUCT PAGE STYLE) ===== */
    .project-category-box {
      background: #fff;
      border-radius: 20px;
      padding: 35px 25px;
      text-align: center;
      box-shadow: 0 12px 35px rgba(0,0,0,0.06);
      transition: 0.35s ease;
      height: 100%;
    }
    .project-category-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 22px 55px rgba(0,0,0,0.12);
    }
    .project-category-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3247D9, #000);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin: 0 auto 20px;
    }

    /* ===== NEW FEATURED PROJECT CARD (MATCH PRODUCT CARD FEEL) ===== */
    .project-card-modern {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 12px 35px rgba(0,0,0,0.07);
      transition: 0.35s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .project-card-modern:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.14);
    }
    .project-card-modern img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }
    .project-card-body {
      padding: 28px;
      flex-grow: 1;
    }
    .project-badge {
      display: inline-block;
      background: #3247D9;
      color: #fff;
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 12px;
      margin-bottom: 12px;
    }

    .cta {
      background: linear-gradient(120deg, #000, #3247D9);
      color: #fff;
      text-align: center;
    }
/* Home_Project_section */
/* ================= HOME PROJECT SECTION ================= */
.home_project_section {
  background:white;
  padding: 60px 0;
}

.home_project_section .section-title h2 {
  font-weight: 800;
}

.home_project_section .section-title p {
  color: #6c757d;
}

/* Project Card */
.home_project_section .project-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  height: 100%;
}

.home_project_section .project-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}

/* Image */
.home_project_section .project-image {
  position: relative;
  height: 100%;
}

.home_project_section .project-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: 0.5s ease;
}

.home_project_section .project-box:hover img {
  transform: scale(1.08);
}

/* Overlay */
.home_project_section .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.85));
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.4s ease;
}

.home_project_section .project-overlay h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.home_project_section .project-overlay p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Tag */
.home_project_section .project-tag {
  display: inline-block;
  background: #3247D9;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

/* Wide cards */
.home_project_section .project-box-wide .project-image img {
  min-height: 340px;
}

.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.tick-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color:#3247d9;
  font-size: 14px;
  line-height: 1.4;
}


