.innerpage-title-bar h1 {
    transform: translate(-50%,-50%);
    position: absolute;
    top: 60%;
    left: 50%;
    color: black;
    font-size: 25px;
	line-height: 35px;
    margin: 15px 0 0 0;
    font-weight: 600;
	width: 100%;
    text-align: center;
    padding: 0px 50px;
}
/* .innerpage-title-bar h1:before {
    position: absolute;
    content: '';
    background-image: url(/wp-content/uploads/2024/02/heading-line.svg);
    width: 100%;
    height: 5px;
    bottom: -10px;
    left: 0px;
} */
.innerpage-title-bar {
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	position: relative;
	background-image: url(/wp-content/uploads/2025/10/Breadcum.webp) !important;
}
.breadcrumb {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 66%;
	color: black;
	width: 100%;
    text-align: center;
	display: none;
}
.breadcrumb a {
    color: black;
}
.page-id-18 .site-footer:before, .page-id-16 .site-footer:before {
	display:none;
}
.single-post .innerpage-title-bar,
.archive .innerpage-title-bar {
/*     background-image: url(/wp-content/uploads/2024/02/speciality-pg-bg.webp) !important; */
}
.single-post .entry-content {
    margin-top: 40px;
}



/* contact us */
/* layout */
.contact-cnt-info-sec-wrapper {
  position: relative;
}
.contact-cnt-info-sec-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  justify-items: stretch;
  position: relative;
}

/* card */
.contact-card {
  position: relative;
  border: 1px solid #e9e9ee;
  border-radius: 16px;
  background:#fff;
  overflow: hidden;
  min-height: 220px;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.10);
  border-color: transparent;
}

/* sliding background */
.contact-card::before {
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(-100%);            /* default: slide from left */
  transition: transform .55s ease, opacity .55s ease;
  z-index: 1;
}
/* make 2nd card slide from right, 3rd from left again (alternate) */
.contact-cnt-info-sec-left .contact-card::before {
  transform: translateX(100%);
}
.contact-card:hover::before {
  transform: translateX(0);
  opacity: 1;
}

/* dark overlay for readability */
.contact-card:hover::after {
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    inset-inline-end: 0;
    left: auto;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all 0.6s 
ease-out 0s;
    background-color: #141414;
    overflow: hidden;
    filter: grayscale(1);
}
.contact-card:hover::after { opacity: 1; }

/* content */
.card-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 38px 24px;
  color: #1a1a1a;
  transition: color .35s ease, transform .35s ease;
}
.contact-card:hover .card-inner {
  color: #fff;
  transform: translateY(-2px);
}

/* icons swap */
.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  display: inline-block;
  transition: opacity .25s ease, transform .35s ease;
}
.icon-hover { display: none; }
.contact-card:hover .icon-default { display: none; }
.contact-card:hover .icon-hover   { display: inline-block; }

.contact-card:hover .card-inner h6{
	color:white;
}
}

/* headings + text */
.card-inner h6 {
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0 8px;
  letter-spacing: .2px;
}
.card-inner p {
  margin: 0 0 8px;
  font-size: 15px;
  opacity: .9;
}

/* link inherits color */
.card-link {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: border-color .25s ease, opacity .25s ease;
}
.contact-card:hover .card-link {
  border-color: rgba(255,255,255,.7);
}
.card-link:focus-visible {
  outline: 2px solid #004660;
  outline-offset: 3px;
}

/* responsive */
@media (max-width: 1024px) {
  .contact-cnt-info-sec-left { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .contact-cnt-info-sec-left { grid-template-columns: 1fr; }
  .card-inner { padding: 30px 22px; }
}


/* map and form */
/* ---- Layout ---- */
.contact-map-form {
  padding: 40px 0 70px;
  background: #fff;
}
.cmf-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* map a bit wider */
  gap: 32px;
  align-items: stretch;
}
.cmf-map, .cmf-form { min-height: 460px; }

.cmf-map-embed {
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
}
.cmf-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;

}

/* ---- Form Panel ---- */
.cmf-form {
  background: #f4f4f4;
  border-radius: 6px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.cmf-title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 8px 0 18px;
  font-weight: 800;
  color: #0f1012;
}
.cmf-form-wrap {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- Contact Form 7 base styling ---- */
.wpcf7 form { display: grid; gap: 16px; }

/* Inputs/textarea/select */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border: 0;
  border: 2px solid #B2B2B2;
  background: #fff;
  padding: 16px 14px;
  font-size: 15px;
  border-radius: 4px 4px 0 0;
  transition: border-color .25s ease, background .25s ease;
}
.wpcf7 textarea { min-height: 180px; resize: vertical; }

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-bottom-color: #B2B2B2; /* subtle brand line */
  background: #fff;
}



/* Submit button */
.wpcf7 .wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  color: #111;
  border: 2px solid #B2B2B2;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease, transform .08s ease;
}
.wpcf7 .wpcf7-submit:hover {
  background: #fdf7f7;

	color:#B2B2B2;
}
.wpcf7 .wpcf7-submit:active { transform: translateY(1px); }

/* Messages */
.wpcf7-response-output {
  margin: 8px 0 0 !important;
  border: 0 !important;
  padding: 0 !important;
  color: #2d7a38;
  font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .cmf-grid { gap: 24px; }
}
@media (max-width: 900px) {
  .cmf-grid {
    grid-template-columns: 1fr;   /* stack */
  }
  .cmf-map, .cmf-form { min-height: auto; }
  .cmf-map-embed { aspect-ratio: 16/11; } /* keep nice height on mobile */
  .cmf-form { padding: 22px 18px; }
}


.wpcf7 input[type=text], .wpcf7 input[type="tel"], .wpcf7 input[type="email"], .wpcf7 textarea {
	width:100%;
	border: 2px solid #B2B2B2;
    border-radius: 5px;
}

.contact-cnt-info-sec-right {
    max-width: 600px;
}
.we-available-cnt-page-section {
	position:relative;
}
.we-available-cnt-page-section:before {
    position: absolute;
    content: '';
    background-image: url(/wp-content/uploads/2024/02/icon-shape1.svg);
    width: 250px;
    height: 250px;
    top: -37%;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
}

