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

:root {
  --navy: navy;
  --navy-dark: #08104a;
  --green: #3ddc84;
  --green-hover: #2bbf6e;
  --white: #ffffff;
  --header-h: 90px;
  --transition: 0.25s ease;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

}

body {
  font-family: var(--bs-font-sans-serif);
  background: #f0f4ff;
  min-height: 200vh; /* just to show sticky behaviour */
}

/* ───---------------------- HEADER SHELL----------------------------─── */
/* ─── HEADER SHELL ─── */
.tpp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background:navy;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  width: 100%;
  /* Slide up/down transition */
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease;
}

/* Hidden state — slides fully off screen upward */
.tpp-header.tpp-header--hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* Scrolled state — slightly stronger shadow */
.tpp-header.tpp-header--scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.45);
}

/* Push page content down so it doesn't hide under fixed header */
body { padding-top: var(--header-h); }

.tpp-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ─── LOGO ─── */
.tpp-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.tpp-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* ─── DESKTOP NAV ─── */
.tpp-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
  margin-left: 12px;
}

.tpp-nav > li {
  position: relative;
}

.tpp-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.tpp-nav > li > a:hover,
.tpp-nav > li:hover > a {
  background: rgba(255,255,255,0.10);
  color: var(--green);
}

.tpp-nav > li > a .chevron {
  font-size: 10px;
  transition: transform var(--transition);
}

.tpp-nav > li:hover > a .chevron {
  transform: rotate(180deg);
}

/* ─── DROPDOWN ─── */
.tpp-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  list-style: none;
  min-width: 230px;
  overflow: hidden;
  animation: fadeDown 0.18s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tpp-nav > li:hover .tpp-dropdown {
  display: block;
}

.tpp-dropdown li a {
  display: block;
  padding: 11px 18px;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.tpp-dropdown li:last-child a { border-bottom: none; }

.tpp-dropdown li a:hover {
  background: #f4f8ff;
  color: var(--navy);
  padding-left: 24px;
}

/* ─── RIGHT ACTIONS ─── */
.tpp-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Brochure button */
.tpp-btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--green);
  color: #0a0f40;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(61,220,132,0.35);
}

.tpp-btn-brochure:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61,220,132,0.45);
}

/* Language selector */
.tpp-lang {
  position: relative;
}

.tpp-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--bs-font-sans-serif);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}

.tpp-lang-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}

.tpp-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  min-width: 240px;
  overflow: hidden;
  animation: fadeDown 0.18s ease;
  z-index: 200;
}

.tpp-lang.open .tpp-lang-dropdown { display: block; }

.tpp-lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition);
}

.tpp-lang-dropdown a:last-child { border-bottom: none; }

.tpp-lang-dropdown a:hover { background: #f4f8ff; }

.tpp-lang-dropdown a.active {
  background: #eef6ff;
  font-weight: 700;
  color: var(--navy);
}

/* ─── HAMBURGER — hidden on desktop, shown only on mobile ─── */
.tpp-hamburger {
  display: none !important;   /* hidden by default (desktop) */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  gap: 5px;
  transition: background var(--transition);
  flex-shrink: 0;
}

.tpp-hamburger:hover { background: rgba(255,255,255,0.16); }

.tpp-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* X state */
.tpp-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.tpp-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.tpp-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── MOBILE MENU DRAWER ─── */
.tpp-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}

.tpp-mobile-menu.open {
  max-height: 700px;
}

.tpp-mobile-nav {
  list-style: none;
  padding: 8px 0 0;
}

.tpp-mobile-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), color var(--transition);
}

.tpp-mobile-nav li a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--green);
}

/* Mobile sub-menu */
.tpp-mobile-sub {
  list-style: none;
  background: rgba(0,0,0,0.25);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tpp-mobile-sub.open { max-height: 400px; }

.tpp-mobile-sub li a {
  padding: 12px 24px 12px 38px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}

.tpp-mobile-sub li a:hover { color: var(--green); }

/* Mobile actions row */
.tpp-mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.tpp-mobile-actions .tpp-btn-brochure {
  flex: 1;
  justify-content: center;
  min-width: 160px;
}

.tpp-mobile-lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 20px;
}

.tpp-mobile-lang-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  text-decoration: none;
  transition: background var(--transition);
}

.tpp-mobile-lang-list a:hover { background: rgba(255,255,255,0.16); color: var(--green); }

/* ─── RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1024px) {
  .tpp-nav > li > a { font-size: 12.5px; padding: 8px 9px; }
  .tpp-btn-brochure { font-size: 12px; padding: 9px 15px; }
}

@media (max-width: 900px) {
  .tpp-nav,
  .tpp-btn-brochure,
  .tpp-lang { display: none !important; }
  /* Override the desktop !important hidden rule — show hamburger on mobile only */
  .tpp-hamburger { display: flex !important; }
  .tpp-mobile-menu { display: flex; }
}

