/*============================================================================
  Renew J Software Solution Pvt. Ltd.
  Global Premium Polish — glossy, smooth, fully integrated
  Loaded on EVERY public page via includes/header.php
  Matches index.html premium look across all PHP pages
============================================================================*/

:root {
  --jss-theme: var(--primary);
  --jss-theme-2: var(--secondary);
  --jss-theme-grad: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--gold) 100%);
  --jss-dark: var(--primary-dark);
  --jss-dark-2: #07142B;
  --jss-footer: var(--primary-dark);
  --jss-muted: var(--gray);
  --jss-border: var(--border);
  --jss-bg-soft: var(--cream);
  --jss-glow: rgba(var(--gold-rgb), 0.25);
  --jss-radius: var(--radius);
  --jss-shadow: var(--shadow);
  --jss-shadow-lg: var(--shadow-lg);
}

/*------------- Global smoothness -------------*/
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: #6a55fa;
  color: #ffffff;
}

/* Custom glossy scrollbar */
::-webkit-scrollbar {
  width: 14px !important;
  height: 14px !important;
}
::-webkit-scrollbar-track {
  background: #e2e8f0 !important;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%) !important;
  border-radius: 10px !important;
  border: 3px solid #e2e8f0 !important;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold) 0%, #C9A84E 100%) !important;
}

img {
  transition: transform 0.5s ease, opacity 0.4s ease;
}

a,
.btn,
.theme-btn,
.form-control,
.card,
.accordion-button,
.dropdown-item,
.icon,
.choose-us-item-box,
.demo-feature-box-items,
.service-card-item,
.testimonial-card,
.step-card {
  -webkit-tap-highlight-color: transparent;
}

/*------------- Buttons: glossy + shine sweep -------------*/
.theme-btn {
  background-image: linear-gradient(135deg, #6a55fa 0%, #9a6bff 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(106, 85, 250, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-position 0.5s ease;
}
.theme-btn::before {
  display: none;
}
.theme-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 1;
}
.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(106, 85, 250, 0.5);
  color: #ffffff;
}
.theme-btn:hover::after {
  left: 130%;
}
.theme-btn > * {
  position: relative;
  z-index: 2;
}

/* Outline variant used as secondary hero button */
.theme-btn.hero-btn {
  background-image: none;
  background-color: transparent;
  border: 1px solid #6a55fa;
  color: #6a55fa;
}
.theme-btn.hero-btn::after {
  display: none;
}
.theme-btn.hero-btn:hover {
  background-image: linear-gradient(135deg, #6a55fa, #9a6bff);
  background-color: #6a55fa;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(106, 85, 250, 0.5);
}
.theme-btn.hero-btn:hover img {
  filter: none;
}

/* Solid white / light variant */
.btn-light,
.theme-btn.btn-2 {
  background-image: linear-gradient(135deg, #ffffff, #f2efff);
  color: #6a55fa;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn-light:hover,
.theme-btn.btn-2:hover {
  color: #6a55fa;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

/* Outline variant */
.btn-outline-light {
  transition: all 0.35s ease;
}
.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* Primary bootstrap button -> brand gradient */
.btn-primary {
  background-image: linear-gradient(135deg, #6a55fa 0%, #9a6bff 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(106, 85, 250, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.btn-primary:hover {
  background-image: linear-gradient(135deg, #5a45f0 0%, #8a5bff 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(106, 85, 250, 0.5);
}

/*------------- Section titles -------------*/
.section-title .sub-title,
.page-banner-section .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 85, 250, 0.09);
  color: #6a55fa;
  padding: 9px 20px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: inset 0 0 0 1px rgba(106, 85, 250, 0.14);
}
.section-title .sub-title img {
  width: 18px;
  height: 18px;
}
.section-title h2.tx-title,
.section-title .sec_title {
  position: relative;
}
.section-title h2.tx-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #6a55fa, #9a6bff, #ff7ac3);
  background-size: 200% 100%;
  animation: jss-grad-slide 4s linear infinite;
}
.section-title.text-start h2.tx-title::after {
  margin: 14px 0 0;
}

@media (min-width: 992px) {
  .premium-feature-section .section-title-area .section-title {
    position: static;
  }
  .premium-feature-section .section-title-area .counter-title-item .sub-title {
    margin-left: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    white-space: nowrap;
  }
}

@keyframes jss-grad-slide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/*------------- Page banner (all inner pages) -------------*/
.page-banner-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 130px 0 90px !important;
  background-color: #171742;
  background-image: linear-gradient(135deg, #1b1b52 0%, #171742 40%, #0b0b1c 100%);
}
.page-banner-section::before,
.page-banner-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.page-banner-section::before {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(106, 85, 250, 0.55), transparent 70%);
  animation: jss-float-orb 9s ease-in-out infinite;
}
.page-banner-section::after {
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 122, 195, 0.35), transparent 70%);
  animation: jss-float-orb 11s ease-in-out infinite reverse;
}
.page-banner-section .container {
  position: relative;
  z-index: 2;
}
.page-banner-section h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  position: relative;
}
.page-banner-section p {
  font-size: 17px;
}
.page-banner-section .breadcrumb {
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 22px;
  border-radius: 40px;
  display: inline-flex;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 20px;
}
.page-banner-section .breadcrumb .breadcrumb-item,
.page-banner-section .breadcrumb a {
  color: #cfd3ff;
  text-decoration: none;
}
.page-banner-section .breadcrumb .breadcrumb-item.active {
  color: #ffffff;
}
.page-banner-section .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

@keyframes jss-float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -25px) scale(1.08); }
}

/*------------- Soft section background stripes -------------*/
section[style*="background: #fafaff;"],
section[style*="background: #fafaff"],
section[style*="background:#fafaff"] {
  position: relative;
}

/*------------- Cards: glossy lift -------------*/
.demo-feature-box-items,
.service-card-item,
.choose-us-item-box,
.testimonial-card,
.step-card,
.blog-card,
.blog-post-card,
.project-card,
.solution-card,
.technology-card,
.team-card {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
  will-change: transform;
}
.demo-feature-box-items::before,
.service-card-item::before,
.choose-us-item-box::before,
.testimonial-card::before,
.step-card::before,
.blog-card::before,
.blog-post-card::before,
.project-card::before,
.solution-card::before,
.technology-card::before,
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #6a55fa, #9a6bff, #ff7ac3);
  background-size: 200% 100%;
  animation: jss-grad-slide 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.demo-feature-box-items:hover,