/* service page  */

.service-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}
.left-section {
    width: 25%;
}

.services-page-section-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  gap: 30px;
  justify-content: center;
}

/* Card styles remain the same */
.services-page-section {
    padding: 40px;
}
.services-page-section-items {
  position: relative;
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 350px;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1);
}

.services-page-section-items:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* ICON */
.services-page-section-top-col1 {
  position: relative;
  z-index: 2;
}

.services-page-section-top-col1 img {
  width: 50px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

/* TITLE */
.services-page-section-top-col2 h6 {
  font-size: 20px;
  font-weight: 700;
  color: #0a093d;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* CONTENT */
.services-page-section-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LEARN MORE LINK */
.services-page-items-read-more {
  color: #ff4d00;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}

.services-page-items-read-more::after {
  content: ' →';
  transition: margin-left 0.3s;
}

.services-page-items-read-more:hover::after {
  margin-left: 6px;
}

/* BIG TRANSPARENT ICON ON HOVER */
/* .services-page-section-items::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -30px;
  width: 140px;
  height: 140px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.06;
  z-index: 1;
  transition: all 0.3s ease;
} */

/* .services-page-section-items:hover::before {
  right: 10px;
  opacity: 0.1;
} */

@media (max-width:1024px) {
  .services-page-section-wrapper {
    grid-template-columns: repeat(2, 350px);
  }
}

@media (max-width: 576px) {
  .services-page-section-wrapper {
    grid-template-columns: 1fr;
    justify-content: center;
  }
	.services-page-section-items{
		max-width:100%;
	}
	.services-page-section{
		padding:0;
	}
}


/* Fountain Product */
/* container (use your project’s container if you already have one) */


/* section wrapper */
.heading-section {
  padding: 15px 0;
  background: linear-gradient(180deg, #F7F9FF 0%, #FFFFFF 100%);
}

/* single row block (each repeater row) */
.heading-row {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 1000px;
  padding: 0 12px;
}

/* subtitle (pill style) */
.hs-sub {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eaf0ff;
  color: #2a58da;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 18px;
}

/* title */
.hs-title {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #121517;
  font-size: clamp(28px, 6vw, 64px);
	    font-family: "Roboto";
}

/* description */
.hs-desc {
  margin: 0 auto;
  max-width: 920px;
  color: #4d5258;
  line-height: 1.65;
  font-size: clamp(16px, 2.1vw, 20px);
	    font-family: "Roboto";
}
.mf-heading-image {
    display: flex
;
    justify-content: center;
    align-items: center;
}
.mf-heading-image img {
  max-height: 200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mf-heading-image img:hover {
  transform: scale(1.02);
}

/* spacing tweaks for small screens */
@media (max-width: 640px) {
  .heading-section { padding: 44px 0; }
  .heading-row { margin-bottom: 36px; }
}

/* ===== Progress Section ===== */
.progress-section {
 
  padding: 10px 0;
}

.progress-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;

  flex-wrap: wrap;
	 background-color: #f6f8ff;
  border-radius: 12px;
	width: 80%;
    margin: auto;
}

/* Left content */
.progress-content {
  padding: 20px;
}

.ps-subtitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2a58da;
  display: block;
  margin-bottom: 12px;
}

.ps-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  color: #0f1115;
  margin-bottom: 10px;
  line-height: 1.2;
}

.ps-tagline {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.ps-desc p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
}

/* Right image */
.progress-image {
  text-align: center;
}

.progress-image img {
  width: 100%;

  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.progress-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 1024px) {
  .progress-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .progress-grid {
    grid-template-columns: 1fr;
	  	width: 90%;
  }
  .progress-content {
    text-align: center;
  }
  .progress-image img {
    max-width: 100%;
    margin-top: 20px;
  }
}


.role-dev-sec {
  position: relative;
  background: #1f1f1f;
  color: #fff;
  padding: clamp(50px, 6vw, 100px) 0;
  overflow: hidden;
}

.role-dev-sec::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -60px;
    width: min(42vw, 100%);
    height: min(42vw, 450px);
    background-image: var(--vector);
    background-repeat: no-repeat;
    background-size: contain;
    /* opacity: 0.35; */
    pointer-events: none;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.role-media img {
  width: 100%;
  border-radius: 10px;
}

.role-content { max-width: 600px; }

.role-sub {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2b6cf6;
  margin-bottom: 10px;
}

.role-title {
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
	    color: white;
}

.role-desc {
  color: #d6d6d6;
  line-height: 1.7;
  margin-bottom: 20px;
}

.role-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.tick-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .role-grid { grid-template-columns: 1fr; text-align: center;gap:20px; }
  .role-media img { max-width: 80%; margin: 0 auto; }
  .role-dev-sec::after { opacity: 0.25; }
}

/* Section wrapper */
.mf-feature-section{

  padding: 20px;
}
.mf-feature-wrapper{
	    border-radius: 10px;
    background: #F3F6FD;
      padding: 100px 120px;
}

/* Header */
.mf-feature-head{ margin-bottom: 28px; }
.mff-sub{
  display:inline-block;
    font-size: 16px;
    font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color:#2a58da;
  margin-bottom: 10px;
}


.mff-title{
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color:#0f1115;
  font-size: clamp(26px, 5vw, 48px) !important;
}
.mff-rule{
  border:0; height:1px;
  background:#dde3ff;
  margin: 12px 0 0;
}

/* Grid */
.mff-grid{
  display:grid;
  gap: clamp(18px, 3vw, 28px) clamp(24px, 4vw, 48px) !important;
  grid-template-columns: 1fr;
  margin-top: clamp(18px, 3vw, 28px);
}
@media (min-width: 900px){
  .mff-grid{ grid-template-columns: 1fr 1fr; }
}

/* Item */
.mff-item{
  display:grid;
  grid-template-columns: 28px 1fr;
  align-items:flex-start;
  gap: 14px;
}
.mff-icon {
    margin-top: 10px;
}
/* Tick icon (same for all) */
.mff-icon img{
  width: 20px; height: 20px; display:block;
}
.mff-fallback{
  width: 20px; height:20px; display:block; border-radius:50%;
  background:#2a58da;
  position:relative;
}
.mff-fallback::after{
  content:""; position:absolute; left:6px; top:3px; width:6px; height:10px;
  border:2px solid #fff; border-left:0; border-top:0; transform:rotate(45deg);
}

/* Text */
.mff-item-title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color:#0f1115;
}
.mff-item-desc{
  margin: 0;
  color:#425066;
  line-height: 1.7;
  font-size: 15.5px;
}

