/* --- Variables & Core Constants --- */
:root {
    --primary-blue: #1a4295;
    --secondary-blue: #0d85c4;
    --accent-blue: #2db2eb;
    --light-bg: #f9fbfd;
    --border-radius: 15px;
    --transition: all 0.3s ease-in-out;
}

/* --- Animations --- */
@keyframes blinker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes scrolldown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.blink-animation {
    animation: blinker 2.5s ease-in-out infinite;
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

/* --- Header & Navigation --- */
.nav-landmark-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.landmark-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 5px 2px;
    object-fit: cover;
}

/* --- Services Section --- */
.services-four__bg { background-color: #f0f5f5 !important; }

.services-four__carousel .owl-stage,
.services-four__carousel .owl-item {
    display: flex !important;
}

.service-card-four {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-card-four__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.service-card-four__image,
.service-card-four__image__inner {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

#service-text-one, #service-text-two { color: #2c3e50 !important; }

.all-service-products-btn { padding: 10.5px 25px !important; }

/* Landing Page Product Section Text */

.product-focus-text-custom {
  margin: 12px 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2px;
  color: #400733 !important;
  text-align: left;
}

.product-focus-text-custom strong {
  color: #003b4a;
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 768px) {
  .product-focus-text-custom {
    font-size: 18px;
    line-height: 1.35;
  }
}

/* End Landing Page Product Section Text */


/* --- Highlights Section --- */
.highlights-four {
    background: linear-gradient(180deg, #1ca3e1 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.highlights-card {
    position: relative;
    background-color: var(--primary-blue);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.highlights-card:hover {
    transform: translateY(-10px);
    background-color: #163a84;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlights-card__icon-box {
    position: relative;
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    display: inline-flex;
    transition: all 500ms ease;
}

.highlights-card__icon-shape {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px; height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: all 500ms ease;
}

.highlights-card:hover .highlights-card__icon-shape { transform: translate(-50%, -50%) scale(1.2); }
.highlights-card:hover .highlights-card__icon-box { transform: scale(1.1); color: var(--accent-blue); }

.highlights-card__title { font-size: 18px; font-weight: 600; margin: 0; }
.highlights-card__title a { color: #fff; text-decoration: none; }

.highlights-card__arrow {
    margin-top: 20px;
    color: #fff;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 500ms ease;
}

.highlights-card:hover .highlights-card__arrow { opacity: 1; transform: translateX(0); }

.highlights-four__bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    animation: floatImage 10s infinite linear;
}

/* --- News & Events --- */
.news-events-section { background-color: var(--light-bg); }

.news-card-big {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.news-card-big:hover { transform: translateY(-5px); }
.news-card-big__image img { width: 100%; height: 350px; object-fit: cover; }
.news-card-big__content { padding: 30px; }
.news-card-big__title { font-size: 24px; font-weight: 800; margin-bottom: 15px; }
.news-card-big__title a { color: #1a1a1a; text-decoration: none; }
.news-card-big__text { color: #666; line-height: 1.7; font-size: 15px; }
.news-card-big__read-more { color: var(--primary-blue); font-weight: 700; text-decoration: none; }

.news-list-card {
    display: flex;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-list-card__image { width: 150px; flex-shrink: 0; }
.news-list-card__image img { width: 100%; height: 100%; object-fit: cover; }
.news-list-card__content { padding: 15px 20px; }
.news-list-card__tag {
    background: #eef2ff;
    color: var(--primary-blue);
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* --- Vertical Tabs --- */
.vertical-tabs {
    position: absolute;
    left: 70px; top: 135px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vertical-tabs .tab-btn {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 12px 8px;
    background-color: #f7f7f7;
    color: #333;
    cursor: pointer;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-tabs .tab-btn.active-btn {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* --- Blog Scroll --- */
.blog-scroll-wrapper {
    height: 520px;
    overflow: hidden;
    position: relative;
}

.blog-scroll {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: scrolldown 100s linear infinite;
    will-change: transform;
}

.blog-scroll-wrapper:hover .blog-scroll { animation-play-state: paused; }
.blog-card-two:not(.blog-card-two--grid) .blog-card-two__image__inner img {
    height: 280px;
    object-fit: cover;
  }

/* --- Responsive Queries --- */

/* Tablets */
@media (max-width: 991.98px) {
    .landmark-img { width: 60px; height: 60px; }
    
    .vertical-tabs {
        position: relative;
        inset: auto;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .vertical-tabs .tab-btn {
        writing-mode: horizontal-tb;
        transform: none;
    }
    
    .vertical-tabs .tab-btn .tab-btn__icon { transform: none; margin: 0 8px 0 0; }
}

/* Mobile */
@media (max-width: 575.98px) {
    .landmark-img { width: 50px; height: 50px; }
    .nav-landmark-container { margin-top: 10px; }
    
    .news-list-card { flex-direction: column; }
    .news-list-card__image { width: 100%; height: 200px; }
    
    .news-card-big__image img { height: 250px; }
    
    .highlights-four { padding: 60px 0; }
}




/*--------------------------------------------------------------
# Financial Highlights Right Side Wrapper
--------------------------------------------------------------*/
.financial-side {
  position: relative;
  min-height: 520px;
}

/*--------------------------------------------------------------
# Quote
--------------------------------------------------------------*/
.financial-quote {
  position: relative;
  z-index: 5;

  font-size: 42px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.2;

  max-width: 420px;

  margin-left: auto;
  text-align: left;

  padding-top: 26px;

  /* Gradient Text */
  background: linear-gradient(
    90deg,
    #1c6aa9 0%,
    #59aad9 25%,
    #c1d3e9 55%,
    #f5f5f5 80%,
    #ffffff 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  display: inline-block;
}
/*--------------------------------------------------------------
# Bottom Image
--------------------------------------------------------------*/
.skill-selling__image {
  position: absolute;

  right: 40px;
  bottom: -72px;

  z-index: 2;

  pointer-events: none;
}

/* Main Image */
.skill-selling__image__one {
  width: 100%;
  max-width: 420px;
  height: auto;

  border-radius: 20px;

  position: relative;
  z-index: 2;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Shape */
.skill-selling__image__shape {
  position: absolute;

  left: -60px;
  top: 50%;

  transform: translateY(-50%);

  max-width: 120px;

  z-index: 1;

  animation: float-bob-y 3s linear infinite;
}

/*--------------------------------------------------------------
# Laptop
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .financial-side {
    min-height: 480px;
  }

  .skill-selling__image {
    right: 0;
    bottom: -40px;
  }

  .skill-selling__image__one {
    max-width: 570px;
  }

  .financial-quote {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .financial-side {
    min-height: auto;
    text-align: center;
    margin-top: 40px;
  }

  .financial-quote {
    max-width: 100%;
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
  }

  .skill-selling__image {
    position: relative;

    right: auto;
    bottom: auto;

    display: flex;
    justify-content: center;

    margin-top: 20px;
  }

  .skill-selling__image__one {
    max-width: 340px;
  }

  .skill-selling__image__shape {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .financial-quote {
    font-size: 18px;
    line-height: 1.6;
  }

  .skill-selling__image__one {
    max-width: 210px;
    border-radius: 16px;
  }
}

/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/
@media (max-width: 480px) {
  .financial-quote {
    font-size: 16px;
  }

  .skill-selling__image__one {
    max-width: 180px;
  }
}



/* page Header separator liniar gradient */
.linier-separator {
  width: 160px;
  height: 4px;
  border-radius: 2px; /* Sharper corners look more "corporate" than round pills */
  margin-bottom: 4px;
  
  /* Corporate Palette: Brand Blue, Silver-White, and Sky Blue */
  background: linear-gradient(
    90deg, 
    #0365d3 0%,      /* Primary Brand Color */
    #e0e6ed 45%,     /* Professional Silver/Grey-White */
    #6fa8dc 55%,     /* Light Professional Blue */
    #0365d3 100%     /* Return to Brand Color */
  );
  
  background-size: 200% 100%;
  
  /* Subtle, controlled glow - looks like a screen or glass edge */
  box-shadow: 0 2px 10px rgba(3, 101, 211, 0.3);
  
  /* Smooth "sweeping" animation */
  animation: corporate-sweep 3s infinite ease-in-out;
}

@keyframes corporate-sweep {
  0% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -100% 0%;
  }
}

.about-four__textc {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
  font-size: 1rem;
  padding-top: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #2c3e50 !important;
}





/* --- Chairman Message Page --- */
/* .chairman-page-header .page-header__bg {
} */

.chairman-msg-section {
  background-color: #f8fafc;
  padding: 60px 0;
}

.chairman-card-wrapper {
  background: #ffffff;
  border-radius: 16px;
  border-bottom: 4px solid #2563eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 50px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.chairman-left-col {
  flex: 1 1 280px;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

@keyframes chairman-border-glow {
  0% {
    border-color: #2563eb;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.12);
  }
  33% {
    border-color: #3b82f6;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.18);
  }
  66% {
    border-color: #60a5fa;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.22);
  }
  100% {
    border-color: #2563eb;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.12);
  }
}

@keyframes spin-ring {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.chairman-avatar-box {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  padding: 8px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.chairman-avatar-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(
    from 0deg,
    rgba(37, 99, 235, 0.25),
    rgba(59, 130, 246, 0.1),
    rgba(59, 130, 246, 0.25),
    rgba(37, 99, 235, 0.1),
    rgba(37, 99, 235, 0.25)
  );
  mask: radial-gradient(circle at center, transparent 74px, black 0);
  -webkit-mask: radial-gradient(circle at center, transparent 74px, black 0);
  animation: spin-ring 4s linear infinite;
  z-index: 0;
}

.chairman-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
}

.chairman-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chairman-name {
  font-size: 22px;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: inherit;
}

.chairman-title {
  font-size: 14px;
  color: #3b82f6;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.chairman-line {
  width: 45px;
  height: 2px;
  background-color: #3b82f6;
  margin: 0 auto;
}

.profile-view-section {
  background-color: #f8fafc;
  padding: 70px 0;
}

.profile-view-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.profile-view-panel {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}

.profile-view-image {
  width: 300px;
  min-width: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  background: #f1f5f9;
}

.profile-view-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-view-meta {
  flex: 1;
}

.profile-view-meta h3 {
  font-size: 34px;
  color: #1e3a8a;
  font-weight: 800;
  margin-bottom: 10px;
}

.profile-view-meta .designation {
  font-size: 15px;
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.profile-view-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.profile-view-badge {
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.profile-view-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.profile-view-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
}

.profile-view-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  font-size: 14px;
}

.profile-view-content h2 {
  font-size: 30px;
  color: #1e293b;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
}

.profile-view-text {
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
}

.profile-view-text p {
  margin-bottom: 20px;
}

.profile-quote-section {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.12),
    rgba(14, 165, 233, 0.05)
  );
  border-left: 5px solid #2563eb;
  border-radius: 18px;
}

@media (max-width: 991.98px) {
  .profile-view-panel {
    flex-direction: column;
  }

  .profile-view-image {
    width: 100%;
    min-width: auto;
  }

  .profile-view-info {
    grid-template-columns: 1fr;
  }
}

.chairman-right-col {
  flex: 2 1 500px;
}

.message-heading {
  font-size: 32px;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 15px;
}

.message-heading span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #3b82f6;
}

.message-body {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.8;
  text-align: justify;
  margin-top: 25px;
}

.message-body p {
  margin-bottom: 20px;
}

.quote-section {
  margin-top: 35px;
  text-align: center;
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 15px 25px;
  border-radius: 4px;
}

.quote-text {
  font-size: 15px;
  color: #1e40af;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

.chairman-pdf-section {
  background-color: #fafafa;
  padding: 60px 0;
}

.related-doc-heading {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  color: #1e3a8a;
}

.pdf-list ul {
  padding-left: 0;
}

.pdf-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #fff;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  border: 1px solid #e2e8f0;
}

.pdf-item-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdf-item-icon {
  color: #ef4444;
  font-size: 20px;
}

.pdf-item-link {
  color: #334155;
  font-weight: 500;
  text-decoration: none;
}

.pdf-icons {
  display: flex;
  gap: 15px;
}

.pdf-action-link {
  color: #64748b;
}

@media (max-width: 991.98px) {
  .chairman-card-wrapper {
    flex-direction: column;
  }

  .chairman-right-col {
    flex: 1 1 100%;
  }
}

/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .financial-side {
    min-height: auto;
    text-align: center;
    margin-top: 40px;
  }

  .financial-quote {
    max-width: 100%;
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
  }

  .skill-selling__image {
    position: relative;

    right: auto;
    bottom: auto;

    display: flex;
    justify-content: center;

    margin-top: 20px;
  }

  .skill-selling__image__one {
    max-width: 340px;
  }

  .skill-selling__image__shape {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .financial-quote {
    font-size: 18px;
    line-height: 1.6;
  }

  .skill-selling__image__one {
    max-width: 210px;
    border-radius: 16px;
  }
}

/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/
@media (max-width: 480px) {
  .financial-quote {
    font-size: 16px;
  }

  .skill-selling__image__one {
    max-width: 180px;
  }
}


/* page Header separator liniar gradient */
.linier-separator {
  width: 160px;
  height: 4px;
  border-radius: 2px; /* Sharper corners look more "corporate" than round pills */
  margin-bottom: 4px;

  /* Corporate Palette: Brand Blue, Silver-White, and Sky Blue */
  background: linear-gradient(
    90deg,
    #0365d3 0%,
    /* Primary Brand Color */ #e0e6ed 45%,
    /* Professional Silver/Grey-White */ #6fa8dc 55%,
    /* Light Professional Blue */ #0365d3 100% /* Return to Brand Color */
  );

  background-size: 200% 100%;

  /* Subtle, controlled glow - looks like a screen or glass edge */
  box-shadow: 0 2px 10px rgba(3, 101, 211, 0.3);

  /* Smooth "sweeping" animation */
  animation: corporate-sweep 3s infinite ease-in-out;
}

@keyframes corporate-sweep {
  0% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -100% 0%;
  }
}

.about-four__textc {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
  font-size: 1rem;
  padding-top: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #2c3e50 !important;
}




.chairman-avatar-box1 {
  width: 330px;
  height: 380px;
  padding: 8px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.chairman-avatar-box1::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;
  background: conic-gradient(
    from 0deg,
    rgba(37, 99, 235, 0.25),
    rgba(59, 130, 246, 0.1),
    rgba(59, 130, 246, 0.25),
    rgba(37, 99, 235, 0.1),
    rgba(37, 99, 235, 0.25)
  );
  border-radius: 12px; /* ✅ gives smooth rounded edges */
  animation: spin-ring 4s linear infinite;
  z-index: 0;
}

.chairman-avatar-inner1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px; /* ✅ matches outer radius */
}

.chairman-avatar-inner1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chairman-name1 {
  text-align: center;
  font-size: 22px;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: inherit;
}

.chairman-title1 {
  text-align: center;
  font-size: 14px;
  color: #3b82f6;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 15px;
}

/* Animation keyframes */
@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





.chairman-avatar-box1 {
  width: 330px;
  height: 380px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chairman-avatar-box1::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: conic-gradient(
    from 0deg,
    rgba(37, 99, 235, 0.4),
    rgba(59, 130, 246, 0.1),
    rgba(59, 130, 246, 0.4),
    rgba(37, 99, 235, 0.1),
    rgba(37, 99, 235, 0.4)
  );
  animation: spin-ring 6s linear infinite;
  z-index: 0;
}

.chairman-avatar-inner1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3); /* glow effect */
}

.chairman-avatar-inner1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- Product Details Page --- */
.product-details-page {
  --pd-teal-start: #2dc685;
  --pd-teal-end: #2cb9a4;
  --pd-teal-accent: #009c9d;
  --pd-teal-soft: rgba(44, 194, 134, 0.12);
  --pd-gradient: linear-gradient(180deg, var(--pd-teal-start) 0%, var(--pd-teal-end) 100%);
  --pd-gradient-reverse: linear-gradient(180deg, var(--pd-teal-end) 0%, var(--pd-teal-start) 100%);
  --pd-img-radius: 14px;
  --pd-round-size: 200px;
  overflow-x: hidden;
}

/* Feature icon images (not CKFinder content) */
.product-details-page__img,
.product-details-page .content-section .card > .row > .col-md-3 img,
.product-details-page .left_half_img img {
  border-radius: var(--pd-img-radius);
  object-fit: cover;
}

/* CKFinder / editor content images — float left with rounded corners */
.product-details-page__richtext {
  overflow: hidden;
  line-height: 1.8;
  color: #4a5568;
  text-align: justify;
}

.product-details-page__richtext::after {
  content: "";
  display: table;
  clear: both;
}

.product-details-page__richtext img {
  float: left !important;
  width: 500px !important;
  max-width: min(500px, 48%) !important;
  height: 300px !important;
  margin: 0 32px 20px 0 !important;
  border-radius: 12px !important;
  object-fit: cover !important;
  box-shadow: 0 6px 20px rgba(15, 54, 103, 0.12);
}

.product-details-page__richtext p {
  margin-bottom: 1rem;
}

/* Slider: centered content, no float */
.product-details-page__richtext--center {
  text-align: center;
}

.product-details-page__richtext--center img {
  float: none !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 280px !important;
  margin: 0 auto 16px !important;
  display: block;
}

/* Cards / grids: smaller floated images */
.product-details-page .card_details_p.product-details-page__richtext img,
.product-details-page .card-body.product-details-page__richtext img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  max-height: 200px !important;
  float: none !important;
  margin: 0 0 12px 0 !important;
}

.product-details-page__img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 16px rgba(15, 54, 103, 0.1);
}

/* .product-details-page .page-header__bg {
  background-image: url("/assets/images/backgrounds/page-header-bg.png");
} */

.product-details-page .hignlight {
  color: var(--pd-teal-start);
  font-weight: 600;
}

.product-details-page__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--insuba-black5, #0f3667);
  margin-bottom: 0;
  line-height: 1.4;
}

.product-details-page p + br,
.product-details-page p + br + br {
  display: none;
}

.product-details-page__slider-section {
  margin-top: 30px;
  padding-bottom: 20px;
}

.product-details-page__slide-content {
  background: var(--pd-teal-accent);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  min-height: 200px;
}

.product-details-page__slide-content .text {
  color: #fff;
}

/* Slider thumbnail nav — override carousel absolute positioning */
.product-details-page__thumbnail-wrap {
  position: relative;
  width: 100%;
  padding: 1.5rem 0 0;
}

.product-details-page .product-details-page__thumbnail-list.thumbnail {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem 1.5rem;
  width: 100%;
  max-width: 100%;
  padding: 0 12px;
  margin: 0;
}

.product-details-page .product-details-page__thumbnail-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  max-width: 140px;
  text-align: center;
}

.product-details-page__round-nav {
  margin-top: 2rem;
  padding-bottom: 2.5rem;
}

.product-details-page .round_shape {
  width: var(--pd-round-size);
  height: var(--pd-round-size);
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(15, 54, 103, 0.1);
  transition: var(--transition);
  list-style: none;
}

.product-details-page .round_shape:hover,
.product-details-page .product-details-page__thumbnail-list li.active .round_shape {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(45, 198, 133, 0.3);
}

.product-details-page .round_shape a.center_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--pd-round-size) - 24px);
  height: calc(var(--pd-round-size) - 24px);
  border-radius: 50%;
  overflow: hidden;
  background: #f0faf6;
}

.product-details-page__round-img,
.product-details-page .round_shape img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: none;
  box-shadow: none;
}

.product-details-page .product-details-page__thumbnail-list li.active .product-details-page__round-img {
  border: 3px solid var(--pd-teal-start);
  transform: scale(1.05);
}

.product-details-page .round_shape_title {
  display: block;
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--insuba-black5, #0f3667);
  background: rgba(45, 198, 133, 0.1);
  border-radius: 20px;
  max-width: 130px;
  word-wrap: break-word;
  hyphens: auto;
}

.product-details-page .product-details-page__thumbnail-list li.active .round_shape_title {
  background: var(--pd-gradient);
  color: #fff;
}

.product-details-page .grid-3-section,
.product-details-page .gread-4-section {
  background-image: var(--pd-gradient);
  padding: 50px 0;
}

.product-details-page .grid-3-section .card,
.product-details-page .gread-4-section .card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: var(--transition);
}