.service-card-item:hover,
.choose-us-item-box:hover,
.testimonial-card:hover,
.step-card:hover,
.blog-card:hover,
.blog-post-card:hover,
.project-card:hover,
.solution-card:hover,
.technology-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(23, 23, 66, 0.14) !important;
  border-color: rgba(106, 85, 250, 0.35) !important;
}
.demo-feature-box-items:hover::before,
.service-card-item:hover::before,
.choose-us-item-box:hover::before,
.testimonial-card:hover::before,
.step-card:hover::before,
.blog-card:hover::before,
.blog-post-card:hover::before,
.project-card:hover::before,
.solution-card:hover::before,
.technology-card:hover::before,
.team-card:hover::before {
  opacity: 1;
}

/* Generic bootstrap cards used on inner pages */
.bg-white.border.rounded-4 {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.bg-white.border.rounded-4:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(23, 23, 66, 0.12);
  border-color: rgba(106, 85, 250, 0.35) !important;
}

/*------------- Feature/service image zoom -------------*/
.demo-feature-box-items .feature-image {
  overflow: hidden;
  border-radius: 14px;
}
.demo-feature-box-items .feature-image img {
  transition: transform 0.6s ease;
}
.demo-feature-box-items:hover .feature-image img {
  transform: scale(1.08);
}
.demo-feature-box-items .feature-image .hover-button {
  background: linear-gradient(135deg, rgba(23, 23, 66, 0.85), rgba(106, 85, 250, 0.75)) !important;
  backdrop-filter: blur(2px);
}

/*------------- Icons: glossy chips -------------*/
.choose-us-item-box .icon,
.service-card-item .icon,
.solution-card-item .icon,
.feature-item .icon,
.step-card .icon {
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.choose-us-item-box:hover .icon,
.service-card-item:hover .icon,
.solution-card-item:hover .icon,
.feature-item:hover .icon,
.step-card:hover .icon {
  transform: scale(1.12) rotate(-6deg);
}

/* Team avatars: glossy spin-up on hover */
.team-card .team-avatar {
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.team-card:hover .team-avatar {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 12px 26px rgba(106, 85, 250, 0.4);
}

/*------------- Contact info icon chips -------------*/
.icon-box {
  box-shadow: 0 4px 14px rgba(106, 85, 250, 0.12);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease !important;
}
.icon-box:hover {
  transform: translateY(-3px);
  background: #6a55fa !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(106, 85, 250, 0.4);
}

/*------------- Forms: glassy focus -------------*/
.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid #e6e4f5;
  padding: 12px 16px;
  font-size: 14px;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: #6a55fa;
  box-shadow: 0 0 0 4px rgba(106, 85, 250, 0.14);
}
.form-control:hover {
  border-color: #c9c3f7;
}
.form-label {
  font-weight: 600;
  color: #171742;
  font-size: 14px;
}

/*------------- Tables (directors, company info) -------------*/
.table {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--jss-shadow);
}
.table thead th {
  background: linear-gradient(135deg, #171742, #2b2b6e);
  color: #ffffff;
  font-weight: 700;
  border: none;
  letter-spacing: 0.5px;
}
.table tbody tr {
  transition: background 0.3s ease;
}
.table tbody tr:hover {
  background: rgba(106, 85, 250, 0.05);
}
.table-bordered,
.table-bordered td,
.table-bordered th {
  border-color: #efedfb;
}

/*------------- FAQ accordion polish -------------*/
.accordion-item {
  border: 1px solid #efeefb !important;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(23, 23, 66, 0.05);
  transition: box-shadow 0.35s ease;
}
.accordion-item:hover {
  box-shadow: 0 14px 34px rgba(23, 23, 66, 0.1);
}
.accordion-button {
  font-weight: 700;
  color: #171742;
  font-size: 16px;
  padding: 18px 22px;
}
.accordion-button:not(.collapsed) {
  background: rgba(106, 85, 250, 0.06);
  color: #6a55fa;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(106, 85, 250, 0.12);
  border-color: transparent;
}

/*------------- Pagination polish -------------*/
.pagination .page-link {
  border-radius: 10px;
  margin: 0 4px;
  color: #171742;
  font-weight: 600;
  border: 1px solid #efeefb;
  transition: all 0.3s ease;
  min-width: 42px;
  text-align: center;
}
.pagination .page-item.active .page-link,
.pagination .page-link:hover {
  background: linear-gradient(135deg, #6a55fa, #9a6bff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(106, 85, 250, 0.35);
  transform: translateY(-2px);
}

/*------------- Floating quick actions: glossy -------------*/
.floating-actions-container .floating-btn {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.floating-actions-container .floating-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.floating-actions-container .floating-btn:hover::after {
  left: 130%;
}
.floating-actions-container .floating-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 30px rgba(106, 85, 250, 0.4);
}

/*------------- Footer polish -------------*/
footer.company-footer-section {
  background: linear-gradient(180deg, #14142e 0%, #0b0b1c 100%) !important;
  position: relative;
}
footer.company-footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6a55fa, #9a6bff, #ff7ac3);
  background-size: 200% 100%;
  animation: jss-grad-slide 4s linear infinite;
}
footer.company-footer-section a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}
footer.company-footer-section a:hover {
  color: #9a6bff !important;
  padding-left: 4px;
}
footer.company-footer-section .bottom-links a {
  transition: all 0.3s ease;
}
footer.company-footer-section .bottom-links a:hover {
  color: #9a6bff !important;
  padding-left: 0;
  text-decoration: underline;
}

/*------------- Header: smooth logo -------------*/
.header-logo {
  transition: transform 0.35s ease;
  display: inline-block;
}
.header-logo:hover {
  transform: scale(1.03);
}

/* Sticky header: glassy premium bar */
#header-sticky.sticky {
  background: linear-gradient(135deg, rgba(23, 23, 66, 0.94), rgba(11, 11, 28, 0.97)) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(106, 85, 250, 0.3) !important;
  box-shadow: 0 10px 34px rgba(23, 23, 66, 0.4);
  transition: all 0.4s ease;
}