/* Spacing tweaks for small screens */
@media (max-width: 640px){
  .mff-item-title{ font-size: 17px !important;  }
  .mff-item-desc{ font-size: 15px !important; }
	.mf-feature-wrapper{
		padding:10px;
	}
}




/* service inner page  */

/* Wrapper row spacing */
.services-inner-section-1 .row {
  gap: 30px;
	    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* ===== LEFT: Service Links ===== */
.service-links {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.service-links li {
  margin-bottom: 10px;
}

.service-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d6eeff;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 15px;
}

.service-links li.active a {
  background: #fdecee;
  color: #e60023;
}

.service-links li.active a .arrow {
  color: #e60023;
}


.service-links li a:hover {
  background: #96c6ff;
}

.service-links .arrow {
  font-size: 16px;
  font-weight: bold;
}
.col-md-4 {
    width: 25%;
}



/* ===== LEFT: Contact Us Box ===== */
.contact-us-box {
  background: #f7f9fa;
  padding: 20px;
  border-radius: 6px;
}

.contact-us-box h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.contact-us-box p {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
}

.contact-us-box img.contact-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}


/* ===== RIGHT: Image & Content ===== */
.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-description {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.service-description h2,
.service-description h3 {
  font-weight: bold;
  margin-bottom: 15px;
}
.col-md-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
	width: 70%;
}
.service-image.mb-4 {
/*     max-width: 50%; */
}

/* ===== Responsive Layout ===== */
@media (max-width: 768px) {
  .services-inner-section-1 .row {
    flex-direction: column-reverse;
  }

  .contact-us-box,
  .service-links {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .col-md-4,
  .col-md-8 {
    width: 100%;
  }

  .col-md-8 {
    align-items: flex-start;
  }

  .service-image.mb-4 {
    max-width: 100%;
  }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
  .service-links li a {
    font-size: 14px;
    padding: 12px 16px;
  }

  .contact-us-box p {
    font-size: 14px;
  }

  .contact-us-box img.contact-icon {
    width: 20px;
    height: 20px;
  }

  .service-description {
    font-size: 15px;
  }
}



/* about */
/* .about-page-section1-wrapper {
    display: flex;
    column-gap: 30px;
    align-items: center;
}
.about-page-section1-left, .about-page-section1-right {
    width: 50%;
}
.about-page-section1-left img {
    border-radius: 20px;
    box-shadow: 10px 10px 60px -15px #44C4F333;
    width: 100%;
}
.about-page-section1-right h3 {
    margin-top: 0px;
} */

.about-page-section1-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
	justify-content: center;
	padding: 40px;
	border-radius: 12px;
}

.about-left-box {
	background: #0D3059;
	color: #fff;
	padding: 50px;
	flex: 1;
	max-width: 350px;
	border-radius: 12px;
	text-align: left;
}

.about-left-box h2 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    color: white;
}

.about-left-box h4 {
    text-transform: uppercase;
    font-size: 24px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
	color:white;
}

.about-left-box p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.avatar-group {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: -10px;
}

.avatar-group img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #fff;
	margin-left: -10px;
}

.avatar-more {
	background: #fff;
	color: #2d6ff5;
	font-weight: bold;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -10px;
}

.about-middle-image {
	flex: 1;
	max-width: 400px;
}

.about-middle-image img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
}

.about-right-content {
	flex: 1.5;
	max-width: 500px;
	    display: flex;
    /* line-height: 36px; */
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

.about-right-content p {
	font-size: 15px;
	margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #111;
	font-weight:600;
}

.tick-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    object-fit: contain;
}

.btn-primary:hover {
	background: #1a55cb;
}

.btn-secondary{
     
    color: #ffffff !important;
    border-radius: 7px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
	border:1px solid white;
}

/* Progress Bar */
.progress-bar-wrapper {
	margin-top: 20px;
}

.progress-top {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	margin-bottom: 10px;
}

.progress-bar {
	width: 100%;
	height: 15px;
	background: #d8e9fc;
	border-radius: 6px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: #0D3059;
	width: 0;
	transition: width 1s ease;
	border-radius: 6px;
}



/* Responsive */
@media(max-width: 992px) {
	.about-page-section1-wrapper {
		flex-direction: column;
		text-align: center;
	}
	.about-left-box,
	.about-middle-image,
	.about-right-content {
		max-width: 100%;
	}
}




/* home feature section */
.about-features-sec-inner {
  padding: 20px 0;
  background: #CCE5FF25;
}

.about-features-heading {
    text-align: center;
}

.about-features-wrap-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-features-left-inner {
  flex: 1;
}

.about-features-left-inner h2 {
  font-size: 24px;
  color: #0D3059;
  margin-bottom: 10px;
	font-family:"Montserrat";
	font-weight:700;
}

.about-features-left-inner .abt-desc {
  color: #435E7E;
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
	font-family:"Roboto";
	font-weight:400;
}

.features-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

.feature-card-inner {
  background: #30B0C71A;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.feature-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-icon-inner {
  width: 70px;
  height: 80px;
  object-fit: contain;

}

.feature-card-inner h3 {
    font-size: 24px;
    color: #0D3059;
 
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    /* margin: 0; */
    margin-bottom: 15px;
}

.feature-card-inner p {
  color: #435E7E;
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
	font-family: "Poppins", sans-serif;
	font-weight:400;
}

.about-features-right-inner {
  flex: 1;
  display: flex;
  justify-content: center;
	width:50%;
}