/* Demo page filler */
.demo-body {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
  color: #333;
  font-family: var(--bs-font-sans-serif);
}
.demo-body h1 { color: var(--navy); margin-bottom: 12px; }
.demo-body p { line-height: 1.7; color: #555; }

/* CSS — add to your stylesheet */
.tpp-header {
  position: fixed; top: 0; left: 0; right: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.tpp-header.tpp-header--hidden { transform: translateY(-100%); }

/************************** Hero Landing Page  ************************/
/* HERO SECTION */

.hero{
  position:relative;
  width:100%;
  height:600px;
  overflow:hidden;
}

/* SLIDER */

.hero-slider{
  position:absolute;
  width:100%;
  height:100%;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 0.8s ease;
}

.slide.active{
  opacity:1;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* DARK OVERLAY */

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(40,30,90,0.55);
  z-index:1;
}

/* CONTENT */
/* HERO SECTION */

.hero-section{
  position:relative;
  width:100%;
  height:75vh;
  min-height:500px;
  overflow:hidden;
  font-family: var(--bs-font-sans-serif);
}

/* SLIDER */

.hero-slider{
  position:absolute;
  width:100%;
  height:100%;
}

.hero-slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1s ease;
}

.hero-slide.active{
  opacity:1;
}

/* IMAGE */

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1);
  transition:transform 6s ease;
}

.hero-slide.active img{
  transform:scale(1.08);
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:linear-gradient(
      90deg,
      rgba(18,24,60,0.85) 0%,
      rgba(18,24,60,0.65) 40%,
      rgba(18,24,60,0.35) 70%,
      rgba(18,24,60,0.1) 100%
  );

  z-index:1;
}

/* CONTENT */

.hero-content{
  position:absolute;
  top:50%;
  left:15%;
  transform:translateY(-50%);
  color:#fff;
  z-index:3;
  max-width:750px;
}

/* TITLE */

.hero-title{
  font-size:60px;
  font-weight:700;
  margin-bottom:18px;
  line-height:1.2;
}

/* DESCRIPTION */

.hero-description{
  font-size:22px;
  line-height:1.6;
  margin-bottom:35px;
  max-width:650px;
}

/* BUTTON */

.hero-btn{
  display:inline-block;
  padding:14px 34px;
  background:#4fc37c;
  color:#000;
  font-weight:600;
  border-radius:35px;
  text-decoration:none;
  transition:0.3s;
}

.hero-btn:hover{
  background:#38b16c;
}

/* ARROWS */

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:55px;
  height:55px;
  border-radius:50%;
  background:rgba(255,255,255,0.25);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  cursor:pointer;
  z-index:4;
  transition:0.3s;
}

.hero-arrow:hover{
  background:rgba(255,255,255,0.45);
}

.hero-left{
  left:30px;
}