/* Top announcement bar: glossy gradient */
.top-bar-info {
  background: linear-gradient(90deg, #171742, #241d6b, #171742) !important;
  border-bottom: 1px solid rgba(106, 85, 250, 0.3) !important;
}

/* Menu pill hover accent */
.header-1 .menu-box-list .main-menu li a,
.main-menu li a {
  transition: color 0.3s ease;
}

/* Active current-page menu pill glow */
.header-main .main-menu ul li.active > a {
  background: linear-gradient(45deg, #6a55fa, #ff3366);
  color: #ffffff !important;
  box-shadow: 0 0 18px rgba(106, 85, 250, 0.55);
}
.header-main .main-menu ul li .submenu li.active > a {
  color: #6a55fa !important;
  font-weight: 600;
  background: rgba(106, 85, 250, 0.06);
}

/* Mobile: show only the logo image, not the company name text */
@media (max-width: 767.98px) {
  .header-logo > div { display: none !important; }
  .offcanvas__logo .header-logo > div { display: none !important; }
  .header-logo img, .offcanvas__logo img {
    max-width: 100%;
    height: auto;
    max-height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  /* Slightly enlarge mobile logo for clarity */
  .header-logo { transform: none !important; }
}

/* Site preloader showing company logo */
.site-preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6ff 100%);
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  overflow: hidden;
}
.site-preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(106,85,250,0.06), transparent 18%), radial-gradient(circle at 70% 70%, rgba(255,51,102,0.03), transparent 18%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-preloader-inner { position: relative; z-index: 2; text-align: center; transform: translateY(0); transition: transform 0.6s cubic-bezier(.2,.9,.3,1), opacity 0.45s; }
.site-preloader .preloader-logo {
  max-width: 220px;
  width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  animation: jss-preloader-pulse 1.8s ease-in-out infinite;
}
.preloader-spinner {
  width: 48px;
  height: 48px;
  margin: 14px auto 0;
  border-radius: 50%;
  border: 4px solid rgba(106,85,250,0.12);
  border-top-color: rgba(106,85,250,0.95);
  animation: jss-spin 1s linear infinite;
  box-shadow: 0 6px 20px rgba(106,85,250,0.08);
}
.site-preloader--hidden { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); }
body.preloader-active { overflow: hidden; }

@keyframes jss-preloader-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@keyframes jss-spin { to { transform: rotate(360deg); } }

/*------------- Stats / counters: glossy chips -------------*/
.counter-box .count-bg {
  box-shadow: 0 16px 44px rgba(23, 23, 66, 0.25);
  border-radius: 18px;
  overflow: hidden;
}
.counter-box .count-bg img {
  transition: transform 0.6s ease;
}
.counter-box:hover .count-bg img {
  transform: scale(1.1) rotate(2deg);
}

/*------------- Hero counter badge: always visible & fully readable -------------*/
.hero-1 .hero-content .hero-image .counter-box {
  top: 20px;
  right: 20px;
  left: auto;
  transform: rotate(12deg);
}
.hero-1 .hero-content .hero-image .counter-box .count-bg {
  width: 240px;
  height: 240px;
}
.hero-1 .hero-content .hero-image .counter-box .count-bg .content h2 {
  font-size: 60px;
  line-height: 1;
  margin: 0;
}
.hero-1 .hero-content .hero-image .counter-box .count-bg .content h3 {
  font-size: 19px;
  white-space: nowrap;
  line-height: 1.3;
  margin: 4px 0 0;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-image .counter-box .count-bg {
    width: 195px;
    height: 195px;
  }
  .hero-1 .hero-content .hero-image .counter-box .count-bg .content h2 {
    font-size: 54px;
  }
  .hero-1 .hero-content .hero-image .counter-box .count-bg .content h3 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content .hero-image .counter-box .count-bg {
    width: 170px;
    height: 170px;
  }
  .hero-1 .hero-content .hero-image .counter-box .count-bg .content h2 {
    font-size: 46px;
  }
  .hero-1 .hero-content .hero-image .counter-box .count-bg .content h3 {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content .hero-image .counter-box .count-bg {
    width: 165px;
    height: 165px;
  }
  .hero-1 .hero-content .hero-image .counter-box .count-bg .content h2 {
    font-size: 44px;
  }
  .hero-1 .hero-content .hero-image .counter-box .count-bg .content h3 {
    font-size: 14px;
  }
}

/*------------- Image frames: premium ring -------------*/
.rounded-4.shadow-lg,
.rounded-4.shadow-sm,
img.rounded-4 {
  position: relative;
}
.showcase-image img,
.about-image img {
  border: 6px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px rgba(23, 23, 66, 0.18) !important;
}

/*------------- Alerts polish -------------*/
.alert {
  border-radius: 14px;
  border: none;
  box-shadow: 0 12px 30px rgba(23, 23, 66, 0.08);
}
.alert-success {
  background: linear-gradient(135deg, #e9fff3, #d6ffe9);
  color: #0b6e3a;
}

/*=================== INNER PAGE PREMIUM POLISH ===================*/

/* Soft gradient backgrounds for content sections */
section[style*="background: #fafaff;"],
section[style*="background: #fafaff"],
section[style*="background:#fafaff"] {
  background: linear-gradient(180deg, #ffffff 0%, #f7f6ff 100%) !important;
}

/* Banner depth: soft inner fade at bottom */
.page-banner-section {
  box-shadow: inset 0 -90px 90px -90px rgba(0, 0, 0, 0.55);
}

/* Banner title: glossy gradient text */
.page-banner-section h1 {
  background: linear-gradient(90deg, #ffffff 0%, #e8e2ff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: jss-grad-slide 6s linear infinite;
}
.page-banner-section h1 * {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dark content sections: floating glow orbs */
.vision-mission,
.standards {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.vision-mission::before,
.standards::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -130px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 85, 250, 0.4), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  animation: jss-float-orb 10s ease-in-out infinite;
}
.vision-mission::after,
.standards::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 195, 0.28), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  animation: jss-float-orb 12s ease-in-out infinite reverse;
}
.vision-mission .container,
.standards .container {
  position: relative;
  z-index: 2;
}
.vision-mission .p-4.rounded-4,
.standards .p-4.rounded-4 {
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.vision-mission .p-4.rounded-4:hover,
.standards .p-4.rounded-4:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 85, 250, 0.45) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* CTA blocks: light sheen overlay */
.cta-about {
  position: relative;
  overflow: hidden;
}
.cta-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.12), transparent 40%);
  pointer-events: none;
}
.cta-about .container {
  position: relative;
  z-index: 2;
}