.about-features-right-inner .main-img {
/*   width: 100%;
  max-width: 480px; */
  border-radius: 14px;
  object-fit: cover;
}

/* 📱 Responsive Design */
@media (max-width: 1200px) {
  .about-features-wrap-inner {
    gap: 30px;
  }
  .features-grid-inner {
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .about-features-wrap-inner {
    flex-direction: column;
    text-align: center;
  }
  .about-features-right-inner {
    margin-top: 20px;
  }
  .features-grid-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .features-grid-inner {
    grid-template-columns: 1fr;
  }
	.about-features-right-inner{
		    width: 100%;
	}
}





/* our history  */

.history-section {
    background-image:url(/wp-content/uploads/2025/03/38.webp);
    color: #fff;
    padding: 50px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.history-heading .sub-title {
    color: #03e9f4;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.history-heading .main-title {
    font-size: 36px;
    font-weight: 700;

    color: #fff;
}

 .history-section .history-counters {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
	
}

.counter-box {
    flex: 1;
    min-width: 220px;
}
.counter-box-contain{
	margin-top:25px !important;
}

.counter-number {
    font-size: 60px;
    font-weight: bold;
    margin-top: 20px;
}

.counter-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;

}

.counter-text {
    font-size: 16px;
    color: #ccc;
	text-align: center !important;
}

@media (max-width: 1024px) {
    .history-heading .main-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .counter-number {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 20px;
    }

    .history-heading .sub-title {
        font-size: 14px !important;
    }

    .history-heading .main-title {
        font-size: 28px !important;
        line-height: 1.4 !important;
        margin-bottom: 30px !important;
    }

    .history-section .history-counters {
        gap: 30px;
        margin-top: 40px !important;
    }

    .counter-box {
        min-width: 100%;
        padding: 10px;
    }

    .counter-number {
        font-size: 48px !important;
        margin-bottom: 16px;
    }

    .counter-icon img {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .counter-text {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .history-heading .main-title {
        font-size: 20px !important;
    }

    .counter-number {
        font-size: 28px !important;
    }

    .counter-text {
        font-size: 12px !important;
    }
    .history-section .history-counters {
		gap: 10px;
	}

.counter-box {
    flex: 2;
    min-width: 150px;
}
	.counter-box-contain{
		margin-top:0 !important;
	}
}



/* Blockchain Revolution Section */

.Blockchain-Revolution-Section {
  padding: 20px;
  background: linear-gradient(to right, #f7f8ff, #f7f8ff);
  font-family: 'Inter', sans-serif;
	background-image:url(/wp-content/uploads/2025/03/bg-pattern-1.webp)
}

.br-content-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.br-heading{
	font-size: 48px;
    line-height: 70px;
    letter-spacing: -2px;
}

.br-left,
.br-right {
  flex: 1 1 500px;
}

.br-headline {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  line-height: 1.3;
}

.br-subheadline {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}


.br-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}


.br-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 22px;
  height: 22px;
}

.feature-1 {
  background: #ede9fe;
}

.feature-2 {
  background: #dcfce7;
}

.feature-3 {
  background: #fee2e2;
}


.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .Blockchain-Revolution-Section {
    padding: 50px 16px;
  }

  .br-content-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .br-headline {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 24px;
  }

  .br-heading {
    font-size: 18px !important;
    line-height: 30px !important;
    letter-spacing: -1px !important;
  }

  .br-subheadline {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .br-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .feature-card h4 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .feature-card {
    padding: 16px;
    gap: 12px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
  }

  .feature-icon img {
    width: 18px;
    height: 18px;
  }
	.feature-list li{
		font-size:12px;
	}
}



/* //Career page  */

.career-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
}

.career-container {
  max-width: 1140px;
  margin: auto;
}

.heading-career {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.career-heading {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
}

.career-subtext {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 40px;
  max-width: 750px;
}

.career-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content:center;
  align-items:center;
}

.career-card {
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width:70%;
  border: 1.5px solid #21759a;
  border-radius: 5px;
  border-left: 7px solid #21759a;
  margin: 10px 0;
  align-items:center
}

.career-card-left {
  flex: 1 1 60%;
}

.career-card-left h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.career-card-left .location {
    font-size: 16px;
    color: black;
    margin-bottom: 10px;
    font-weight: 600;
}

.career-card-left .desc {
    font-size: 16px;
    color: #3c3c3c;
	max-width:600px;
}

.career-card-right {
/*   text-align: right;
  flex: 1 1 35%; */
	    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.career-card-right p {
    font-size: 16px;
    color:black;
    margin-bottom: 10px;
    font-weight: 600;
}

.apply-btn {
  display: inline-block;
  border: 2px solid #4f46e5;
  color: #4f46e5;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.apply-btn:hover {
  background-color: #4f46e5;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .career-card {
    flex-direction: column;
    align-items: flex-start;
	 width:100%;
  }

  .career-card-right {
    text-align: left;
  }
	.career-subtext{
		font-size:16px !important;
	}
}


.professional-detail-sec {
    background-color: #F5FCFF;
    border-radius: 220px 0px 0px 220px;
    padding-bottom: 10px;
	margin-top: 50px;
}
.container {
   width: 80%;
   padding: 50px 0;
   margin: 50px auto;
   position: relative;
   overflow: hidden;
}
.container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -2px;
    width: 4px;
    height: 100%;
    background: #55C9F4;
    z-index: 1;
}
.timeline-block {
   width: -webkit-calc(50% + 8px);
   width: -moz-calc(50% + 8px);
   width: calc(50% + 8px);
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: flex;
   -webkit-box-pack: justify;
   -webkit-justify-content: space-between;
   -moz-box-pack: justify;
   justify-content: space-between;
   clear: both;
}
.timeline-block-right {
   float: right;
}
.timeline-block-left {
   float: left;
   direction: rtl
}
.timeline-block .marker {
    width: 18px;
    height: 18px;
    margin-top: 40px;
    z-index: 9999;
    background-image: url(/wp-content/uploads/2024/02/timeline-dot.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.timeline-content {
   width: 95%;
   padding: 0 15px;
   margin-bottom: 70px;
}
.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  	line-height: 28px;
    max-width: 520px;
    margin-top: 0;
	margin-bottom: 10px;
}
.timeline-content:hover h3 {
    color: #005D7F;
}
.timeline-content p {
    color: #004660;
	margin-bottom: 0px;
}
.timeline-content.one, .timeline-content.three {
    position: relative;
    padding-right: 150px;
}
.timeline-content.two, .timeline-content.four {
    position: relative;
    padding-left: 150px;
}
.timeline-content.one:after {
    position: absolute;
    content: '';
    background-image: url(/wp-content/uploads/2024/02/timeline-1.svg);
    width: 100px;
    height: 100px;
    top: 0;
    right: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}
.timeline-content.two:before {
    position: absolute;
    content: '';
    background-image: url(/wp-content/uploads/2024/02/timeline-2.svg);
    width: 100px;
    height: 100px;
    top: 0;
    left: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}
.timeline-content.three:after {
    position: absolute;
    content: '';
    background-image: url(/wp-content/uploads/2024/02/timeline-3.svg);
    width: 100px;
    height: 100px;
    top: 0;
    right: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}
.timeline-content.four:before {
    position: absolute;
    content: '';
    background-image: url(/wp-content/uploads/2024/02/timeline-4.svg);
    width: 100px;
    height: 100px;
    top: 0;
    left: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}
.marker.one {
    position: relative;
    left: 1px;
}
@media screen and (max-width: 768px) {
   .container:before {
      left: 8px;
      width: 2px;
   }
   .timeline-block {
      width: 100%;
      margin-bottom: 30px;
   }
   .timeline-block-right {
      float: none;
   }
	.timeline-block-left {
      float: none;
      direction: ltr;
   }
	.about-right-content{
		align-items: center !important;
	}
}

/* blog page */
.home-blog-page-wrapper {
    display: flex;
    flex-wrap: wrap;
	margin-bottom: 40px;
}
.home-blog-item {
    width: 33.33%;
}
.home-blog-image img {
    display: block;
}

/* blog details */
.related-posts-section ol li img {
    width: 100%;
    display: block;
}
.entry-thumbnail {
    text-align: left;
}
.author-box {
    display: none;
}

/* 404 page */
.error-404.not-found {
  text-align: center;
  padding: 100px 0px;
}


/* //product page */
/* ===== Product grid (for your custom listing template) ===== */
.khp-products-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}
.khp-products-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.khp-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s;
}
.khp-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.khp-card__thumb {
  aspect-ratio: 1/1;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.khp-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.khp-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.khp-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}