.hero-right{
  right:30px;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

@media (max-width:1200px){

.hero-title{
  font-size:44px;
}

.hero-description{
  font-size:18px;
}

}

@media (max-width:992px){

.hero-section{
  height:70vh;
}

.hero-content{
  left:6%;
  max-width:520px;
}

.hero-title{
  font-size:36px;
}

.hero-description{
  font-size:17px;
}

}

@media (max-width:768px){

.hero-section{
  height:60vh;
}

.hero-content{
  left:5%;
  right:5%;
}

.hero-title{
  font-size:28px;
}

.hero-description{
  font-size:16px;
}

.hero-btn{
  padding:12px 26px;
}

.hero-arrow{
  width:42px;
  height:42px;
  font-size:20px;
}

}

@media (max-width:480px){

.hero-section{
  height:65vh;
}
.hero-content{
  left:23%;
  max-width:245px;
}

.hero-title{
  font-size:25px;
}

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

/************************* SECTION ***********************/

.stats-section{
  padding:60px 20px;
  background:#f3f4f6;
  display:flex;
  justify-content:center;
  }
  
  /* MAIN CARD */
  
  .stats-container{
  background:white;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  padding:40px 30px;
  
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  max-width:1200px;
  width:100%;
  }
  
  /* STAT ITEM */
  
  .stat-item{
  flex:1;
  text-align:center;
  padding:20px;
  min-width:200px;
  }
  
  /* ICON */
  
  .stat-icon{
  width:60px;
  height:60px;
  
  margin:auto;
  margin-bottom:15px;
  
  background:#1a73e8;
  color:white;
  
  display:flex;
  align-items:center;
  justify-content:center;
  
  font-size:26px;
  
  border-radius:50%;
  }
  
  /* NUMBER */
  
  .stat-item h2{
  font-size:44px;
  font-weight:700;
  color:#1e293b;
  margin:10px 0;
  }
  
  /* TITLE */
  
  .stat-item h4{
  font-size:20px;
  color:#374151;
  margin-bottom:10px;
  }
  
  /* DESCRIPTION */
  
  .stat-item p{
  font-size:15px;
  color:#6b7280;
  line-height:1.5;
  }
  
  /* DIVIDER */
  
  .divider{
  width:1px;
  height:140px;
  background:#e5e7eb;
  }
  
  /* RESPONSIVE */
  
  @media (max-width:1000px){
  
  .stats-container{
  flex-wrap:wrap;
  }
  
  .divider{
  display:none;
  }
  
  .stat-item{
  width:50%;
  border-bottom:1px solid #eee;
  }
  
  }
  
  @media (max-width:600px){
  
  .stat-item{
  width:100%;
  }
  
  .stat-item h2{
  font-size:36px;
  }
  
  .stat-item h4{
  font-size:18px;
  }
  }

  /* ══════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════ */
  @media (max-width: 560px) {
    .card-body { padding: 32px 24px 36px; }
    .c-stat { padding: 0 12px; }
    .c-stat-num { font-size: 1.6rem; }
  }

  @media (max-width: 420px) {
    .card-stats { grid-template-columns: 1fr 1fr; }
    .c-stat:nth-child(3) {
      grid-column: 1 / -1;
      border-right: none;
      border-top: 1px solid var(--border);
      padding: 16px 0 0;
      margin-top: 8px;
    }
  }




  /* ===============================
   ABOUT SECTION
================================ */

.about-products-section{
  padding: 90px 20px;
  background: #f7f9fc;
}

.about-products-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */

.about-products-image img{
  width: 90%;
  height: 620px;
  object-fit: cover;
  border-radius: 12px;
}

/* CONTENT */

.about-products-title{
  font-size: 36px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 20px;
}

.about-products-text{
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

/* RESPONSIVE */

@media (max-width: 900px){

  .about-products-container{
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .about-products-image img{
      height: 320px;
  }

  .about-products-title{
      font-size: 28px;
  }

}


/* --- MISSION SECTION: UPSCALED CORPORATE --- */
.mission-section {
  width: 100%;
  background: navy;
  position: relative;
  overflow: hidden;
  font-family: var(--bs-font-sans-serif);
}

.mission-feature-bar {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0; /* Slightly taller bar */
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.feature-track {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.feature-track .sep { color: var(--green); }

/* CONTENT WRAPPER - Increased height via padding */
.mission-content-wrapper {
  position: relative;
  width: 100%;
  padding: 80px 8%; /* Increased from 50px/5% to make it "bigger" */
}

.mission-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 80px; /* More space between text and stats */
  align-items: center;
  position: relative;
  z-index: 2;
}

/* TYPOGRAPHY - Larger scales */
.mission-tag {
  color: var(--green);
  font-weight: 800;
  font-size: 24px; /* Bigger tag */
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.mission-title {
  color: var(--white);
  font-size: 48px; /* Bigger headline */
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
}

.mission-title .highlight { color: var(--green); }

.mission-copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px; /* Bigger body text */
  line-height: 1.7;
  max-width: 700px;
}

/* STATS - Larger and bolder */
.mission-stats-block {
  display: flex;
  flex-direction: column;
  gap: 35px; /* More vertical space between stats */
}

.corp-stat {
  border-left: 3px solid var(--green);
  padding-left: 20px;
}

.stat-val {
  font-size: 44px; /* Bigger numbers */
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* BUTTONS - Larger */
.mission-btns {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.btn-primary-corp, .btn-outline-corp {
  padding: 16px 35px; /* Bigger buttons */
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
}

.btn-primary-corp { background: var(--green); color: var(--navy); }
.btn-primary-corp:hover { background: var(--green-hover); transform: translateY(-3px); }

.btn-outline-corp { border: 1.5px solid rgba(255, 255, 255, 0.3); color: var(--white); }
.btn-outline-corp:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.05); }

/* GRID OVERLAY */
.mission-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(61, 220, 132, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .mission-grid-container { grid-template-columns: 1fr; gap: 60px; }
  .mission-content-wrapper { padding: 60px 10%; }
}

@media (max-width: 600px) {
  .mission-title { font-size: 32px; }
  .mission-content-wrapper { padding: 40px 5%; }
  .mission-btns { flex-direction: column; }
  .btn-primary-corp, .btn-outline-corp { text-align: center; }
}

/* ***************** product section **********************/
.tpp-products-section {
  padding: 80px 20px;
  /* background: #f5f7fb; */
  background:#f5f7f9;
}

.tpp-products-container {
  max-width: 1300px;
  margin: 0 auto;
}

.tpp-products-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #0b2545;
  font-family: var(--bs-font-sans-serif);
}

/* ── Wrapper ── */
.tpp-carousel-wrapper {
  position: relative;
  padding: 0 10px;
}

/* ── Viewport ── */
.tpp-carousel-viewport {
  overflow: hidden;
}

/* ── Carousel track ── */
.tpp-products-carousel {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
  will-change: transform;
}

/* ── Cards ── */
.tpp-product-card {
  flex: 0 0 calc(25% - 15px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.tpp-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 32px rgba(11,37,69,0.13);
}

.tpp-product-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.tpp-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tpp-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 8px;
}

.tpp-card-body p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.tpp-card-body a {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;          /* Changed to white for better contrast on green */
  background-color: #0d1561;
  text-decoration: none;
  
  /* Pill Shape Logic */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;       /* Vertical and Horizontal padding */
  border-radius: 50px;     /* High value creates the pill shape */
  
  gap: 4px;
  transition: all 0.2s ease-in-out;
}

.tpp-card-body a:hover {
  gap: 8px;
  background-color: #246341; /* Slightly darker shade on hover */
  box-shadow: 0 4px 12px rgba(46, 125, 82, 0.2); /* Optional depth */
}
/* ── Arrows ── */
.tpp-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  background: #0b2545;
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, transform 0.22s;
  box-shadow: 0 4px 12px rgba(11,37,69,0.25);
}

.tpp-carousel-arrow:hover {
  background: #2e7d52;
  transform: translateY(-50%) scale(1.08);
}

.tpp-arrow-left  { left: -20px; }
.tpp-arrow-right { right: -20px; }

/* ── Dots ── */
.tpp-carousel-dots {
  text-align: center;
  margin-top: 32px;
}

.tpp-carousel-dots span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.tpp-carousel-dots span.active {
  background: #0b2545;
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .tpp-product-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 600px) {
  .tpp-product-card { flex: 0 0 100%; }
  .tpp-arrow-left  { left: -8px; }
  .tpp-arrow-right { right: -8px; }
}

/* ──---------------------- client  Section------------------------------── */
.tpp-clients-section {
  padding: 80px 24px 70px;
  background: #ffffff;
}

.tpp-clients-container {
  max-width: 1300px;
  margin: 0 auto;
}

.tpp-clients-header {
  text-align: center;
  margin-bottom: 52px;
}

.tpp-clients-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0b2545;
  margin-bottom: 14px;
  font-family: var(--bs-font-sans-serif);
}

.tpp-clients-subtitle {
  font-size: 15px;
  color: #2e7d52;
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Strip ── */
.tpp-logo-strip {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* ── Track ── */
.tpp-logo-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: tppLogoScroll 80s linear infinite;
}

.tpp-logo-track.tpp-paused {
  animation-play-state: paused !important;
}

@keyframes tppLogoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Card ── */
.tpp-logo-item {
  flex-shrink: 0;
  width: 170px;
  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}

.tpp-logo-item:hover {
  box-shadow: 0 10px 28px rgba(11,37,69,0.14);
  transform: translateY(-5px);
  border-color: #b8c8e0;
}

/* ── Image — full colour, bigger ── */
.tpp-logo-item img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  padding: 18px 20px 14px;
  display: block;
  filter: none;
  transition: transform 0.28s ease;
}

.tpp-logo-item:hover img {
  transform: scale(1.05);
}

/* ── Name label — slides down from bottom on hover ── */
.tpp-logo-name {
  display: block;
  width: 100%;
  background: #0b2545;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Collapsed by default */
  max-height: 0;
  padding: 0 10px;
  opacity: 0;
  transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.28s ease;
}

.tpp-logo-item:hover .tpp-logo-name {
  max-height: 40px;
  padding: 9px 10px;
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .tpp-clients-section { padding: 56px 16px 48px; }
  .tpp-clients-title   { font-size: 26px; }
  .tpp-logo-item       { width: 140px; }
  .tpp-logo-item img   { height: 90px; }
  .tpp-logo-track      { gap: 16px; animation-duration: 60s; }
}

@media (max-width: 480px) {
  .tpp-logo-item     { width: 120px; }
  .tpp-logo-item img { height: 76px; padding: 12px 14px 10px; }
  .tpp-logo-track    { animation-duration: 45s; }
}

/************************ Blog  ************************/
/* ============================= */
/* BLOG SECTION */
/* ============================= */

.blog-preview-section{
  padding:90px 20px;
  background:white;
  }
  
  .blog-container{
  max-width:1200px;
  margin:auto;
  }
  
  /* HEADER */
  
  .section-header{
  text-align:center;
  margin-bottom:60px;
  }
  
  .section-header h2{
  font-size:34px;
  color:#0b1a72;
  font-weight:700;
  letter-spacing:0.5px;
  margin-bottom:15px;
  }
  
  .section-header p{
  color:#666;
  max-width:600px;
  margin:auto;
  font-size:16px;
  }
  
  /* GRID */
  
  .blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-bottom:50px;
  }
  
  /* CARD */
  
  .blog-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:all .35s ease;
  border-bottom:3px solid transparent;
  display:flex;
  flex-direction:column;
  }
  
  .blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 35px rgba(0,0,0,0.12);
  border-bottom:3px solid #2E8B57;
  }
  
  /* IMAGE */
  
  .card-img-wrapper{
  height:210px;
  overflow:hidden;
  }
  
  .card-img-wrapper img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
  }
  
  .blog-card:hover img{
  transform:scale(1.08);
  }
  
  /* CONTENT */
  
  .card-content{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
  }
  
  .category-tag{
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  color:#2E8B57;
  margin-bottom:10px;
  text-transform:uppercase;
  }
  
  .card-content h3{
  font-size:20px;
  color:#0b1a72;
  line-height:1.4;
  margin-bottom:12px;
  }
  
  .card-content p{
  font-size:15px;
  color:#666;
  line-height:1.6;
  margin-bottom:20px;
  
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  }
  
  /* READ MORE */
  
  .read-more-link{
  text-decoration:none;
  color:#0b1a72;
  font-weight:600;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  margin-top:auto;
  }
  
  .read-more-link span{
  margin-left:6px;
  color:#2E8B57;
  transition:.3s;
  }
  
  .read-more-link:hover span{
  margin-left:12px;
  }
  
  /* BUTTON */
  
  .btn-container{
  text-align:center;
  }
  
  .main-btn{
  display:inline-block;
  padding:14px 38px;
  background:#0b1a72;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition:.3s;
  }
  
  .main-btn:hover{
  background:#2E8B57;
  }
  
  /* RESPONSIVE */
  
  @media(max-width:1024px){
  
  .blog-grid{
  grid-template-columns:repeat(2,1fr);
  }
  
  }
  
  @media(max-width:700px){
  
  .blog-grid{
  grid-template-columns:1fr;
  }
  
  .section-header h2{
  font-size:28px;
  }
}

