:root {
  --brand-700: #0f766e;
  --brand-600: #0d9488;
  --brand-500: #14b8a6;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --bg: #ffffff;
  --alt: #f8fafc;
  --dark: #111827;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

/* Topbar and Navbar */
.topbar {
  background: var(--dark);
}

.navbar .navbar-brand {
  letter-spacing: .5px;
}

.navbar .btn-primary {
  background: var(--brand-600);
  border-color: var(--brand-600);
  transition: 0.3s;
  box-shadow: none !important; /* shadow hatane ke liye */
}

.navbar .btn-primary:hover,
.navbar .btn-primary:focus,
.navbar .btn-primary:active {
  background: var(--brand-700);
  border-color: var(--brand-700);
  box-shadow: none !important; /* hover/focus pe bhi shadow na aaye */
}


/* .navbar .btn-primary:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
} */

.navbar-nav .nav-item {
  position: relative;
  padding-right: 1rem;
}

.navbar-nav .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-item:not(:last-child)::after {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(20,184,166,.25), transparent 60%), linear-gradient(180deg, #0f172a 0%, #111827 100%);
  min-height: 78vh;
  padding: 5% 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero .gradient {
  /* background: linear-gradient(0deg, var(--brand-0), ); */
  -webkit-background-clip: text;
  background-clip: text;
  /* color: transparent; */
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    text-align: center;
    align-items: center;
    padding: 60px 20px;
  }
}

/* Sections */
.section {
  padding: 72px 2%;
}

.section.alt {
  background: var(--alt);
}

.section-title {
  font-weight: 700;
  margin-bottom: 12px;
}

/* Feature Cards */
.feature-card,
.product-card,
.process-card,
.badge-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  margin: 10px auto;
  width: 100%;
  max-width: 350px;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.feature-card .icon,
.product-card .product-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.product-card .product-img {
  aspect-ratio: 4 / 3;
}

.badge-card {
  height: 100%;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Pills & Circles */
.pill-card {
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 999px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 1px 0 #e2e8f0;
}

.pill-circle {
  width: 100px;
  height: 100px;
  border: 2px solid #004aad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004aad;
  font-weight: 700;
  font-size: 1.5rem;
}

.cr {
  width: 80px;
  height: 80px;
    border: 2px solid #004aad;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004aad;
  font-weight: 700;
  font-size: 1.5rem;
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(90deg, #182b71, #3c71f7, #ffffff);
  color: #ffffff;
  border: none;
  transition: all 0.2s ease;
}

.btn-gradient:hover {
  filter: brightness(1.1);
  color: #ffffff;
}

.custom-btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 10px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background: #fff;
  color: #004aad;
}

.btn-custom {
  background-color: #004aad;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-custom:hover {
  background-color: #003080;
  color: #fff;
}

@media (max-width: 575.98px) {
  .btn-gradient,
  .btn-custom,
  .custom-btn {
    width: 100%;
    padding: 14px 0;
    margin: 10px 0;
  }
}

/* Feature List with Check */
.feature-list li {
  position: relative;
  background-color: #fff;
  padding: 15px 20px 15px 45px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: black;
  font-weight: 500;
  font-size: 1rem;
}

.check-box {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #28a745;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  border-radius: 4px;
}

/* Cards & Images */
.card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

/* Carousel */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev { left: -60px; }
.carousel-control-next { right: -60px; }

.carousel-control-prev span,
.carousel-control-next span {
  font-size: 2rem;
  color: #fff;
}

/* Icons */
.icon-custom {
  color: gold;
  font-size: 1.2rem;
  margin: 0 2px;
  transition: color 0.3s;
}

.icon-custom:hover {
  color: #fff176;
}

/* Testimonials */
.testimonial {
  background: #111827;
  color: #e5e7eb;
  border-radius: 20px;
  padding: 20px;
}

.testimonial h3 {
  color: #fff;
}

/* CTA Section */
.cta {
  background: 
    repeating-linear-gradient(
      45deg, 
      rgba(245,245,245,0.4),      /* light gray, 40% opacity */
      rgba(245,245,245,0.4) 40px, 
      rgba(255,255,255,0.6) 40px,  /* white, 60% opacity */
      rgba(255,255,255,0.6) 80px
    ),
    url('assets/logo.png') center center no-repeat;
  background-size: 35rem auto;
  background-blend-mode: lighten; /* ensures image shows through */
  min-height: 400px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-top: 5%;
  border-radius: 20px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta h2, 
.cta p {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Footer */
.footer {
  background: #0b1220;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

/* Responsive Card Containers */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}
.about-title {
  font-size: 62.7px;
  font-weight: bold;
  color: black;
  position: relative;
}

.title-underline {
  width: 140px;
  height: 10px;
  margin: 10px auto 0;
  background: linear-gradient(to left, #3c71f7, rgba(60,113,247,0));
  box-shadow: px 2px 8px rgba(0,74,173,0.5);
  border-radius: 9px;
}

.image-box {
  margin-top: 20px;
  position: relative;
  background-color: #004aad;
  border-radius: 50px 0 40px 0; /* top-left aur bottom-right rounded */
  overflow: hidden;
  display: inline-block;
  padding: 0 15px 15px 0; /* left & bottom me blue color dikhane ke liye space */
}

.image-box img {

  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit; /* image ko bhi same round corner */
}


.choose-title {
  font-size: 37.5px;
  font-weight: bold;
  color: black;
}

.choose-underline {
  width: 220px;
  height: 12px;
  margin: 12px auto 0;
  background: linear-gradient(to left, #3c71f7, rgba(60,113,247,0));
  box-shadow: px 3px 10px rgba(60,113,247,0.5);
  border-radius: 6px;
}

/* Cards */
.feature-card {
  background: linear-gradient(to bottom right, #ffffff 50%, #98cff7 100%);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(135, 206, 250, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(60, 113, 247, 0.5);
}

.feature-card h5 {
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Icons */
.feature-card .icon {
  font-size: 100px;
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to right, black 50%, #b0d3ec 50%);
 -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
.our-services {
  padding: 60px 20px;
  font-family: sans-serif;
  background: linear-gradient(to bottom, #ffffff 27%, #a2d8ff 50%, #ffffff 100%);
  border-radius: 15px; /* optional: card-like rounded corners */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* optional: subtle shadow for card effect */
}

.services-heading {
  color: #004aad;
  font-size: 56.1px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.services-subtitle {
  color: #000;
  font-size: 27.8px;
  text-align: center;
  margin-bottom: 40px;
  
}

.services-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.service-item {
  display: flex;
  align-items: center;
  position: relative;
}

.circle {
  width: 30px;
  height: 30px;
  border: 2px solid black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.inner-circle {
  width: 15px;
  height: 15px;
  background-color: #004aad;
  border-radius: 50%;
}

.service-item p {
  margin-left: 15px;
  font-size: 16px;
  color: #000;
}

/* Connecting vertical dashed lines */
.service-item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 0;                 /* no width, sirf border se line banegi */
  height: 44px;             /* jitni lambi line chahiye */
  border-left: 2px dashed black; /* vertical dashed line */
  top: 35px;                /* circle ke niche start hoga */
  left: 14px;               /* circle ke center me line */
}

.services-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}
  .img-container {
    display: flex;
    justify-content: center; /* horizontally center */
    align-items: center;    /* vertically center */
    height: 100vh;          /* full viewport height */
    background-color: white;
  }
  .img-container img {
    max-width: 90%;   /* responsive width */
    height: auto;      /* maintain aspect ratio */
    display: block;
  }
  .mission-section {
      text-align: center;
      padding: 60px 15px;
    }
    .mission-section h2 {
      font-size: 56.1px;
      color: #004aad;
      font-weight: 800; /* semi-bold */
      margin-bottom: 20px;
    }
    .mission-section p {
      color: #000000;
      font-size: 24.3px;
      line-height: 1.6;
      max-width: 90%;
      margin: 0 auto;
    }