.khp-card__title a {
  color: #111;
  text-decoration: none;
}
.khp-card__title a:hover {
  text-decoration: underline;
}
.khp-card__cta {
  margin-top: auto;
}

.khp-btn {
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  background: #0D3059;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.khp-btn:hover {
  filter: brightness(1.05);
	background:#0D3059;
}

/* ===== Modal ===== */
.khp-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.khp-modal.is-open {
  display: block;
}
.khp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.khp-modal__dialog {
  position: relative;
  width: min(760px, 92vw);
  margin: 7vh auto;
  background: #fff;
  border-radius: 14px;
  padding: 20px 20px 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  max-height: 88vh;
  overflow: auto;
}
.khp-modal__close {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
	color:black;
}
.khp-modal__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: #0D3059;
}
.khp-modal__body .wpcf7 {
  margin-top: 6px;
}

/* ===== CF7 form layout (2 columns, message full width) ===== */
.khp-modal .wpcf7 form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.khp-modal .wpcf7 input[type="text"],
.khp-modal .wpcf7 input[type="email"],
.khp-modal .wpcf7 input[type="tel"],
.khp-modal .wpcf7 textarea {
  width: 100%;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
  background: #fff;
}
.khp-modal .wpcf7 input[type="text"]::placeholder,
.khp-modal .wpcf7 input[type="email"]::placeholder,
.khp-modal .wpcf7 input[type="tel"]::placeholder,
.khp-modal .wpcf7 textarea::placeholder {
  color: #9aa3a6;
}

.khp-modal .wpcf7 textarea {
  min-height: 160px;
  grid-column: 1 / -1;
} /* FULL WIDTH */

/* Submit full width */
.khp-modal .wpcf7 input[type="submit"] {
  grid-column: 1 / -1;
  background:#0D3059;
  color: #fff;
  border: 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
}

/* Validation messages and sent state */
.khp-modal .wpcf7 form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}
.khp-modal .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #d33;
  padding-top: 4px;
}

/* Mobile */
@media (max-width: 560px) {
  .khp-modal__dialog {
    margin: 9vh auto;
    padding: 16px;
  }
  .khp-modal .wpcf7 form {
    grid-template-columns: 1fr;
  }
}




@media (max-width:767px) {
	.breadcrumb, .innerpage-title-bar h1:before, .contact-cnt-info-sec-wrapper:before,
	.contact-cnt-info-sec-wrapper:after {
    	display: none;
	}
	.innerpage-title-bar {
    	height: 100px;
		margin-bottom: 20px;
		background-image:url(/wp-content/uploads/2025/10/Breadcum-Mobile-1.webp) !important;
    }
	.innerpage-title-bar h1 {
    	text-align: center;
    	width: 100%;
	    font-size: 14px !important;
		padding:0 10px;
		margin:0;
	}
	.contact-cnt-info-sec-wrapper, .contact-cnt-info-sec-left, .speciality-page-section-wrapper, .home-blog-page-wrapper {
    	flex-direction: column;
	}
	.contact-cnt-info-sec-left, .contact-cnt-info-sec-right, .contact-cnt-info-call, .contact-cnt-info-mail, .contact-cnt-info-location,
	.speciality-page-section-items, .about-page-section1-left, .about-page-section1-right {
    	width: 100%;
	}
	.contact-cnt-info-call, .contact-cnt-info-mail, .contact-cnt-info-location {
		margin: 0px;
    	margin-bottom: 20px;
	}
	.contact-cnt-info-sec-right {
    	padding-top: 15px;
	}
	.speciality-page-section-items {
    	margin-bottom: 15px;
		margin:0px;
	}
	.speciality-page-section-inner-items h6 {
    	font-size: 16px !important;
    	line-height: 16px !important;
	}
	.professional-detail-sec {
    	border-radius: 0px;
    	padding-bottom: 0px;
	}
	.timeline-content {
  		margin-bottom: 20px;
	}
	.professional-detail-sec .container {
    	padding: 50px 0px 0px 0px;
   	}
	.timeline-content.one:after, .timeline-content.two:before, .timeline-content.three:after, .timeline-content.four:before {
		display:none;
	}
	.timeline-content.one, .timeline-content.three {
    	padding-right: 0px;
	}
	.timeline-content.two, .timeline-content.four {
    	padding-left: 15px;
	}
	.timeline-content h3 {
    	font-size: 18px !important;
    	text-align: left;
    	line-height: 28px !important;
    	max-width: 100%;
    }
	.marker.one {
   		left: -1px;
	}
	.home-blog-item {
		width: 100%;
		margin-bottom: 30px;
	}
	.about-page-section1-wrapper {
    	flex-direction: column;
		padding:10px;
	}
}