/* ──------------------------------------- Footer ------------------------ ── */
:root {
  --tpp-navy:    #0d1561;
  --tpp-green:   #2e7d52;
  --tpp-green-b: #3ddc84;
  --tpp-bg:      #f0f2f8;
  --tpp-white:   #ffffff;
  --tpp-muted:   #5a6278;
  --tpp-border:  #d4d9e8;
}

/* ── Shell ── */
.tpp-footer {
  position: relative;
  background: var(--tpp-bg);
  font-family: var(--bs-font-sans-serif);
  overflow: hidden;
}

/* ── BG shapes ── */
.tpp-footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.tpp-footer-shape { position: absolute; opacity: 0.5; }
.tpp-shape-left  { top: 0; left: 0;  height: 100%; width: auto; max-width: 320px; }
.tpp-shape-right { top: 0; right: 0; height: 100%; width: auto; max-width: 320px; }

/* ── Inner ── */
.tpp-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════
   NEWSLETTER
══════════════════════════════════ */
.tpp-newsletter-strip { padding: 56px 0 48px; }

.tpp-newsletter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.tpp-nl-left { flex: 0 0 340px; }

.tpp-nl-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(46,125,82,0.1);
  border: 1px solid rgba(46,125,82,0.3);
  border-radius: 50px;
  color: var(--tpp-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tpp-newsletter-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--tpp-navy);
  line-height: 1.28;
  margin-bottom: 8px;
}