/* Details page headings: glossy gradient underline */
.policy-details h2,
.service-details h2,
.solution-details h2,
.project-details h2,
.blog-details h2,
.job-details h2,
.team-details h2,
.careers-intro h2 {
  position: relative;
}
.policy-details h2::after,
.service-details h2::after,
.solution-details h2::after,
.project-details h2::after,
.blog-details h2::after,
.job-details h2::after,
.team-details h2::after,
.careers-intro h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, #6a55fa, #9a6bff, #ff7ac3);
  background-size: 200% 100%;
  animation: jss-grad-slide 4s linear infinite;
}

/* Article body images + blockquote */
.blog-post-content img,
.policy-details img,
.service-details img,
.project-details img,
.solution-details img {
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(23, 23, 66, 0.14);
  margin: 12px 0;
  max-width: 100%;
  height: auto;
}
.blog-post-content blockquote,
.policy-details blockquote,
.service-details blockquote,
.project-details blockquote {
  background: linear-gradient(135deg, rgba(106, 85, 250, 0.08), rgba(255, 122, 195, 0.08));
  border-left: 4px solid #6a55fa;
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  font-style: italic;
  color: #3a3a6e;
  margin: 20px 0;
}

/* Sidebar list-group polish (service/solution details) */
.service-details .list-group-item,
.solution-details .list-group-item {
  transition: all 0.3s ease;
  border-radius: 10px !important;
  margin-bottom: 2px;
}
.service-details .list-group-item:hover,
.solution-details .list-group-item:hover {
  background: rgba(106, 85, 250, 0.07);
  padding-left: 12px !important;
  color: #6a55fa !important;
}