.product-details-page .grid-3-section .card:hover,
.product-details-page .gread-4-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.product-details-page .grid-3-section h2 {
  font-weight: 700;
}

.product-details-page .gread-4-section .product-details-page__section-title,
.product-details-page .gread-4-section .hignlight,
.product-details-page .grid-3-section .product-details-page__section-title {
  color: #fff;
}

.product-details-page__description {
  line-height: 1.8;
  color: #4a5568;
}

.product-details-page__grid-col {
  padding: 10px 5px;
}

.product-details-page .card-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 3px solid rgba(45, 198, 133, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-details-page .card_details_p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #4a5568;
}

.product-details-page .card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--insuba-black5, #0f3667);
}

.product-details-page .left_half1,
.product-details-page .left_half3 {
  background-image: var(--pd-gradient);
  padding: 50px 20px 50px 100px;
  color: #fff;
}

.product-details-page .left_half2,
.product-details-page .left_half4 {
  background-image: var(--pd-gradient-reverse);
  padding: 50px 100px 50px 20px;
  color: #fff;
}

.product-details-page .left_half1 h3,
.product-details-page .left_half2 h3,
.product-details-page .left_half3 h3,
.product-details-page .left_half4 h3 {
  color: #fff;
}

.product-details-page .left_half_img {
  padding: 10px 10px 10px 100px;
}