.tpp-nl-sub {
  font-size: 13.5px;
  color: var(--tpp-muted);
  line-height: 1.6;
}

/* ── Form ── */
.tpp-newsletter-form {
  flex: 1;
  min-width: 280px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.tpp-input-wrap { position: relative; }

.tpp-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #aab2c8;
  pointer-events: none;
}

.tpp-nl-input {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 46px;
  border: 1.5px solid var(--tpp-border);
  border-radius: 10px;
  background: var(--tpp-white);
  font-size: 14px;
  font-family: var(--bs-font-sans-serif);
  color: #333;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.tpp-nl-input::placeholder { color: #aab2c8; }

.tpp-nl-input:focus {
  border-color: var(--tpp-green);
  box-shadow: 0 0 0 3px rgba(46,125,82,0.1);
}

.tpp-nl-input.tpp-input-error { border-color: #e05050; }

.tpp-nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  background: var(--tpp-navy);
  color: var(--tpp-white);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--bs-font-sans-serif);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(13,21,97,0.22);
}

.tpp-nl-btn svg { width: 16px; height: 16px; transition: transform 0.22s; }
.tpp-nl-btn:hover { background: var(--tpp-green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,82,0.28); }
.tpp-nl-btn:hover svg { transform: translateX(4px); }

/* Feedback message */
.tpp-nl-msg {
  font-size: 12.5px;
  font-weight: 600;
  min-height: 18px;
  margin: 0;
  display: none;
}
.tpp-nl-msg.tpp-success { color: var(--tpp-green); display: block; }
.tpp-nl-msg.tpp-error   { color: #e05050; display: block; }

/* ── Divider ── */
.tpp-footer-divider {
  height: 1px;
  background: var(--tpp-border);
}

/* ══════════════════════════════════
   WIDGET AREA — 4 columns
══════════════════════════════════ */
.tpp-widget-area {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr 1fr 1fr;
  gap: 40px 48px;
  padding: 52px 0 56px;
}

/* ── Widget title ── */
.tpp-widget-title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tpp-navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}
.tpp-widget-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--tpp-green-b);
  border-radius: 1px;
}