@media (min-width:768px) and (max-width:1024px) {
	.innerpage-title-bar {
    	height: 180px;
    }
	.breadcrumb {
    	display: none;
	}
	.contact-cnt-info-sec-wrapper {
    	flex-direction: column;
	}
	.about-page-section1-wrapper {
    	flex-direction: column;
	}
	.contact-cnt-info-sec-left, .contact-cnt-info-sec-right, .about-page-section1-left, .about-page-section1-right {
    	width: 100%;
	}
	.contact-cnt-info-sec-right {
    	max-width: 100%;
	}
	.contact-cnt-info-sec-wrapper:after, .we-available-cnt-page-section:before {
		display:none;
	}
	.speciality-page-section-items {
    	width: 25%;
    }
}

@media (max-width:1280px) {
	.speciality-page-section-inner-items h6 {
		font-size: 11px;
		line-height: 15px;
	}
}

@media (max-width:1280px) {
	.innerpage-title-bar{
		height:160px;
	}
}


@media (min-width:1600px) {
	.speciality-page-section-inner-items h6 {
    	font-size: 15px;
    }
}

/* woo commerce */
nav.woocommerce-breadcrumb {
    display: none;
}


/* ===== Woo Single Product – drop-in CSS (paste in Appearance > Customize > Additional CSS) ===== */
.single-product .woocommerce .product {
  --accent: #0f62fe;
  --dark: #0b1736;
  --text: #222;
  --muted: #6b7280;
  --bg: #f7f8fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 22, 36, .08);
  color: var(--text);
}

/* Page container */
.single-product div.product {
  max-width:80%;
  margin: 32px auto;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Two-column layout */
.single-product div.product .images,
.single-product div.product .summary {
  float: none !important;
  width: auto !important;
}
.single-product div.product {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: start;
}

/* Gallery */
.single-product div.product .images {
  border: 1px solid #eef1f6;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.single-product div.product .woocommerce-product-gallery__wrapper {
  padding: 10px;
}
.single-product div.product .flex-control-thumbs li {
  border-radius: 10px;
  overflow: hidden;
}
.single-product div.product .woocommerce-product-gallery__image img,
.single-product div.product .flex-control-thumbs img {
  border-radius: 10px;
}

/* Title */
.single-product .product .product_title {
  font-size: clamp(24px, 2.2vw, 26px);
  line-height: 1.2;
  margin: 6px 0 12px;
  color: var(--dark);
  font-weight: 800;
}

/* Price */
.single-product .product p.price,
.single-product .product span.price {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 800;
  color: var(--accent);
  margin: 8px 0 14px;
}
.single-product .product del {
  color: var(--muted);
  margin-right: 10px;
}

/* Short description / bullets */
.single-product .product .woocommerce-product-details__short-description {
  margin: 14px 0 18px;
  color: var(--text);
  font-size: 15.5px;
}
.single-product .product .woocommerce-product-details__short-description ul {
  margin: 8px 0 0 20px;
}
.single-product .product .woocommerce-product-details__short-description li {
  margin: 6px 0;
  position: relative;
  list-style: none;
  padding-left: 24px;
}
.single-product .product .woocommerce-product-details__short-description li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Quantity + Add to Cart */
.single-product .product form.cart {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0 12px;
}
.single-product .product .quantity .qty {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  font-weight: 700;
}
.single-product .product button.single_add_to_cart_button {
  background: var(--accent);
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: none;
  box-shadow: 0 10px 18px rgba(15,98,254,.25);
}
.single-product .product button.single_add_to_cart_button:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* Meta (SKU, cats, tags) */
.single-product .product .product_meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13.5px;
}
.single-product .product .product_meta a {
  color: var(--dark);
  font-weight: 600;
}

/* Tabs (Description / Additional info / Reviews) */
.single-product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 32px;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: var(--radius);
  overflow: hidden;
}
.single-product .woocommerce-tabs ul.tabs {
  padding: 0 12px;
  border-bottom: 1px solid #eef1f6;
}
.single-product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: 0;
  margin: 0 8px -1px 0;
}
.single-product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--muted);
}
.single-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}
.single-product .woocommerce-Tabs-panel {
  padding: 20px;
  line-height: 1.7;
}

/* Notices */
.single-product .woocommerce-message,
.single-product .woocommerce-error,
.single-product .woocommerce-info {
  border-radius: 12px;
}

/* Breadcrumbs (if theme prints) */
.single-product .woocommerce-breadcrumb {
  max-width:80%;
  margin: 18px auto 0;
  color: var(--muted);
}
.single-product .woocommerce-breadcrumb a { color: var(--dark); }

/* Related / Upsells */
.single-product .related,
.single-product .upsells {
  margin-top: 40px;
}
.single-product .related h2,
.single-product .upsells h2 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--dark);
}
.single-product .related ul.products,
.single-product .upsells ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.single-product ul.products li.product {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding-bottom: 12px;
}
.single-product ul.products li.product .button {
  border-radius: 10px;
}