.product-details-page .left_half_img img {
  border-radius: var(--pd-img-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 320px;
  width: auto;
  max-width: 100%;
}

.product-details-page .content-section .card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.product-details-page .content-section .card img {
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  height: auto;
}

.product-details-page .accordion-button {
  background-image: var(--pd-gradient);
  padding: 15px;
  color: #fff;
  font-weight: 600;
  border: none;
  box-shadow: none;
}

.product-details-page .accordion-button:not(.collapsed) {
  color: #fff;
  background-image: var(--pd-gradient-reverse);
}

.product-details-page .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(45, 198, 133, 0.35);
}

.product-details-page .accordion-body {
  background-color: var(--pd-teal-soft);
  padding: 1.25rem 1.5rem;
  line-height: 1.7;
}

.product-details-page__pdf-section {
  padding: 2rem 0 3rem;
}

.product-details-page__pdf-iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-details-page__pdf-download {
  margin-top: 1rem;
}

.product-details-page__accordion-section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.product-details-page__slide-content {
  font-size: 0.95rem;
}

.product-details-page .half-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

/* --- Product details: tablet --- */
@media (max-width: 991px) {
  .product-details-page {
    --pd-round-size: 150px;
  }

  .product-details-page .left_half1,
  .product-details-page .left_half2,
  .product-details-page .left_half3,
  .product-details-page .left_half4,
  .product-details-page .left_half_img {
    padding: 36px 20px;
  }

  .product-details-page .grid-3-section,
  .product-details-page .gread-4-section {
    padding: 40px 0;
  }

  .product-details-page__section-title {
    font-size: 1.35rem;
  }
}