/* ── Company name ── */
.tpp-company-fullname {
  font-size: 14px;
  font-weight: 800;
  color: var(--tpp-navy);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

/* ── About text ── */
.tpp-about-text {
  font-size: 13px;
  color: var(--tpp-muted);
  line-height: 1.78;
  margin-bottom: 20px;
}

/* ── Social ── */
.tpp-social { display: flex; gap: 7px; flex-wrap: wrap; }

.tpp-social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--tpp-border);
  background: var(--tpp-white);
  color: var(--tpp-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
}
.tpp-social-link:hover {
  background: var(--tpp-navy);
  border-color: var(--tpp-navy);
  color: var(--tpp-white);
  transform: translateY(-3px);
}

/* ── Contact list ── */
.tpp-contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 16px;
}

.tpp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  color: var(--tpp-muted);
  line-height: 1.7;
}

.tpp-contact-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(13,21,97,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.tpp-contact-icon svg {
  width: 15px; height: 15px;
  color: var(--tpp-navy);
}

.tpp-contact-item a {
  color: var(--tpp-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.tpp-contact-item a:hover { color: var(--tpp-navy); }

/* ── Quick links ── */
.tpp-link-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.tpp-link-list li a {
  font-size: 13.5px;
  color: var(--tpp-muted);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.22s, gap 0.22s;
}
.tpp-link-list li a::before {
  content: '›';
  font-size: 18px;
  color: var(--tpp-green-b);
  line-height: 1;
}
.tpp-link-list li a:hover { color: var(--tpp-navy); gap: 12px; }

/* ── Brochure button ── */
.tpp-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: transparent;
  color: var(--tpp-navy);
  border: 2px solid var(--tpp-navy);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--bs-font-sans-serif);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.22s;
}
.tpp-brochure-btn svg { width: 16px; height: 16px; }
.tpp-brochure-btn:hover { background: var(--tpp-navy); color: var(--tpp-white); transform: translateY(-2px); }

/* ══════════════════════════════════
   COPYRIGHT BAR
══════════════════════════════════ */
.tpp-copyright-bar {
  border-top: 1px solid var(--tpp-border);
  position: relative; z-index: 1;
}
.tpp-copyright-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.tpp-copyright-text { font-size: 13px; color: var(--tpp-muted); margin: 0; }
.tpp-copyright-text a { color: var(--tpp-navy); font-weight: 700; text-decoration: none; }
.tpp-copyright-text a:hover { text-decoration: underline; }

.tpp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; flex-wrap: wrap; }
.tpp-footer-links li { display: flex; align-items: center; }
.tpp-footer-links li + li::before { content: '|'; color: #c0c8d8; margin: 0 10px; }
.tpp-footer-links li a { font-size: 12.5px; color: var(--tpp-muted); text-decoration: none; transition: color 0.2s; }
.tpp-footer-links li a:hover { color: var(--tpp-navy); }

/* ── Scroll top ── */
.tpp-scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tpp-white);
  border: 2px solid var(--tpp-border);
  color: var(--tpp-navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0; pointer-events: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s, opacity 0.3s;
}
.tpp-scroll-top.tpp-visible { opacity: 1; pointer-events: auto; }
.tpp-scroll-top:hover { background: var(--tpp-navy); border-color: var(--tpp-navy); color: var(--tpp-white); transform: translateY(-3px); }
.tpp-scroll-top svg { width: 18px; height: 18px; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .tpp-widget-area { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
}

@media (max-width: 768px) {
  .tpp-newsletter-wrap { flex-direction: column; gap: 28px; }
  .tpp-nl-left { flex: none; }
  .tpp-newsletter-form { max-width: 100%; }
}

@media (max-width: 600px) {
  .tpp-footer-inner { padding: 0 20px; }
  .tpp-widget-area { grid-template-columns: 1fr; gap: 28px; }
  .tpp-copyright-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .tpp-newsletter-strip { padding: 40px 0 36px; }
}

:root{
  --navy:#0d1e3a;
  --blue:#0d5fa8;
  --blue-light:#1a8fe3;
  --cyan:#00b4d8;
  --white:#ffffff;
  --off:#f4f7fc;
  --gray:#8a9bb0;
  --border:#dce6f0;
}

/* ── SECTION ── */
.certs-section{
  background:var(--off);
  padding:90px 40px 100px;
  position:relative;
  overflow:hidden;
}

.certs-section::before{
  content:'';
  position:absolute;
  top:-150px;right:-100px;
  width:500px;height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(13,95,168,0.05) 0%,transparent 70%);
  pointer-events:none;
}

.certs-section::after{
  content:'';
  position:absolute;
  bottom:-100px;left:-80px;
  width:350px;height:350px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,180,216,0.04) 0%,transparent 70%);
  pointer-events:none;
}

.section-inner{
  max-width:1100px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

/* ── HEADER ── */
.section-header{text-align:center;margin-bottom:60px;}

.section-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--bs-font-sans-serif);
  font-size:12px;
  font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:14px;
}

.section-eyebrow::before,
.section-eyebrow::after{
  content:'';
  display:inline-block;
  width:30px;height:2px;
  background:var(--blue);
}

.section-title{
  font-family:'Rajdhani',sans-serif;
  font-size:clamp(32px,4.5vw,52px);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--navy);
  margin-bottom:14px;
}