/* Project card image zoom + badge */
.project-card .image-box img {
  transition: transform 0.6s ease;
}
.project-card:hover .image-box img {
  transform: scale(1.08);
}
.project-card .image-box .badge {
  border-radius: 20px;
  padding: 6px 14px;
  box-shadow: 0 6px 16px rgba(106, 85, 250, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Portfolio filter buttons */
.filter-btn {
  border-radius: 40px;
  transition: all 0.35s ease;
}
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(106, 85, 250, 0.25);
}
.filter-btn.btn-outline-secondary:hover {
  background: linear-gradient(135deg, #6a55fa, #9a6bff);
  color: #ffffff !important;
  border-color: transparent;
}

/* Error / not-found block: glossy gradient number */
.error-section .display-1,
.error-section .display-3,
.error-section h1.display-1,
.error-section h1.display-3 {
  font-weight: 800;
  background: linear-gradient(135deg, #6a55fa, #ff7ac3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 24px rgba(106, 85, 250, 0.3));
}

/*=================== MATCH INDEX.HTML CARD LOOK ===================*/

/* Team cards: identical to index.html */
.team-card {
  background: #ffffff !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 30px 20px !important;
  text-align: center !important;
  box-shadow: 0 10px 40px rgba(23, 23, 66, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.team-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 18px 50px rgba(23, 23, 66, 0.16) !important;
}
.team-card .team-avatar,
.team-card .team-image-container {
  width: 90px !important;
  height: 90px !important;
  margin: 0 auto 18px !important;
  border-radius: 50% !important;
  border: none !important;
  background: linear-gradient(135deg, #6a55fa, #1c1c4b) !important;
  color: #ffffff !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 24px rgba(106, 85, 250, 0.35);
}
.team-card .team-image-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}
.team-card h4 {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #171742 !important;
  margin-bottom: 4px !important;
}
.team-card span {
  font-size: 14px !important;
  color: #6a55fa !important;
  font-weight: 600 !important;
}
.team-card p {
  font-size: 13.5px !important;
  color: #5a5a8a !important;
  line-height: 1.6 !important;
}

/* Director cards: identical to index.html */
.director-card {
  background: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  text-align: left !important;
  box-shadow: 0 8px 30px rgba(23, 23, 66, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.director-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(23, 23, 66, 0.13) !important;
}
.director-card .team-avatar {
  width: 60px !important;
  height: 60px !important;
  flex: 0 0 60px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #6a55fa, #1c1c4b) !important;
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 20px rgba(106, 85, 250, 0.3);
}
.director-card h4 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #171742 !important;
  margin: 0 !important;
}

/* Technology cards */
.tech-card {
  background: #ffffff !important;
  border: 1px solid #f1f1f1 !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(23, 23, 66, 0.13) !important;
  border-color: rgba(106, 85, 250, 0.35) !important;
}
.tech-card .tech-icon {
  transition: transform 0.4s ease, color 0.4s ease;
}
.tech-card:hover .tech-icon {
  transform: scale(1.15) rotate(-6deg);
  color: #9a6bff;
}

/* Statistics counters: glossy glass strip */
.stat-card-item {
  padding: 18px 30px;
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.stat-card-item:hover {
  transform: translateY(-5px);
  background: rgba(106, 85, 250, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}
.stat-card-item .icon-box {
  box-shadow: none !important;
}
.stat-card-item h3 {
  background: linear-gradient(90deg, #ffffff, #b9a8ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: jss-grad-slide 6s linear infinite;
}

/* Solution cards: rounded 16 + hover */
.solution-card {
  border-radius: 16px !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* Process step cards */
.step-card {
  border-radius: 16px !important;
}
.step-card .step-number {
  font-size: 44px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25);
  line-height: 1;
}

/* Blog cards polish (match index.html blog look) */
.blog-card h3 a,
.blog-post-card h3 a {
  transition: color 0.3s ease;
}
.blog-card:hover h3 a,
.blog-post-card:hover h3 a {
  color: #6a55fa !important;
}

/* Job cards polish */
.job-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(23, 23, 66, 0.12) !important;
  border-color: rgba(106, 85, 250, 0.35) !important;
}

/* Tech box polish (technologies page) */
.tech-box {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.tech-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(23, 23, 66, 0.13) !important;
  border-color: rgba(106, 85, 250, 0.35) !important;
}
.tech-box .tech-logo {
  transition: transform 0.4s ease, color 0.4s ease;
}
.tech-box:hover .tech-logo {
  transform: scale(1.15) rotate(-6deg);
  color: #9a6bff;
}

/* Step description boxes (request quote) */
.step-desc {
  transition: transform 0.3s ease, background 0.3s ease, padding-left 0.3s ease;
  border-radius: 12px;
  padding: 12px 14px;
}
.step-desc:hover {
  transform: translateX(6px);
  background: rgba(106, 85, 250, 0.05);
  padding-left: 18px;
}

/* Gallery image boxes */
.gallery-img-box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.gallery-img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(23, 23, 66, 0.15) !important;
}
.gallery-img-box img {
  transition: transform 0.6s ease;
}
.gallery-img-box:hover img {
  transform: scale(1.08);
}

/* Process flow step items */
.step-item {
  transition: transform 0.3s ease, background 0.3s ease;
  border-radius: 12px;
  padding: 10px 12px;
}
.step-item:hover {
  transform: translateX(6px);
  background: rgba(106, 85, 250, 0.04);
}

/* Sitemap links polish */
.sitemap-details ul li a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.sitemap-details ul li a:hover {
  color: #6a55fa !important;
  padding-left: 6px;
}

/*------------- Responsive refinements -------------*/

/* Marquee: never wrap, no line breaks */
.marquee-feature .feature-marquee-group {
  min-width: max-content;
}
.marquee-feature .feature-item span {
  white-space: nowrap;
}

/* Tablets */
@media (max-width: 991px) {
  .page-banner-section {
    padding: 90px 0 60px !important;
  }
  .page-banner-section h1 {
    font-size: 34px !important;
  }
  .page-banner-section p {
    font-size: 15px !important;
  }
  section[style*="padding: 100px 0;"] {
    padding: 70px 0 !important;
  }
  .hero-section {
    padding: 150px 0 80px !important;
  }
  .hero-section h1 {
    font-size: 40px !important;
  }
  .hero-section .hero-text {
    font-size: 16px !important;
    max-width: 100% !important;
  }
  .section-title h2.tx-title,
  .section-title .sec_title {
    font-size: 30px !important;
  }
  .premium-feature-section h2.tx-title,
  .premium-feature-section .sec_title {
    font-size: 30px !important;
  }
  .premium-feature-section .feature-big-text {
    font-size: 70px !important;
  }
  .premium-feature-section .counter-title-item h2 {
    font-size: 38px !important;
  }
  .about-intro h2,
  .core-values h2,
  .cta-about h3,
  .standards h2,
  .quote-form-section h3,
  .contact-details-section h3,
  .service-details h2,
  .solution-details h2,
  .project-details h2,
  .blog-details h2,
  .policy-details h2,
  .team-details h2,
  .careers-intro h2 {
    font-size: 28px !important;
  }
}

/* Small tablets / large phones */
@media (max-width: 767px) {
  .page-banner-section h1 {
    font-size: 30px !important;
  }
  .hero-section {
    padding: 130px 0 60px !important;
  }
  .hero-section h1 {
    font-size: 30px !important;
  }
  .hero-section .hero-text {
    font-size: 15px !important;
  }
  .section-title h2.tx-title,
  .section-title .sec_title {
    font-size: 25px !important;
  }
  .premium-feature-section h2.tx-title,
  .premium-feature-section .sec_title {
    font-size: 25px !important;
  }
  .premium-feature-section .feature-big-text {
    font-size: 48px !important;
    letter-spacing: 2px !important;
  }
  .premium-feature-section .counter-title-item h2 {
    font-size: 32px !important;
  }
  .about-intro h2,
  .core-values h2,
  .cta-about h3,
  .standards h2,
  .quote-form-section h3,
  .contact-details-section h3,
  .service-details h2,
  .solution-details h2,
  .project-details h2,
  .blog-details h2,
  .policy-details h2,
  .team-details h2,
  .careers-intro h2 {
    font-size: 24px !important;
  }
  .about-intro p,
  .core-values p,
  .policy-details p,
  .service-details p,
  .blog-details p,
  .project-details p {
    font-size: 15px !important;
  }
  .stat-card-item {
    padding: 12px 16px;
  }
  .stat-card-item h3 {
    font-size: 26px !important;
  }
}

/* Phones */
@media (max-width: 575px) {
  .page-banner-section {
    padding: 70px 0 50px !important;
  }
  .page-banner-section h1 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }
  .hero-section {
    padding: 110px 0 50px !important;
  }
  .hero-section h1 {
    font-size: 24px !important;
    margin-bottom: 14px !important;
  }
  .hero-section .hero-text {
    font-size: 14px !important;
    margin-bottom: 24px !important;
  }
  .hero-section .hero-button-item {
    flex-direction: column;
    align-items: stretch;
    gap: 12px !important;
  }
  .hero-section .hero-button-item .theme-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-1 .hero-content .hero-image .counter-box {
    top: 15px;
    bottom: auto;
    right: 15px;
    left: auto;
    transform: rotate(12deg);
  }
  .section-title h2.tx-title,
  .section-title .sec_title {
    font-size: 22px !important;
  }
  .premium-feature-section h2.tx-title,
  .premium-feature-section .sec_title {
    font-size: 22px !important;
  }
  .premium-feature-section .feature-big-text {
    font-size: 34px !important;
  }
  .premium-feature-section .counter-title-item {
    flex-direction: column;
    gap: 10px !important;
  }
  .premium-feature-section .counter-title-item h2 {
    font-size: 30px !important;
  }
  .about-intro h2,
  .core-values h2,
  .cta-about h3,
  .standards h2,
  .quote-form-section h3,
  .contact-details-section h3,
  .service-details h2,
  .solution-details h2,
  .project-details h2,
  .blog-details h2,
  .policy-details h2,
  .team-details h2,
  .careers-intro h2 {
    font-size: 21px !important;
  }
  .theme-btn {
    height: 48px;
    line-height: 48px;
    padding: 0 20px;
    font-size: 13px;
  }
  .team-card {
    padding: 24px 16px !important;
  }
  .team-card .team-avatar,
  .team-card .team-image-container {
    width: 76px !important;
    height: 76px !important;
    font-size: 24px !important;
  }
  .stat-card-item h3 {
    font-size: 22px !important;
  }
  .stat-card-item p {
    font-size: 12px !important;
  }
  .feature-big-text {
    font-size: 40px !important;
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Inner page heading polish */
.about-intro h2,
.core-values h2,
.cta-about h3,
.standards h2,
.quote-form-section h3,
.contact-details-section h3,
.service-details h2,
.solution-details h2,
.project-details h2,
.blog-details h2,
.policy-details h2,
.team-details h2,
.careers-intro h2,
.sitemap-details h4,
.faq-details h3,
.tech-stack-details h3 {
  position: relative;
  color: #171742;
}

/* Generic inner-page content sections */
.about-intro,
.core-values,
.quote-form-section,
.contact-details-section,
.services-grid,
.solutions-grid,
.portfolio-grid,
.blog-grid,
.team-details,
.faq-details,
.sitemap-details,
.tech-stack-details,
.careers-intro {
  position: relative;
}

/* Dark section glow orbs */
.cta-about {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.12), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.cta-about .container {
  position: relative;
  z-index: 1;
}

/* Breadcrumb pill in banner */
.page-banner-section .breadcrumb {
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 22px;
  border-radius: 40px;
  display: inline-flex;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 20px;
}

/* Sidebar cards gradient CTA */
.sidebar-cta-card {
  background: linear-gradient(135deg, #6a55fa, #171742) !important;
  box-shadow: 0 10px 30px rgba(106, 85, 250, 0.15) !important;
}

/* Category heading underline polish */
.category-block h3 {
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #6a55fa !important;
}
.category-block h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6a55fa, #9a6bff, #ff7ac3);
  background-size: 200% 100%;
  animation: jss-grad-slide 4s linear infinite;
}

/* Blog post card hover lift */
.blog-post-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(23, 23, 66, 0.12) !important;
  border-color: rgba(106, 85, 250, 0.35) !important;
}

/* Solution card hover (solutions.php) */
.solution-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(23, 23, 66, 0.13) !important;
  border-color: rgba(106, 85, 250, 0.35) !important;
}
.solution-card:hover .icon-box {
  transform: scale(1.12) rotate(-6deg);
  background: #6a55fa !important;
  color: #ffffff !important;
}

/* Service card hover (services.php) */
.service-card-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.service-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(23, 23, 66, 0.13) !important;
  border-color: rgba(106, 85, 250, 0.35) !important;
}
.service-card-item:hover .icon-box {
  transform: scale(1.12) rotate(-6deg);
  background: #6a55fa !important;
  color: #ffffff !important;
}

/* Project card hover (projects.php) */
.project-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(23, 23, 66, 0.14) !important;
  border-color: rgba(106, 85, 250, 0.35) !important;
}

/* Testimonial card polish */
.testimonial-card {
  border-radius: 20px !important;
}

/* Accordion polish for inner pages */
.accordion-item {
  border-radius: 14px !important;
  overflow: hidden;
}

/* List group items in sidebar */
.list-group-item {
  transition: all 0.3s ease;
}
.list-group-item:hover {
  color: #6a55fa !important;
  padding-left: 12px;
}

/* Badge polish */
.badge {
  border-radius: 20px;
  font-weight: 600;
}

/* Alert polish */
.alert {
  border-radius: 14px !important;
  border: none !important;
  box-shadow: 0 12px 30px rgba(23, 23, 66, 0.08) !important;
}

/* Position sticky application form */
.position-sticky {
  transition: box-shadow 0.3s ease;
}
.position-sticky:hover {
  box-shadow: 0 18px 50px rgba(23, 23, 66, 0.12) !important;
}

/* Table in about page */
.about-intro .table td {
  border: none;
  border-bottom: 1px solid #f1f1f1;
}
.about-intro .table tr:last-child td {
  border-bottom: none;
}

/* Map iframe container */
.contact-details-section iframe {
  border-radius: 14px !important;
  box-shadow: 0 10px 30px rgba(23, 23, 66, 0.08) !important;
}

/* Error section polish */
.error-section h1 {
  font-weight: 900;
  background: linear-gradient(135deg, #6a55fa, #ff7ac3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 24px rgba(106, 85, 250, 0.3));
}

/* Form file input polish */
input[type="file"].form-control {
  padding: 10px 16px;
  background: #ffffff;
}

/* Select dropdown arrow */
.form-select {
  cursor: pointer;
}

/* Text white-50 improvements on dark backgrounds */
.text-white-50 {
  opacity: 0.85;
}

/*====================================================================
  Logo & Icon Glossy Glide (final polish)
====================================================================*/
@keyframes jss-shine {
  0%, 55% { left: -130%; }
  100% { left: 145%; }
}
@keyframes jss-float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Technology logo chips: glossy + gliding shine */
.tech-card .tech-icon,
.tech-box .tech-logo {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(106, 85, 250, 0.14), rgba(255, 122, 195, 0.18));
  border: 1px solid rgba(106, 85, 250, 0.18);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.6), 0 10px 24px rgba(106, 85, 250, 0.16);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, color 0.4s ease;
  will-change: transform;
}
.tech-card .tech-icon::after,
.tech-box .tech-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-22deg);
  animation: jss-shine 3.6s ease-in-out infinite;
}
.tech-card:hover .tech-icon,
.tech-box:hover .tech-logo {
  border-color: rgba(154, 107, 255, 0.55);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.6), 0 16px 34px rgba(106, 85, 250, 0.28);
}