.khp-single__cta {
    width: 300px;
}

/* Sticky summary on large screens */
@media (min-width: 1025px) {
  .single-product div.product .summary {
    position: sticky;
    top: 24px;
  }
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .single-product div.product {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px;
  }
  .single-product .related ul.products,
  .single-product .upsells ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .single-product .related ul.products,
  .single-product .upsells ul.products {
    grid-template-columns: 1fr;
  }
  .single-product .product form.cart {
    grid-template-columns: 1fr;
  }
	.single-product div.product{
		max-width:100%;
	}
}

/* our training program */
.tp-sec-title {
  text-align: center;
  color: #1c355e;
  font-weight: 800;
  margin: 0 0 18px;
}

.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 1024px) {
  .tp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .tp-grid {
    grid-template-columns: 1fr;
  }
}

.tp-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(20, 40, 80, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(20, 40, 80, 0.12);
}

.tp-media {
  position: relative;
  display: block;
}
.tp-media img {
  width: 100%;

  object-fit: cover;
  display: block;
}
.tp-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: #c0141c;
  color: #fff;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.tp-body {
  padding: 16px 18px 18px;
}
.tp-title {
  margin: 0 0 6px;
  font-size: 20px;
}
.tp-title a {
  color: #1c355e;
  text-decoration: none;
}
.tp-title a:hover {
  color: #c0141c;
}

.tp-sub {
  color: #7a8aa3;
  font-size: 14px;
  margin-bottom: 10px;
}
.tp-sub span {
  color: #0D3059;
  font-weight: 700;
}

.tp-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-top: 12px;

  color: #5b6b82;
  font-size: 14px;
}
.tp-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* tiny inline icons (replace with real svgs if you want) */
.tp-ico {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.tp-ico-lesson {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%235b6b82" viewBox="0 0 16 16"><path d="M8 1l7 4-7 4-7-4 7-4z"/><path d="M2 9v3l6 3 6-3V9l-6 3-6-3z"/></svg>');
}
.tp-ico-student {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%235b6b82" viewBox="0 0 16 16"><path d="M8 8a3 3 0 100-6 3 3 0 000 6z"/><path d="M14 14c0-3-4-4.5-6-4.5S2 11 2 14"/></svg>');
}

.tp-readmore {
  margin-top: 15px;
}

.tp-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0D3059 !important; 
  text-decoration: none;
  transition: all 0.3s ease;
}

.tp-readmore-link img {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.tp-readmore-link:hover {
  color: #4326c6; /* darker hover tone */
}

.tp-readmore-link:hover img {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}


.tp-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eef2f8;
}


/* program inner page  */
/* header */
.tpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.tpi-instructor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tpi-instructor__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.tpi-instructor__photo.lg {
  width: 76px;
  height: 76px;
}
.tpi-instructor__label {
  font-size: 12px;
  color: #7a8aa3;
}
.tpi-instructor__name {
  font-weight: 700;
  color: #1c355e;
}
.tpi-title {
  font-size: 36px;
  color: #1c355e;
}
/* container for icon + two-line text */
.tpi-category{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.2;
}
.tpi-category-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.tpi-cat__icon{
  flex:0 0 auto;
  margin-top:2px;           /* align with text block */
}

/* small grey label "Category" */
.tpi-cat__label{
  font-size:13px;
  color:#98A2B3;            /* light grey like screenshot */
  margin-right:6px;         /* space before value */
}

/* red bold value e.g. "Computer Technologies" */
.tpi-cat__value{
  font-size:18px;
  font-weight:700;
  color:#0D3059;            /* adjust to your brand red */
}


/* two columns */
.tpi-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

/* tabs */
.tpi-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e9eef6;
  margin-bottom: 16px;
}
.tpi-tab {
  border: 1px solid #e0d4e9;
  background: #fff;
  color: #1c355e;
  padding: 10px 16px;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  font-weight: 700;
}

.tpi-tab:hover{
	background:#c5d5ef;
	color:#0D3059;
}

.tpi-tab.is-active {
  background: #0D3059;
  color: #fff;
  border-color: #0D3059;
}
.tpi-panels {
  background: #fff;
  border: 1px solid #eef2f8;
  border-radius: 6px;
}
.tpi-panel {
  display: block;
}
.tpi-panel[hidden] {
  display: none;
}
.tpi-panel-inner {
  padding: 20px 22px;
}
.tpi-instructor-card p {
  margin: 0 0 10px;
	font-style: italic;
}

/* curriculum accordion */
/* Accordion base */
.tpi-acc {
  border: 1px solid #eef2f8;
  background: #f9fbff;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* Summary row */
.tpi-acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  color: #1c355e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Hide default arrow */
.tpi-acc > summary::-webkit-details-marker {
  display: none;
}

/* Custom arrow icon */
.tpi-acc > summary::after {
  content: "";
  background-image: url('/wp-content/uploads/2025/10/arrow-down.png');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.tpi-acc[open] > summary::after {
  transform: rotate(180deg);
}

/* Accordion body */
.tpi-acc-body {
  padding: 14px 16px 16px;
  color: #4b5f77;
  line-height: 1.6;
  background: #fff;
}


/* sticky CTA */
.tpi-aside {
 
	 align-self: start;      /* start at top of the grid column */
  position: sticky;
  top: 120px;  
}
.tpi-cta-card {
  position: static;
/*   top: 120px; */
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 22px rgba(20, 40, 80, 0.06);
}
.tpi-cta-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.tpi-price {
  font-size: 22px;
  font-weight: 800;
  color: #b62323;
  text-align: center;
  padding: 16px 12px 8px;
}
.tpi-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 16px 16px;
}
.btn.btn-primary.outline {
  color: #0D3059;
  border: 1.5px solid #0D3059;
  background: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
.btn.btn-primary.outline:hover {
  background: #fff3f3;
}
.btn.btn-primary.solid {
  color: #fff;
  background: #0D3059;
  border: 1.5px solid #0D3059;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
.btn.btn-primary.solid:hover {
  background: #0D3040;
}

/* responsive */
@media (max-width: 1024px) {
  .tpi-layout {
    grid-template-columns: 1fr;
  }
  .tpi-cta-card {
    position: static;
  }
}

.tpi-tab3-body {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}


/* pop up */
/* Base modal wrapper */
.tpi-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.tpi-modal.is-open {
  display: flex;                 /* center horizontally + vertically */
  justify-content: center;
  align-items: center;
}

/* Dimmed background overlay */
.tpi-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 25, 55, 0.75);  /* deep navy tint */
  backdrop-filter: blur(2px);
}

/* Popup box */
.tpi-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(10, 20, 40, 0.35);
  width: 100%;
  max-width: 560px;
  padding: 32px 28px;
  z-index: 10;
  animation: modalFadeIn 0.3s ease;
}