/* --- Product details: mobile --- */
@media (max-width: 767px) {
  .product-details-page {
    --pd-round-size: 100px;
    --pd-img-radius: 12px;
  }

  .product-details-page__slider-section {
    margin-top: 16px;
    padding-bottom: 10px;
  }

  .product-details-page__slide-content {
    padding: 1.25rem 1rem;
    min-height: 140px;
    font-size: 0.875rem;
  }

  .product-details-page__round-nav {
    margin-top: 1rem;
    padding-bottom: 1.5rem;
  }

  .product-details-page .product-details-page__thumbnail-list.thumbnail {
    gap: 0.75rem 1rem;
  }

  .product-details-page .product-details-page__thumbnail-list li {
    max-width: 100px;
  }

  .product-details-page .round_shape {
    padding: 8px;
  }

  .product-details-page .round_shape a.center_img {
    width: calc(var(--pd-round-size) - 16px);
    height: calc(var(--pd-round-size) - 16px);
  }

  .product-details-page .round_shape_title {
    font-size: 0.7rem;
    padding: 4px 8px;
    max-width: 95px;
    margin-top: 6px;
    line-height: 1.25;
  }

  .product-details-page .card-img {
    width: 90px;
    height: 90px;
  }

  .product-details-page .grid-3-section,
  .product-details-page .gread-4-section {
    padding: 32px 0;
  }

  .product-details-page .gread-4-section .card,
  .product-details-page .grid-3-section .card {
    margin-bottom: 12px;
  }

  .product-details-page__section-title {
    font-size: 1.15rem;
  }

  .product-details-page .half-grid h3 {
    font-size: 1.1rem;
  }

  .product-details-page__accordion-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .product-details-page .accordion-button {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .product-details-page .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .product-details-page__pdf-iframe {
    height: 320px;
  }

  .product-details-page .page-header__title {
    font-size: 1.5rem;
  }

  .product-details-page__richtext img {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 260px !important;
    margin: 0 0 16px 0 !important;
  }
}

@media (max-width: 575px) {
  .product-details-page {
    --pd-round-size: 84px;
  }

  .product-details-page .product-details-page__thumbnail-list li {
    max-width: 88px;
  }

  .product-details-page .round_shape_title {
    font-size: 0.65rem;
    max-width: 82px;
  }
}




/* ===============================
   Professional Branch Card
================================= */

.branch-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    border: 1px solid rgba(3,101,211,.08);
    transition: all .35s ease;
    position: relative;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0,0,0,.14);
}