/* Generic icon chips: glossy + gliding shine */
.service-card-item .icon-box,
.technology-card .icon-box,
.member-card-item .icon-box,
.core-feature .icon-box,
.feature-item .icon-box,
.step-card .icon-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(106, 85, 250, 0.12), rgba(255, 122, 195, 0.16)) !important;
  border: 1px solid rgba(106, 85, 250, 0.18);
}
.service-card-item .icon-box::after,
.technology-card .icon-box::after,
.member-card-item .icon-box::after,
.core-feature .icon-box::after,
.feature-item .icon-box::after,
.step-card .icon-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-22deg);
  animation: jss-shine 4.2s ease-in-out infinite;
}

/* Header logo: soft glow + periodic gliding shine */
.header-logo {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.header-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-22deg);
  animation: jss-shine 5s ease-in-out infinite;
}
.header-logo:hover {
  box-shadow: 0 0 18px rgba(106, 85, 250, 0.35);
}

/* Section title icons: gentle gliding float */
.section-title .sub-title img,
.page-banner-section .sub-title img {
  animation: jss-float-soft 4s ease-in-out infinite;
}

/* Mobile: keep full "Renew J Software Solution Pvt. Ltd." visible and unclipped */
@media (max-width: 575px) {
  .header-logo div span:first-child {
    font-size: 16px !important;
  }
  .header-logo div span:last-child {
    font-size: 7px !important;
    letter-spacing: 0.5px !important;
  }
}

/*============================================================================
  Renew J Software Solution — Spacing and Border Visibility Refinements
  Ensures content containers have side space on mobile and cards have
  well-defined, premium borders on both desktop and mobile views.
============================================================================*/

