@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root{
  --jnk-blue:#0B5EA8;
  --jnk-dark:#1F4F8C;
  --jnk-red:#E63946;
  --jnk-font:"Rajdhani", sans-serif;
}

/* ===== PAGE BACKGROUND ===== */
body{
  background: radial-gradient(#02223fd9, #0b5ea8d9);
  padding:10px;
  font-family:"Segoe UI",sans-serif;
}

/* ===== MAIN CARD ===== */
.card-main{
  max-width:430px;
  margin:auto;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}

/* ===== HEADER ===== */
.header{
  padding:10px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.header img{height:42px;}
.header h5{margin:0;font-weight:600;}
.header small{color:#555;}
.header{
    background-image: url(https://jnkchemdist.com/images/v-card/header-bg.png);
    background-size: contain;
}

/* ===== SLIDER ===== */
.carousel-item img{
  height:240px;
  object-fit:cover;
}

/* ===== TAGLINE ===== */
.tagline{
  background:#fff;
  text-align:center;
  padding:5px 10px;
  font-size:17px;
  font-family: var(--jnk-font);
}
.tagline marquee{
  color:var(--jnk-dark);
  font-weight:600;
  font-size:15px;
}

/* ===== WAVE ===== */
.wave{
  display:block;
  width:100%;
}

/* ===== SECTION CARDS ===== */
.section-card{
  background:#fff;
  border-radius:10px 0px 0px 10px;
  margin:10px 0px 0px 10px;
  padding:5px 10px;
  box-shadow:0 5px 4px rgba(0,0,0,.12);
}
.section-card-img{
  background-image: url(https://jnkchemdist.com/images/v-card/bg-card.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.section-title{
  font-size:16px;
  font-weight:600;
  color:var(--jnk-dark);
  margin-bottom:10px;
  padding-left:10px;
  font-family: var(--jnk-font);
}

/* ===== ICONS ===== */
.icon-box{
  text-align:center;
}
.icon-box span{
  font-weight: 500;
}
.icon-btn {
  text-align: center;
  font-size: 12px;
  color: #333;
  text-decoration: none;
}
.icon-circle{
  width:42px;
  height:42px;
  background:var(--jnk-red);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin:auto;
}
.icon-box p{
  margin-top:6px;
  font-size:14px;
  color:#333;
}

/* ===== SOCIAL ===== */
.social-row i{
  width:42px;
  height:42px;
  background:var(--jnk-red);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

/* ===== FOOTER ===== */
.footer{
  background:#111;
  color:#fff;
  text-align:center;
  font-size:12px;
  padding:10px;
}
.name-block h5 {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 1px;
  font-weight: 600;
  color: #1F4F8C;
  font-family: var(--jnk-font);
}

.name-block h5::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70px;              /* line length */
  height: 2px;              /* thickness */
  background: #1F4F8C;      /* same blue as image */
  border-radius: 2px;
}

.name-block small {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 18s linear infinite;
  font-size: 14px;
}

.marquee-track span {
  display: inline-block;
  padding-right: 40px;
  font-weight: 600;
  color: #0B5EA8;
}

/* KEYFRAMES */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}