.section-title span{color:var(--blue);}

.section-sub{
  font-size:15px;
  color:var(--gray);
  max-width:560px;
  margin:0 auto;
  line-height:1.75;
}

/* ── GRID ── */
.certs-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

/* ── CARD ── */
.cert-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 2px 20px rgba(10,31,68,0.07);
  border:1px solid var(--border);
  transition:transform 0.35s ease,box-shadow 0.35s ease;
  cursor:pointer;
  position:relative;
}

.cert-card::after{
  content:'';
  position:absolute;
  inset:0;border-radius:14px;
  box-shadow:0 0 0 2px var(--blue);
  opacity:0;
  transition:opacity 0.3s;
  pointer-events:none;
}

.cert-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 52px rgba(13,95,168,0.14);
}

.cert-card:hover::after{opacity:1;}

/* ── PREVIEW AREA ── */
.cert-img-wrap{
  height:250px;
  background:linear-gradient(145deg,#eef3fb,#e2ecf7);
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}

/* dot grid bg */
.cert-img-wrap::before{
  content:'';
  position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='0.8' fill='rgba(13,95,168,0.07)'/%3E%3C/svg%3E");
}

/* zoom icon */
.zoom-hint{
  position:absolute;top:14px;right:14px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(13,95,168,0.88);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity 0.25s;
  z-index:5;
}

.cert-card:hover .zoom-hint{opacity:1;}
.zoom-hint svg{width:17px;height:17px;fill:none;stroke:#fff;stroke-width:2.2;stroke-linecap:round;}

/* "Click to view" label */
.view-label{
  position:absolute;bottom:14px;left:50%;transform:translateX(-50%);
  background:rgba(13,30,58,0.7);
  color:#fff;
  font-family: var(--bs-font-sans-serif);
  font-size:11px;font-weight:600;letter-spacing:2px;
  text-transform:uppercase;
  padding:5px 16px;border-radius:20px;
  opacity:0;transition:opacity 0.25s;
  white-space:nowrap;
  backdrop-filter:blur(4px);
}

.cert-card:hover .view-label{opacity:1;}

/* ── DOCUMENT MOCKUP ── */
.cert-doc{
  width:62%;height:84%;
  background:#fff;border-radius:8px;
  box-shadow:0 10px 40px rgba(10,31,68,0.16);
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
  padding:20px 18px 16px;z-index:1;
}

.cert-doc::before{
  content:'';
  position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--blue),var(--cyan));
}

.cert-doc-logo{
  font-family: var(--bs-font-sans-serif);
  font-size:9.5px;font-weight:700;
  letter-spacing:1.5px;text-transform:uppercase;
  color:var(--blue);opacity:0.85;margin-bottom:7px;padding-top:4px;
}

.cert-doc-title{
  font-family: var(--bs-font-sans-serif);
  font-size:11px;font-weight:700;
  letter-spacing:2px;text-transform:uppercase;
  color:#555;text-align:center;margin-bottom:10px;
}

.cert-lines{flex:1;display:flex;flex-direction:column;gap:5px;justify-content:center;}
.cl{height:5px;border-radius:3px;background:var(--border);}
.cl.hi{background:linear-gradient(90deg,rgba(13,95,168,0.35),rgba(26,143,227,0.18));}
.cl.s{width:50%;margin:0 auto;}
.cl.m{width:75%;}
.cl.f{width:100%;}

.cert-doc-seal{
  width:28px;height:28px;border-radius:50%;
  border:2px solid var(--blue);opacity:0.2;
  position:absolute;bottom:12px;right:12px;
  display:flex;align-items:center;justify-content:center;
  font-family:'Rajdhani',sans-serif;font-size:6.5px;font-weight:700;
  color:var(--blue);text-align:center;line-height:1.2;
}