/* 1. Ensure left and right side spaces on mobile view for better view of text and borders */
@media (max-width: 767.98px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .row > [class*="col-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* 2. Make all layout borders and card borders distinct and visible (desktop and mobile) */
.border,
.accordion-item,
.card,
.demo-feature-box-items,
.project-card,
.service-card-item,
.blog-card,
.testimonial-card,
.director-card,
.tech-card,
.choose-us-item-box,
.tech-box,
.job-card,
.step-card {
  border: 1px solid rgba(106, 85, 250, 0.18) !important;
}

/* Header navigation and buttons spacing optimization for desktop views */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .header-main .main-menu ul li {
    margin-inline-end: 2px !important;
  }
  .header-main .main-menu ul li a {
    padding: 8px 10px !important;
    font-size: 14px !important;
  }
  .header-right {
    gap: 6px !important;
  }
  .header-right .theme-btn {
    padding: 5px 10px !important;
    font-size: 12px !important;
    height: 34px !important;
  }
}




/* ===== Image Optimization & Card Uniformity ===== */
img {
    max-width: 100%;
    height: auto;
}
.object-fit-cover {
    object-fit: cover;
}
.project-card,
.demo-feature-box-items,
.solution-card,
.blog-card,
.blog-post-card,
.service-card-item {
    overflow: hidden;
}
.project-card:hover .image-box img,
.demo-feature-box-items:hover .feature-image img,
.solution-card:hover .position-relative img,
.blog-card:hover .blog-image-box img,
.blog-post-card:hover .position-relative img {
    transform: scale(1.06);
}
.projects-scroll-slider .swiper-slide {
    height: auto;
}
.projects-scroll-slider .project-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.projects-scroll-slider .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(106,85,250,0.25);
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
}
.projects-scroll-slider .swiper-button-prev,
.projects-scroll-slider .swiper-button-next {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}
.projects-scroll-slider .swiper-button-prev::after,
.projects-scroll-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}
.blog-image-box img,
.blog-post-card img,
.demo-feature-box-items img,
.solution-card img,
.project-card img {
    will-change: transform;
}

/* ===== Responsive Smoothness ===== */
@media (max-width: 991.98px) {
    .projects-scroll-slider .swiper-button-prev,
    .projects-scroll-slider .swiper-button-next {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .demo-feature-box-items .feature-image,
    .project-card .image-box {
        aspect-ratio: 4 / 3 !important;
    }
    .demo-feature-box-items .feature-content {
        flex-wrap: wrap;
    }
    .demo-feature-box-items .feature-content .button {
        margin-top: 8px;
        margin-left: 0 !important;
    }
}

/*============================================================================
  Premium Futuristic Polish & 3D CSS enhancements for all pages
============================================================================*/

body, p, span, li, a {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}
h1, h2, h3, h4, h5, h6, .logo, .nav-menu a {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600;
}

/* 3D Glassmorphic Cards & Elevate Animations */
.course-card, 
.stat-card, 
.gallery-item, 
.news-card,
.about-image-wrapper,
.card,
.dashboard-stats .stat-card {
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative;
    overflow: hidden;
    border-radius: 18px !important;
    border: 1px solid rgba(var(--gold-rgb), 0.12) !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.05) !important;
}

/* Glowing Neon Text accent & badges */
.hero h1, .section-title h2 {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 60%, #1a73e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold, .btn-primary, .theme-btn {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.btn-gold:hover, .btn-primary:hover, .theme-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 34px rgba(26, 115, 232, 0.4) !important;
}

/* Header Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Float animations for background circles */
.page-header-section::before, 
.page-header-section::after {
    animation: orb-float 8s ease-in-out infinite alternate;
}

@keyframes orb-float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(10deg); }
}

/*============================================================================
  Premium Admin Dashboard Futuristic Styling Polish
============================================================================*/



/* Admin Top Header Glass */
.top-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

/* Dashboard Stat Cards - Premium Glow Effect */
.dashboard-stats .stat-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.35s ease !important;
}

.dashboard-stats .stat-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(26, 115, 232, 0.3) !important;
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.15), 0 0 20px rgba(26, 115, 232, 0.08) !important;
}

/* Modern Data Tables */
.table {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #f0effc !important;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #061124 100%) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 14px 18px !important;
    border: none !important;
}

.table tbody tr {
    transition: background-color 0.3s ease !important;
}

.table tbody tr:hover {
    background-color: rgba(26, 115, 232, 0.06) !important;
}

/* Glassy form controls on focus */
.form-control:focus, .form-select:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
    border-color: #1a73e8 !important;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15) !important;
}

/*============================================================================
  Royal Aesthetic Contrast & 3D Shimmer Effects Overrides
============================================================================*/

/* 1. Global Contrast and Text Readability Upgrades */
body, 
p, 
span:not(.badge):not(.bell-badge):not(.nav-badge), 
li:not(.nav-item), 
.card p, 
.card span, 
.feature-card p, 
.course-card p, 
.table td, 
td, 
th {
    color: #000000 !important; /* Premium Dark Navy Charcoal for high visibility */
    font-weight: 500;
}

/* Ensure headings have distinct premium dark color */
h1, h2, h3, h4, h5, h6, .card-title, .section-header h2 {
    color: #000000 !important;
    letter-spacing: -0.5px;
}

/* High Contrast Slate for small details and subtitle descriptors */
small, 
.text-muted, 
p.text-muted, 
span.text-muted,
.student-course,
.course-duration {
    color: #000000 !important; 
    font-weight: 500;
}

/* Dynamic Overrides for Dark backgrounds, footers, CTAs and sliders */
.bg-dark p, .bg-dark span, .bg-dark li, .bg-dark a,
.hero.has-slider p, .hero.has-slider span, .hero.has-slider h1, .hero.has-slider h1 span,
.cta-section p, .cta-section span, .cta-section h2, .cta-section h2 span,
.footer p, .footer span, .footer li, .footer a, .footer-col ul li a, .footer-bottom p, .footer-bottom a {
    color: #f0f4f8 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Light Sidebar Navigation */
.sidebar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    border-right: 1px solid #e2e8f0 !important;
    color: #1e293b !important;
}

.sidebar .sidebar-header h2 {
    color: #0f172a !important;
}

.sidebar .nav-item, .sidebar .dropdown-btn {
    color: #1e293b !important;
}

.sidebar .nav-item span, .sidebar .dropdown-btn span {
    color: #1e293b !important;
}

.sidebar .nav-item i, .sidebar .dropdown-btn i:first-child {
    color: #0055ff !important;
}