.branch-card__image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.branch-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.branch-card:hover .branch-card__image img {
    transform: scale(1.08);
}

.branch-card__content {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.branch-card__title {
    margin-bottom: 10px;
    text-align: center;
}

.branch-card__title a {
    font-size: 20px;
    font-weight: 700;
    color: var(--insuba-black4);
    line-height: 1.4;
    transition: .3s;
}

.branch-card__title a:hover {
    color: var(--insuba-base);
}

.branch-card__person {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--insuba-base);
    margin-bottom: 10px;
}

.branch-card__description {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.branch-card__info {
    border-top: 1px solid #edf2f7;
    padding-top: 18px;
    margin-top: auto;
}

.branch-card__info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.branch-card__info i {
    color: var(--insuba-base);
    min-width: 18px;
    margin-top: 4px;
}

.branch-card__info a {
    color: #555;
    word-break: break-word;
}

.branch-card__info a:hover {
    color: var(--insuba-base);
}

.branch-card__btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    background: var(--insuba-base);
    color: #fff !important;
    border-radius: 20px;
    font-weight: 600;
    transition: all .35s ease;
}

.branch-card__btn span {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-card__btn:hover {
    background: var(--insuba-black4);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .branch-card__image {
        height: 240px;
    }

    .branch-card__title a {
        font-size: 18px;
    }
}
/* Branch card end*/




@media (min-width: 1200px) {
  /* remove plus icon */
  .main-header--four .main-menu .main-menu__list > li.megamenu > a::after,
  .main-header--four .main-menu .main-menu__list > li.dropdown > a::after {
    display: none !important;
    content: none !important;
  }

  .main-header--four .main-menu .main-menu__list > li.megamenu > a,
  .main-header--four .main-menu .main-menu__list > li.dropdown > a {
    padding-right: 0 !important;
  }

  /* remove hover dots/squares */
  .main-header--four .main-menu .main-menu__list__square {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .main-header--four .main-menu .main-menu__list > li.megamenu > a::after,
  .main-header--four .main-menu .main-menu__list > li.dropdown > a::after {
    content: ">";
    display: block;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-header--four .main-menu .main-menu__list > li.megamenu > a,
  .main-header--four .main-menu .main-menu__list > li.dropdown > a {
    padding-right: 12px;
  }

  .main-header--four .main-menu .main-menu__list__square {
    display: none !important;
  }
}

/* nav style overrite for remove plus and 3dot icon*/
@media (min-width: 1200px) {
  /* remove plus icon */
  .main-header--four .main-menu .main-menu__list > li.megamenu > a::after,
  .main-header--four .main-menu .main-menu__list > li.dropdown > a::after {
    display: none !important;
    content: none !important;
  }

  .main-header--four .main-menu .main-menu__list > li.megamenu > a,
  .main-header--four .main-menu .main-menu__list > li.dropdown > a {
    padding-right: 0 !important;
  }

  /* remove hover dots/squares */
  .main-header--four .main-menu .main-menu__list__square {
    display: none !important;
  }
}

/* nav style overrite for remove plus and 3dot icon*/


  /* Prevent horizontal page scroll from long inline header content on small screens */
        html,
        body {
            overflow-x: hidden;
        }

        .topbar__inner {
            flex-wrap: wrap;
            row-gap: 8px;
        }

        .topbar__info,
        .topbar__info li {
            min-width: 0;
        }

        .topbar__info li a {
            overflow-wrap: anywhere;
            word-break: break-word;
        }

    /* Commented by Mehedee*/
        .main-header__inner,
        .container-fluid,
        .row {
            max-width: 100%;
        }

    
        .main-header__inner,
        .container-fluid
        {
            max-width: 100%;
            height: 72px !important;
        }

        .row {
            max-width: 100%;
        }

        /* Decorative shapes can exceed viewport on some breakpoints */
        .blog-one,
        .newsletter,
        .contact-map {
            overflow-x: clip;
        }

        /* Header menu balance: keep logo + menu aligned on one row and avoid crowding */
        @media (min-width: 1200px) {
            .main-header--four .container-fluid {
                padding-left: 8px;
                padding-right: 8px;
            }

            .main-header--four .main-header__inner {
                display: flex;
                align-items: center;
            }

            .main-header--four .main-header__logo {
                flex: 0 0 auto;
                margin-right: 8px;
            }

            .main-header--four .main-header__right {
                flex: 1 1 auto;
                min-width: 0;
                display: flex;
                align-items: center;
            }

            .main-header--four .main-header__nav {
                flex: 1 1 auto;
                min-width: 0;
                padding-left: 0;
                padding-right: 0;
                margin-left: 0;
                margin-right: 0;
            }

            .main-header--four .main-menu__list {
                display: flex;
                align-items: center;
                flex-wrap: nowrap;
                justify-content: center;
                gap: 8px;
            }

            .main-header--four .main-menu__list > li + li {
                margin-left: 0;
            }

            .main-header--four .main-menu__list>li {
                margin: 0;
            }

            .main-header--four .main-menu__list>li>a {
                font-size: 14px;
                white-space: nowrap;
                padding-left: 2px;
                padding-right: 2px;
            }

            .main-header--four .main-header__btn {
                flex: 0 0 auto;
                white-space: nowrap;
                margin-left: 10px;
                padding: 10px 16px;
                font-size: 13px;
            }

            .main-header--four .main-header__btn .insuba-btn__icon-box {
                margin-left: 8px;
            }

            .main-header--four .nav-landmark-container {
                flex: 0 0 auto;
                margin-left: auto !important;
                margin-right: 0 !important;
            }
        }

        @media (min-width: 1200px) and (max-width: 1279.98px) {
            .main-header--four .nav-landmark-container {
                display: none !important;
            }

            .main-header--four .main-menu__list {
                justify-content: flex-start;
            }
        }
        
        
        
        
        
            .popup-image-modal {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(201, 200, 200, 0.70);
                /*background: rgba(0, 0, 0, 0.85);*/
                z-index: 99999;
                justify-content: center;
                align-items: center;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .popup-image-modal.show {
                display: flex;
                opacity: 1;
            }

            .popup-image-modal__content {
                position: relative;
                max-width: 100%;
                max-height: 100vh;
                /*max-width: 90%;*/
                /*max-height: 70vh;*/
            }

            .popup-image-modal__close {
                position: absolute;
                top: -15px;
                right: -15px;
                width: 40px;
                height: 40px;
                background: #0365d3;
                color: #fff;
                border: none;
                border-radius: 50%;
                font-size: 24px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                z-index: 10;
            }

            .popup-image-modal__close:hover {
                background: #0f3564;
                transform: rotate(90deg);
            }

            .popup-image-modal__image {
                max-width: 100%;
                max-height: 85vh;
                /*max-height: 65vh;*/
                border-radius: 20px;
                object-fit: contain;
            }
            
            
            
/* ==========================================================================
   Online Insurance Payment Module Styles Setup
   ========================================================================== */

.payment-ui-card {
  border-radius: var(--border-radius, 15px) !important;
  overflow: hidden;
  background-color: #ffffff;
}

.payment-ui-header {
  background-color: var(--insuba-base, #0365d3) !important;
  padding: 25px 35px !important;
  border-bottom: 0 none;
}

.payment-ui-title {
  font-family: var(--insuba-heading-font, "Poppins", sans-serif);
  font-size: 24px;
  font-weight: 600;
  color: #ffffff !important;
}

.payment-ui-subtitle {
  font-family: var(--insuba-font, "Roboto", sans-serif);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8) !important;
}

.payment-ui-body {
  padding: 40px 45px !important;
}

@media (max-width: 575px) {
  .payment-ui-body {
    padding: 25px 20px !important;
  }
}

/* Form Fields Context Blocks */
.payment-ui-label {
  font-family: var(--insuba-heading-font, "Poppins", sans-serif);
  font-weight: 600 !important;
  font-size: 14px;
  color: #19232b !important; /* matches dark color palette options */
  margin-bottom: 8px;
}

.payment-ui-input {
  border-radius: 8px !important;
  border: 1px solid #ced4da !important;
  padding: 12px 18px !important;
  font-family: var(--insuba-font, "Roboto", sans-serif);
  font-size: 15px;
  color: var(--insuba-text, #636363);
  background-color: #ffffff;
  height: auto !important;
  transition: var(--transition, all 0.3s ease-in-out);
}

.payment-ui-input:focus {
  border-color: var(--insuba-base, #0365d3) !important;
  box-shadow: 0 0 0 4px rgba(3, 101, 211, 0.15) !important;
  color: #122f2a;
  outline: 0;
}

select.payment-ui-input {
  min-height: 49px;
}

.payment-ui-currency {
  background-color: #f1f6f7 !important;
  border: 1px solid #ced4da !important;
  border-right: 0 none !important;
  border-radius: 8px 0 0 8px !important;
  color: var(--insuba-base, #0365d3);
  font-weight: 600;
  padding: 0 16px;
}

.payment-ui-currency + .payment-ui-input {
  border-radius: 0 8px 8px 0 !important;
}

/* Informational / Notice Dynamic Box */
.payment-ui-notice {
  display: flex;
  align-items: flex-start;
  background-color: var(--insuba-white3, #f1f6f7);
  border-left: 4px solid var(--insuba-base, #0365d3);
  padding: 8px 10px;
  border-radius: 4px 8px 8px 4px;
  width: 100%;
}

.payment-ui-notice-icon {
  color: var(--insuba-base, #0365d3);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
}

.payment-ui-notice-text strong {
  display: block;
  font-family: var(--insuba-heading-font, "Poppins", sans-serif);
  font-size: 14px;
  color: #19232b;
  margin-bottom: 2px;
}

.payment-ui-notice-text p {
  font-family: var(--insuba-font, "Roboto", sans-serif);
  font-size: 13px;
  line-height: 1.5;
  color: var(--insuba-text, #636363);
}

/* Action Operations & Buttons Alignment */
.payment-ui-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  border-top: 1px solid #e9ecef;
}

.payment-ui-btn-cancel {
  display: inline-block;
  font-family: var(--insuba-font, "Roboto", sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--insuba-text, #636363);
  background-color: transparent;
  padding: 10px 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition, all 0.3s ease-in-out);
}

.payment-ui-btn-cancel:hover {
  color: #19232b;
  background-color: var(--insuba-white3, #f1f6f7);
}


/* Event Card Design====================== */
.blog-card__image__inner img {
    max-height: 240px;
    max-width: 540px;
    width: auto;
    height: auto;
    object-fit: cover;
}


/* Fixed card height */
.blog-card {
    height: 490px !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Fixed image size */
.blog-card__image {
    flex-shrink: 0;
}

.blog-card__image__inner img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Flexible content area */
.blog-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow: hidden;
}

/* Title with line clamp */
.blog-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Description with line clamp */
.blog-card__text {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 30px;
    padding-top:50px !important;
}

/* Button stays at bottom */
.blog-card__link {
    margin-top: auto;
}



/*Annual Report======================*/

.pdf-document-section {
  background-color: #f8fafc;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* বিবরণী টেক্সট */
.card-description-text {
  font-size: 16px;
  color: var(--insuba-text, #636363);
  line-height: 1.8;
}

/* মূল কার্ড স্টাইল */
.insuba-thumbnail-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(3, 101, 211, 0.06);
  box-shadow: 0 10px 30px rgba(0, 46, 91, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* কার্ড হোভার ইফেক্ট */
.insuba-thumbnail-card:hover {
  transform: translateY(-8px);
  border-color: var(--insuba-base, #0365d3);
  box-shadow: 0 15px 35px rgba(3, 101, 211, 0.12);
}

/* থাম্বনেইল ইমেজ কন্টেইনার */
.pdf-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 200px; /* থাম্বনেইলের ফিক্সড হাইট */
  background-color: #f1f5f9;
  overflow: hidden;
}

.pdf-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ইমেজ পারফেক্টলি ফিট করার জন্য */
  transition: transform 0.5s ease;
}

/* হোভার করলে ইমেজ হালকা জুম হবে */
.insuba-thumbnail-card:hover .pdf-thumb-wrapper img {
  transform: scale(1.06);
}

/* ডেট ব্যাজ (Date Badge) - ৩ নম্বর ইমেজের মতো বামে পজিশন করা */
/* ডেট ব্যাজ - ছবি অনুযায়ী কাস্টমাইজড (Blue background, inline-block width) */
.pdf-date-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--insuba-base, #0365d3); /* ব্যাকগ্রাউন্ড ব্লু */
  color: #ffffff;
  padding: 6px 15px; /* ইমেজের মতো পারফেক্ট প্যাডিং */
  font-size: 13px;
  font-weight: 600;
  border-top-right-radius: 4px; /* শুধু ওপরের ডান কোণ রাউন্ড */
  z-index: 2;
  box-shadow: 2px -2px 8px rgba(0, 0, 0, 0.1);
  display: inline-block; /* পুরো উইডথ না নিয়ে টেক্সট অনুযায়ী জায়গা নেবে */
  width: auto; /* ফিক্সড উইডথ রিমুভ করা হয়েছে */
}

/* কার্ডের বডি (টাইটেল অংশ) */
.pdf-thumb-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pdf-thumb-title {
  font-family: var(--insuba-heading-font, "Poppins", sans-serif);
  font-size: 17px;
  font-weight: 600;
  color: #1c2d3d;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* টাইটেল বড় হলে ২ লাইনে ডট ডট দেখাবে */
  line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.insuba-thumbnail-card:hover .pdf-thumb-title {
  color: var(--insuba-base, #0365d3);
}

/* বাটন ফুটার এরিয়া */
.pdf-thumb-footer {
  display: flex;
  border-top: 1px solid #f1f5f9;
  background: #fafbfe;
  padding: 5px 0;
}

.pdf-action-link {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #5a6b7c;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

/* ভিউ বাটন আইকন ও হোভার */
.pdf-view-link i {
  color: #0365d3; /* আইকন কালার */
  background: rgba(3, 101, 211, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.pdf-view-link:hover {
  color: var(--insuba-base, #0365d3);
}

/* ডাউনলোড বাটন আইকন ও হোভার */
.pdf-download-link i {
  color: #e74c3c; /* আইকন কালার */
  background: rgba(231, 76, 60, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.pdf-download-link:hover {
  color: #e74c3c;
}

/* ডিভাইডার লাইন */
.footer-line {
  width: 1px;
  background-color: #f1f5f9;
  margin: 10px 0;
}

/* নো ডাটা মেসেজ */
.no-pdf-thumb-data {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
}

/*Annual Report======================end*/
