    :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;
    }

.logo img {
  height:  100px;
  width: auto;
  object-fit: contain;
}
    /* 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: 20px 15px 5px 10px;
}
    /* 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: 25px 25px 15px 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;
}


.business-goals {
  padding: 80px 0;
  background: #f8f9fb;
}

/* Left Image */
.goals-graphic img {
  width: 100%;
  max-width: 350px;
}

/* Right Box */
.goals-box {
  background: #fff;
  border: 2px solid #ddd;
  padding: 40px;
  position: relative;
}

/* Heading */
.goals-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #4a6fb5;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 3px solid #4a6fb5;
  display: inline-block;
}

/* List */
.goals-list {
  list-style: none;
  padding: 0;
}

.goals-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.6;
}

/* Tick Icon */
.goals-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4a6fb5;
  font-weight: bold;
  font-size: 18px;
}
.business-objectives {
  position: relative;
  padding: 80px 0;
  background: #f5f6f8;
  overflow: hidden;
}

/* Background Shapes (Top Right) */
.business-objectives::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2c5fd7, #5fa8ff);
  border-radius: 20px;
  transform: rotate(45deg);
  opacity: 0.9;
}

.business-objectives::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #5fa8ff, #2c5fd7);
  border-radius: 30px;
  transform: rotate(45deg);
  opacity: 0.8;
}

/* Heading */
.objective-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: red;
  text-decoration: underline;
  margin-bottom: 30px;
}

/* List Style */
.objective-content ul {
  list-style: none;
  padding: 0;
}

.objective-content ul li {
  font-size: 22px;
  color: #1aa354;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

/* Arrow Icon */
.objective-content ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 18px;
}

/* Image */
.objective-image img {
  max-width: 300px;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .objective-content {
    text-align: center;
    margin-top: 30px;
  }

  .objective-content h2 {
    font-size: 32px;
  }

  .objective-content ul li {
    font-size: 18px;
    padding-left: 0;
  }

  .objective-content ul li::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .business-objectives {
    padding: 50px 15px;
  }

  .objective-image img {
    max-width: 220px;
  }

  .objective-content h2 {
    font-size: 26px;
  }
}
.certificate-section {
  padding: 50px 0;
  background: ;
}

/* TITLE */
.cert-title {
  font-size: 32px;
  font-weight: bold;
  color: red;
  text-decoration: underline;
}

/* CARD */
.cert-card {
  text-align: center;
}

.cert-card h4 {
  color: #2c5aa0;
  margin-bottom: 10px;
  font-weight: 500;
}

/* IMAGE */
.cert-card img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}