/* ABMA mockup */
.abma-wrap{position:relative;}
.abma-big{
  font-family: var(--bs-font-sans-serif);
  font-size:44px;font-weight:700;
  color:var(--blue);opacity:0.12;letter-spacing:-2px;text-align:center;line-height:1;
}
.abma-sub{font-size:8px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:#aaa;text-align:center;margin-bottom:10px;}
.abma-cert-title{font-family:'Rajdhani',sans-serif;font-size:13px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#888;text-align:center;margin-bottom:4px;}
.abma-presented{font-size:9px;color:#bbb;text-align:center;margin-bottom:4px;}
.abma-name{font-family:'Rajdhani',sans-serif;font-size:12px;font-weight:700;letter-spacing:1px;color:var(--blue);text-align:center;opacity:0.7;}
.abma-since{font-size:9px;color:#ccc;text-align:center;margin-top:4px;}

.pencil-wrap{position:absolute;top:-8px;right:22px;display:flex;gap:5px;transform:rotate(20deg);}
.pencil{width:5px;height:72px;border-radius:2px 2px 0 0;background:linear-gradient(180deg,#f5c842,#c8860a);opacity:0.3;}
.pencil:nth-child(2){height:60px;margin-top:6px;opacity:0.2;}

/* ── CARD BOTTOM ── */
.cert-info{
  padding:22px 28px 28px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}

.cert-name{
  font-family: var(--bs-font-sans-serif);
  font-size:22px;font-weight:700;
  color:var(--navy);letter-spacing:0.5px;margin-bottom:5px;
}

.cert-org{
  font-size:11px;font-weight:600;letter-spacing:2px;
  text-transform:uppercase;color:var(--blue);
}

.cert-badge{
  flex-shrink:0;
  display:inline-flex;align-items:center;gap:7px;
  padding:7px 16px;
  background:linear-gradient(135deg,#e8f4fd,#d0eaf9);
  border-radius:20px;
  font-size:11px;font-weight:700;letter-spacing:1px;
  text-transform:uppercase;color:var(--blue);white-space:nowrap;
}

.badge-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--blue-light);
  animation:blink 2s ease-in-out infinite;
}

@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}

/*Certificate  SECTION */

.tpp-cert-section{
  padding:90px 20px;
  background:#f5f8fc;
  text-align:center;
  }
  
  .tpp-cert-header h2{
  font-size:36px;
  font-weight:700;
  color:#1c3d8f;
  margin-bottom:10px;
  }
  
  .tpp-cert-header p{
  max-width:700px;
  margin:auto;
  color:#6b7280;
  font-size:16px;
  line-height:1.6;
  margin-bottom:50px;
  }
  
  
  /* GRID */
  
  .tpp-cert-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  max-width:1100px;
  margin:auto;
  }
  
  
  /*************************** certifiacte CARD ************************/
  
  .tpp-cert-card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all .3s ease;
    display:flex;
    flex-direction:column;
    height:100%;        /* important */
  }
  
  .tpp-cert-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 35px rgba(0,0,0,0.12);
  }
  
  
  /* IMAGE */
  
/* IMAGE */

.tpp-cert-img{
  background:#e8eef7;
  height:260px;              /* force same image area */
  padding:30px;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}

.tpp-cert-img img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;        /* prevents stretching */
  cursor:pointer;
  border-radius:6px;
}
  
  
  /* INFO */
  
  .tpp-cert-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 26px;
  }
  
  .tpp-cert-info h3{
  font-size:20px;
  margin-bottom:4px;
  color:#1f2937;
  }
  
  .tpp-cert-info p{
  font-size:12px;
  letter-spacing:1px;
  color:#4b6cb7;
  font-weight:600;
  }
  
  
  /* BADGE */
  
  .tpp-cert-badge{
  background:#e7f0ff;
  color:#3b82f6;
  font-size:12px;
  padding:7px 14px;
  border-radius:20px;
  font-weight:600;
  }
  
  
  /* MODAL */
  
  .tpp-cert-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
  }
  
  .tpp-cert-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:8px;
  }
  
  
  /* CLOSE BUTTON */
  
  .tpp-cert-close{
  position:absolute;
  top:30px;
  right:40px;
  font-size:40px;
  color:white;
  cursor:pointer;
  }
  
  
  /* MOBILE */
  
  @media(max-width:768px){
  
  .tpp-cert-grid{
  grid-template-columns:1fr;
  }
  
  .tpp-cert-header h2{
  font-size:28px;
  }
  
  }

    /************************** MOTO ************************/
    .tpp-motto-section {
      position: relative;
      min-height: 500px;
      display: flex;
      align-items: center;
      overflow: hidden;
      width: 100%;
    }
    
    /* FULL WIDTH BG IMAGE */
    .tpp-motto-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    
    .tpp-motto-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    
    /* NAVY DIAGONAL PANEL - sits on top of image */
    .tpp-motto-content {
      position: relative;
      width: 55%;
      padding: 80px 60px;
      color: #ffffff;
      z-index: 2;
  background-color: #f0f4fa;
    
      /* Diagonal cut on the right side */
      clip-path: polygon(
        0 0,
        100% 0,
        85% 100%,
        0% 100%
      );
    }
    
    .tpp-motto-content h3 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 30px;
      color: #000000;
    }
    
    .tpp-motto-content p {
      font-size: 28px;
      line-height: 1.6;
      max-width: 500px;
      color: #000000;
      font-weight: 400;
    }
    
    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .tpp-motto-content {
        width: 70%;
        padding: 60px 40px;
      }
      .tpp-motto-content p {
        font-size: 22px;
      }
    }
    
    @media (max-width: 768px) {
      .tpp-motto-section {
        flex-direction: column;
        min-height: auto;
      }
      .tpp-motto-image {
        position: absolute;
        width: 100%;
        height: 100%;
      }
      .tpp-motto-content {
        width: 100%;
        clip-path: none;
        padding: 50px 24px;
        background-color: rgba(13, 30, 58, 0.88);
      }
      .tpp-motto-content h3 {
        color: #ffffff;
        font-size: 28px;
      }
      .tpp-motto-content p {
        font-size: 20px;
        color: #ffffff;

      }
    }