.sidebar .nav-item:hover, .sidebar .dropdown-btn:hover {
    background: rgba(0, 85, 255, 0.08) !important;
    color: #0055ff !important;
    border: 1px solid rgba(0, 85, 255, 0.25) !important;
}

.sidebar .nav-item:hover span, .sidebar .dropdown-btn:hover span {
    color: #0055ff !important;
}

.sidebar .nav-item.active, .sidebar .dropdown-content a.active {
    background: linear-gradient(135deg, #0055ff 0%, #0044cc 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.45) !important;
}

.sidebar .nav-item.active span, .sidebar .dropdown-content a.active span,
.sidebar .nav-item.active i, .sidebar .dropdown-content a.active i {
    color: #ffffff !important;
}

.sidebar .nav-item.logout, .sidebar .nav-item.logout span, .sidebar .nav-item.logout i {
    color: #dc2626 !important;
}

/* 2. Header Logo 3D Shimmer Effect */
.logo {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.logo::after {
    content: "";
    position: absolute;
    top: -50%; left: -60%;
    width: 40%; height: 200%;
    background: linear-gradient(to right, transparent, rgba(214, 181, 108, 0.45), transparent);
    transform: rotate(30deg);
    animation: logo-shimmer-sweep 6s infinite linear;
    pointer-events: none;
    z-index: 10;
}

@keyframes logo-shimmer-sweep {
    0% { left: -60%; }
    25% { left: 140%; }
    100% { left: 140%; }
}

/* 3. Card Outer Lighting Border Glow */
.course-card, 
.stat-card, 
.gallery-item, 
.news-card, 
.feature-card, 
.card,
.dashboard-stats .stat-card {
    border: 1px solid rgba(26, 115, 232, 0.1) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.course-card:hover, 
.stat-card:hover, 
.gallery-item:hover, 
.news-card:hover, 
.feature-card:hover, 
.card:hover,
.dashboard-stats .stat-card:hover {
    border-color: rgba(26, 115, 232, 0.3) !important;
    box-shadow: 0 0 25px rgba(26, 115, 232, 0.12) !important;
}

/* ==========================================================================
   Icon Styling (Clean, No 3D)
   ========================================================================== */
.fas, .fab, .far, .fa-solid, .fa-brands, .fa-regular {
    transition: transform 0.3s ease !important;
    display: inline-block;
}

/* Smooth icon hover */
a:hover .fas, a:hover .fab, a:hover .far,
button:hover .fas, button:hover .fab,
.card:hover .fas, .card:hover .fab,
.course-card:hover .fas, .feature-card:hover .fas,
.stat-card:hover .fas {
    transform: scale(1.1) !important;
}

/* ==========================================================================
   Ultra-Premium Card Formats (Clean Glow Effects)
   ========================================================================== */
.course-card, 
.stat-card, 
.gallery-item, 
.news-card,
.feature-card,
.card,
.dashboard-stats .stat-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(26, 115, 232, 0.12) !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.06) !important;
    transition: all 0.35s ease !important;
}

.course-card:hover, 
.stat-card:hover, 
.gallery-item:hover, 
.news-card:hover, 
.feature-card:hover, 
.card:hover, 
.dashboard-stats .stat-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(26, 115, 232, 0.3) !important;
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.12), 0 0 20px rgba(26, 115, 232, 0.06) !important;
}

/* ==========================================================================
   Perfect Text Alignment & Layout Polish
   ========================================================================== */
.section-header, .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2, .section-title h2 {
    font-size: 38px !important;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

/* Clean text alignment across features & details */
.feature-card p, .course-card p, .news-card p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7 !important;
}

/* ==========================================================================
   Unified Footer Styling & Color Consistency
   ========================================================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #061124 100%) !important;
    color: #ffffff !important;
    position: relative !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Header Back Button */
.back-btn {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 50% !important;
    color: #0055ff !important;
    font-size: 16px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.12), 0 2px 5px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

.back-btn:hover {
    background: #0055ff !important;
    border-color: #0055ff !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.35) !important;
}

.back-btn i {
    color: #0055ff !important;
    transition: all 0.25s ease !important;
}

.back-btn:hover i {
    color: #ffffff !important;
}

/* ==========================================================================
   NOTIFICATION DROPDOWN & BELL (HIGH CONTRAST & 3D ELEVATION)
   ========================================================================== */
.notification-bell {
    position: relative !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 50% !important;
    color: #0055ff !important;
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.12), 0 2px 5px rgba(0,0,0,0.04) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 17px !important;
}

.notification-bell:hover {
    background: #0055ff !important;
    border-color: #0055ff !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.35) !important;
}

.notification-bell:hover i {
    color: #ffffff !important;
}

.notification-bell .bell-badge, .notification-bell .badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 50px !important;
    min-width: 19px !important;
    height: 19px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.5) !important;
    border: 2px solid #ffffff !important;
    line-height: 1 !important;
}

.notification-dropdown {
    position: absolute !important;
    top: 70px !important;
    right: 25px !important;
    width: 340px !important;
    max-width: 90vw !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 15px rgba(0, 85, 255, 0.15) !important;
    border: 1px solid #e2e8f0 !important;
    display: none;
    z-index: 999999 !important;
    overflow: hidden !important;
    animation: notifSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.notification-dropdown.show {
    display: block !important;
}

.notification-dropdown .notification-header {
    padding: 14px 18px !important;
    background: linear-gradient(135deg, #0055ff 0%, #003ecc 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.notification-dropdown .notification-header span,
.notification-dropdown .notification-header i {
    color: #ffffff !important;
}

.notification-dropdown .notification-item {
    padding: 12px 16px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    background: #ffffff !important;
    cursor: pointer !important;
}

.notification-dropdown .notification-item:hover {
    background: #f0f7ff !important;
}

.notification-dropdown .notif-title {
    font-weight: 600 !important;
    color: #0f172a !important;
    font-size: 13px !important;
}

.notification-dropdown .notif-sub {
    color: #64748b !important;
    font-size: 11px !important;
}

.notification-dropdown .notif-count {
    background: #ef4444 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 3px 8px !important;
    border-radius: 50px !important;
}

.notification-dropdown .view-all {
    display: block !important;
    text-align: center !important;
    padding: 11px 16px !important;
    background: #f8fafc !important;
    color: #0055ff !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    text-decoration: none !important;
    border-top: 1px solid #e2e8f0 !important;
}

.notification-dropdown .view-all:hover {
    background: #0055ff !important;
    color: #ffffff !important;
}
