/* Container Style */
.cname-hover-card {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 12px;
  background: #ffffff;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Blue Glow Background */
.cname-hover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #0a84ff, #0066ff);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Shine Sweep Effect */
.cname-hover-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-25deg);
}

/* Text above layers */
.cname-hover-card span {
  position: relative;
  z-index: 1;
}

/* Hover Effects */
.cname-hover-card:hover {
  transform: translateY(-6px) scale(1.02);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.35);
}

/* Activate Blue Background */
.cname-hover-card:hover::before {
  opacity: 1;
}

/* Animate Shine */
.cname-hover-card:hover::after {
  animation: cname-shine 0.9s ease forwards;
}

@keyframes cname-shine {
  100% {
    left: 125%;
  }
}
/* Container */
.cname-img-hover {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  display: inline-block;
}

/* Image */
.cname-img-hover img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Blue Overlay */
.cname-img-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.8), rgba(0, 170, 255, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Content (text/button if any) */
.cname-img-hover .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Hover Effects */
.cname-img-hover:hover img {
  transform: scale(1.1);
}

.cname-img-hover:hover::before {
  opacity: 1;
}

.cname-img-hover:hover .content {
  transform: translateY(0);
  opacity: 1;
}
/* Hero Banner Container */
.rnr-hero-elite {
  position: relative;
  padding: 100px 40px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* Subtle animated gradient glow */
.rnr-hero-elite::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: radial-gradient(circle at 30% 40%, rgba(99,102,241,0.35), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(56,189,248,0.25), transparent 45%);
  animation: rnrGlowMove 8s ease-in-out infinite alternate;
  z-index: 0;
}

/* Hero Banner with Premium Border Effect */
.rnr-hero-border-classic {
  position: relative;
  padding: 100px 40px;
  border-radius: 26px;
  background: #ffffff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Elegant animated border */
.rnr-hero-border-classic::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1.5px; /* border thickness */

  background: linear-gradient(
    120deg,
    #d4af37,
    #f5e6a8,
    #d4af37,
    #c0c0c0,
    #d4af37
  );

  background-size: 300% 300%;
  animation: rnrBorderFlow 6s linear infinite;

  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: 1;
}

/* Strong visible glass effect */
.rnr-glass-hero {
  background: rgba(255, 255, 255, 0.25); /* stronger so it's visible */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
/* Class Name: .glass-element */
.glass-element {
  /* --- PRE-HOVER: Classy Glass Design --- */
  background: rgba(255, 255, 255, 0.05); /* Very light transparency */
  backdrop-filter: blur(10px);           /* The frosted glass effect */
  -webkit-backdrop-filter: blur(10px);
  
  /* A thin, "light-catching" border */
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* A soft inner glow to make it look 3D */
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 
              0 8px 32px 0 rgba(0, 0, 0, 0.2);
              
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- THE BLUE HOVER EFFECT --- */
.glass-element:hover {
  /* Tints the glass blue */
  background: rgba(0, 120, 255, 0.15);
  
  /* Increases the blur and lifts the element */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(-8px);
  
  /* Blue glowing border and shadow */
  border: 1px solid rgba(0, 120, 255, 0.4);
  box-shadow: 0 15px 30px rgba(0, 120, 255, 0.3), 
              0 0 15px rgba(0, 120, 255, 0.1);
}

/* Blog List */

.theme-blog-container-column .theme-blog-container {
 padding:15px;
 margin-block-end: 15px;
}
.theme-blog-container-column .theme-blog-container .theme-blog-part.theme-blog-post-header-area.theme-blog-heading-space {
 margin-block-end:0px;   
}
.theme-blog-container-column .theme-blog-container .theme-blog-part.theme-blog-post-header-area .theme-blog-heading {
    font-size: 28px;
    max-width: 92%;
    overflow: hidden;
    height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;   
}
.theme-blog-container-column .theme-blog-container .theme-blog-cover-img-container, 
.theme-blog-container-column .theme-blog-container .theme-blog-part.theme-blog-post-content, 
.theme-blog-container-column .theme-blog-container .theme-blog-part.theme-blog-post-footer-area {
 display:none;   
}
.zscustom-story-box {
 min-height:400px;
 padding:2em;
}

/* Sidebar menu */
.zscustom-sidebar-section {
  display:none;  
}
@media (min-width:992px) {
.zscustom-sidebar-section {
 display:block;
 position:relative;
}
.zscustom-sidebar .zplink-list-container {
 position:fixed;
 top:55%;
 transform:translateY(-40%);
 z-index:2;
}

.zscustom-sidebar .zplink-list-container .zplink-list {
 width:100%;
 flex:1 0 100%;
 padding-block-start:0px;
 padding-block-end:0px;
}
.zscustom-sidebar .zplink-element-container.zplink-type-vertical .zplink-list-container>.zplink-list:first-child {
  padding-block-end:0px;  
}
.zscustom-sidebar .zplink-list-container .zplink-list .zplink-text{
background:#ffffff;
color:#10233F;
border-block-end:1px solid rgba(11,77,162,.14);
border-inline-start:3px solid transparent;
width:100%;
padding-inline-start:20px;
padding-block-start:10px;
padding-block-end:10px;

}
.zscustom-sidebar .zplink-list-container .zplink-list:hover .zplink-text{
 background:#EAF3FF;
 color:#0B4DA2;
 border-inline-start:3px solid #0B4DA2;
}
}

.audit-card{
    position: relative;
    background: #fff;
    border: 2px solid #7FAEEB;   /* Strong visible blue */
    border-radius: 24px;
    box-sizing: border-box;
    overflow: hidden;

    transition: border-color .25s ease, box-shadow .25s ease;
}

.audit-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:#0B4DA2;
    border-radius:24px 0 0 24px;
}

.audit-card:hover{
    border-color:#0B4DA2;
    box-shadow:
        0 8px 20px rgba(11,77,162,.12);
}
.zscustom-footer {
 position:relative;
 z-index:3
}

.service-card{
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 6px solid #c89b3c;
    border-radius: 8px;
    padding: 45px 30px;
    overflow: visible;

    /* Gold glow ALWAYS visible */
    box-shadow:
        0 0 0 1px rgba(200,155,60,.08),
        0 8px 25px rgba(0,0,0,.06);

    transition: all .35s ease;
}

/* Gold line glow */
.service-card::before{
    content:"";
    position:absolute;
    top:-6px;
    left:0;
    width:100%;
    height:8px;
    background:linear-gradient(
        to bottom,
        rgba(200,155,60,.45),
        rgba(200,155,60,0)
    );
    border-radius:8px 8px 0 0;
    pointer-events:none;
}

/* Top Dot */
.service-card .top-dot{
    position:absolute;
    top:-10px;
    left:50%;
    transform:translateX(-50%);
    width:14px;
    height:14px;
    background:#c89b3c;
    border:3px solid #fff;
    border-radius:50%;
    box-shadow:0 0 10px rgba(200,155,60,.35);
    transition:.35s;
}

/* Hover */
.service-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 0 0 1px rgba(200,155,60,.18),
        0 20px 45px rgba(0,0,0,.12);
}

.service-card:hover .top-dot{
    transform:translateX(-50%) scale(1.15);
    box-shadow:0 0 20px rgba(200,155,60,.55);
}
.zcb-revise img {
 width:50px !important;
 height:50px !important;
}


@media only screen and (max-width: 1140px) {
    .zscustom-row-about-story .zpcol-md-8 {
        width: 60%;
    }
    .zscustom-row-about-story .zpcol-md-4 {
        width: 40%;
    }
}
@media only screen and (max-width: 991px) {
    .zscustom-row-about-story .zpcol-md-8 {
        width: 100%;
    }
    .zscustom-row-about-story .zpcol-md-4 {
        width: 100%;
    }
}