/* Title */
.tpi-modal__title {
  margin: 0 0 18px;
  color: #0D3059;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

/* Close (X) button */
.tpi-modal__close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: none;
  background: #ffff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #0D3059;
  transition: background 0.2s ease;
}
.tpi-modal__close:hover,
.tpi-modal__close:focus {
  background: #fff;
  color: #0D3059;
  outline: none; /* optional: remove default focus ring */
}


/* Base flex layout for the form */
/* Form row layout */
.tpi-modal .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Two-column layout */
.tpi-modal .form-row.two-col .form-group {
  flex: 1 1 calc(50% - 14px);
}

/* Full width rows */
.tpi-modal .form-row.full .form-group,
.tpi-modal .form-row.full input[type="submit"] {
  flex: 1 1 100%;
}

/* Input styling */
.tpi-modal .form-group input,
.tpi-modal .form-group textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  color: #0D3059;
  background: #f8fbff;
  box-sizing: border-box;
}

.tpi-modal .form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* Submit button */
.tpi-modal input[type="submit"] {
  background: #0D3059;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}
.tpi-modal input[type="submit"]:hover {
  background: #08203f;
}

/* Responsive: stack fields on smaller screens */
@media (max-width: 600px) {
  .tpi-modal .form-row.two-col .form-group {
    flex: 1 1 100%;
  }
}



/* Animation */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .tpi-modal__dialog {
    width: 90%;
    max-width: 90%;
    padding: 24px 20px;
  }
  .tpi-modal__title {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .tpi-modal__dialog {
    width: 94%;
    padding: 20px 16px;
  }
  .tpi-modal__close {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}


/* ============= BLOG INNER LAYOUT ============= */

.blog-inner-layout {
    display: flex !important;
    gap: 40px;
    margin-top: 60px;
    justify-content: space-between;
    align-items: flex-start; /* so sticky sidebar aligns to top */
}

/* Main content area */
.blog-inner-layout .content-area {
    width: 70% !important;
}

/* Sidebar (widget area) */
.blog-inner-layout .widget-area {
    width: 30% !important;
    position: sticky;
    top: 120px; /* distance from top while scrolling */
}

/* Each widget box */
.blog-inner-layout .widget-area .widget {
    margin: 0 0 30px;
    background: #ebf0ff;          /* light green background */
    padding: 20px 22px;
    border-radius: 15px;
    border: 1px solid #2a58da;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Widget titles (e.g., "Recent Posts") */
.blog-inner-layout .widget-area .widget-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #004a7c;               /* deep blue title */
    border-bottom: 1px solid #adc1f6;
    padding-bottom: 6px;
}

/* RECENT POSTS WIDGET – nicer list */
.widget-area .widget_recent_entries ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget-area .widget_recent_entries ul li {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e3f5e3;
    transition: all 0.2s ease-in-out;
}

.widget-area .widget_recent_entries ul li:last-child {
    margin-bottom: 0;
}

.widget-area .widget_recent_entries ul li a {
    display: block;
    color: #1c3f4f;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.widget-area .widget_recent_entries ul li:hover {
    background: #ebf0ff;
    border-color: #ebf0ff;
    transform: translateY(-2px);
}

/* Meta text under post titles, if any */
.widget-area .widget_recent_entries .post-date {
    display: block;
    font-size: 12px;
    color: #7b8b7b;
    margin-top: 4px;
}

/* Entry meta capitalization */
.entry-meta span a {
    text-transform: capitalize;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 991px) {
    .blog-inner-layout {
        flex-direction: column;
        gap: 30px;
    }
    .blog-inner-layout .content-area,
    .blog-inner-layout .widget-area {
        width: 100% !important;
		margin:0;
    }
    .blog-inner-layout .widget-area {
        position: static; /* disable sticky on mobile */
        top: auto;
    }
}


/* TABLE OF CONTENT BOX */
.table-of-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border-left: 4px solid #004A7C; /* Change to your brand color */
}

/* TOC TITLE */
.table-of-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #002b5b;
    margin-bottom: 18px;
}

/* MAIN UL */
.table-of-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* MAIN LI BULLET */
.table-of-content ul > li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

/* CUSTOM BULLET (BLUE DOT) */
.table-of-content ul > li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #004A7C;  /* Blue color like screenshot */
    font-size: 20px;
    line-height: 20px;
}

/* SUB-LIST */
.table-of-content ul ul {
    margin-top: 8px;
    margin-bottom: 10px;
    padding-left: 20px;
}

/* SUB-LIST BULLETS */
.table-of-content ul ul li::before {
    color: #cc0000;  /* Red bullet like screenshot */
}

/* TOC LINKS */
.table-of-content a {
    color: #004A7C;  /* Blue heading color */
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.table-of-content a:hover {
    color: #d40000;
    text-decoration: underline;
}

/* industry */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
	    margin-bottom: 20px;
}

.industry-item {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    padding-bottom: 20px;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.industry-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	    border-radius: 15px 15px 0 0;
}

.industry-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-top: 18px;
    padding: 0 12px;
}

/* Tablet – 3 in row */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile – 2 in row */
@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile – 1 in row */
@media (max-width: 500px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card__image img {
        height: 280px;
    }
}

