/* =========================
   Polani Group — Brushed Metal Black + Soft Gold Theme
   (Full replacement of your original stylesheet)
   ========================= */

:root {
  --gold: #E0C170;        /* soft modern gold */
  --gold-2: #d4af37;
  --gold-light: #F5D67A;
  --metal-dark: #0a0a0a;  /* deep matte black */
  --metal-mid: #151515;   /* mid tone for gradients */
  --metal-light: #1f1f1f; /* lighter metal for card surface */
  --text: #ececec;
  --muted: #a7a095;
  --glass: rgba(255,255,255,0.02);
   --gold-hover: #FFD966; /* slightly brighter gold for hover */
}

/* ---------------------------------
   Brushed-metal base (uniform)
   --------------------------------- */
body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  background-color: var(--metal-dark);
  /* subtle repeating stripe to simulate brushed metal */
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.01) 0%, transparent 5%),
    linear-gradient(90deg, rgba(255,255,255,0.01) 0%, transparent 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ------------------------
   Icons hover effect
   ------------------------ */
.icon img, .footer-sa .social-icon a {
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.icon img:hover, .footer-sa .social-icon a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px var(--gold-hover), 0 0 24px rgba(224,193,112,0.6);
  filter: brightness(1.2);
}
/* ---------------------------------
   Menu / Navbar
   --------------------------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.15));

  z-index: 9999999;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .35s ease, transform .35s ease;
}
.navbar.nav-scroll {
  padding: 15px 0;
  position: fixed;
  top: 0;
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(10,10,10,0.95), rgba(0,0,0,0.85));
  border-bottom: 1px solid rgba(224,193,112,0.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.navbar .logo {
  padding: 7px 15px;
  height: auto;
  width: auto;
}
.navbar .logo img {
  height: 56px;
  filter: saturate(1.1) brightness(1.05);
}

/* nav items container (keeps same structure) */
.navbar .navbar-nav {
  padding: 2px 5px;
  border: 1px solid rgba(224,193,112,0.06);
  border-radius: 30px;
  margin-left: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}
.navbar .navbar-nav .nav-link {
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: var(--text);
  transition: background .25s ease, color .25s ease;
}
.navbar .navbar-nav .nav-link.active {
  background: rgba(224,193,112,0.08);
  color: var(--gold);
}
.navbar .navbar-nav .nav-link:hover {
  background: rgba(224,193,112,0.06);
  color: var(--gold);
}

/* Topnav button */
.navbar .topnav .butn {
  padding: 7px 20px;
  background: linear-gradient(45deg, #A67C00, #D4AF37, #F5D67A); /* same as h5/text-link */
  background-size: 200% auto;
  color: #000;
  margin-right: 15px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(224,193,112,0.12);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

/* Subtle metallic shimmer overlay */
.navbar .topnav .butn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: all 0.6s ease;
}

/* Hover shimmer motion */
.navbar .topnav .butn:hover::before {
  left: 100%;
}

/* Hover: subtle lift + brighter shadow */
.navbar .topnav .butn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(224,193,112,0.25);
}


/* ---------------------------------
   Header
   --------------------------------- */
.header-sa {
  min-height: 100vh;
  padding: 40px 0;
  position: relative;
  overflow: hidden !important;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), transparent);
}

.header-sa .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background-image: url(../imgs/header/g-back.png);
  background-size: cover;
  z-index: -1;
  opacity: 0.12;
}
.header-sa .background:before {
  content: '';
  position: absolute;
  top: 0;
  left: -20vw;
  width: 70vw;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(224,193,112,0.06), transparent 45%);
  pointer-events: none;
  border-radius: 50%;
  -webkit-filter: blur(180px);
  filter: blur(180px);
  opacity: .7;
}
.header-sa .background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/header/Grid.png);
  background-size: contain;
  background-repeat: repeat;
  z-index: -1;
  pointer-events: none;
  opacity: .06;
}

.header-sa .caption h1 {
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -4px;
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.header-sa .caption .text {
  margin-top: 120px;
}

.header-sa .imgs { position: relative; }
.header-sa .imgs .cube img { position: relative; width: 120%; right: -100px; bottom: -100px; }
.header-sa .imgs .circle { position: absolute; top: 50%; left: 0; z-index: 2; }
.header-sa .imgs .circle:after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.01);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  z-index: -1;
}

/* ---------------------------------
   Services
   --------------------------------- */
/*.services-sa .item {
  background: linear-gradient(180deg, var(--metal-light), var(--metal-mid));
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(224,193,112,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.55);
}
.services-sa .item .cont { padding: 15px; }
.services-sa .item .cont .icon {
  width: 52px;
  height: 52px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(224,193,112,0.06);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(224,193,112,0.03), rgba(0,0,0,0.06));
}
.services-sa .item .cont .icon img { width: 25px; filter: brightness(1.05) saturate(0.9); }
.services-sa .item .cont .icon.invert img { filter: invert(1) brightness(0.9) saturate(1.2); }
.services-sa .item .cont .text { margin-top: 100px; margin-bottom: 20px; }
.services-sa .item .cont .text p { font-size: 14px; font-weight: 300; line-height: 22px; color: var(--muted); }*/

/* ---------------------------------
   Marquee
   --------------------------------- */
/*.marq-sa { overflow: hidden !important; }
.marq-sa .item { padding: 0 80px !important; position: relative; }
.marq-sa .item:after {
  content: '';
  width: 12px;
  height: 12px;
  background: rgba(224,193,112,0.18);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.marq-sa .item h2 {
  white-space: nowrap;
  font-size: 96px;
  line-height: 120px;
  letter-spacing: -4px;
  background: linear-gradient(90deg, var(--text), rgba(255,255,255,0.02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}*/

/* ---------------------------------
   Works / Portfolio
   --------------------------------- */

.work-card .card-item {
  margin-bottom: 100px;
  border: 1px solid rgba(224,193,112,0.08);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--metal-light), var(--metal-mid));
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.work-card .card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(224,193,112,0.12);
  border-color: rgba(224,193,112,0.25);
}

/* Card content */
.work-card .card-item .cont {
  height: 100%;
  padding: 40px 80px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: none !important; /* remove inherited hover transition */
}


/* Remove hover effect from all text inside card */

.work-card .card-item .cont h6,
.work-card .card-item .cont p {
  transition: none !important;
  transform: none !important;
  color: inherit !important;
  text-decoration: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* H5 heading default golden */
.work-card .card-item .cont h5 {
  background: linear-gradient(45deg, #A67C00, #D4AF37, #F5D67A);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 30px;
  transition: background-position 0.5s ease;
}

/* Hover: animated gradient on text only */
.work-card .card-item .cont h5:hover {
  background: linear-gradient(45deg, #E0C170, #FFD966, #F5D67A, #FFD966, #E0C170);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 2s linear infinite;
  text-shadow: 1px 1px 3px rgba(224, 193, 112, 0.5); /* optional subtle glow */
}

/* Gradient animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Social icon base circle */
.work-card .card-item .cont .tag {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--metal-light);
  border: 1px solid rgba(224,193,112,0.25);
  position: relative;
  transition: all 0.35s ease;
}

/* Icon inside circle */
.work-card .card-item .cont .tag i {
  color: #D4AF37; /* default golden */
  font-size: 18px;
  transition: all 0.35s ease;
}

/* Hover effect: soft, subtle golden glow */
.work-card .card-item .cont .tag:hover {
  box-shadow:
    0 0 6px rgba(224, 193, 112, 0.4),
    0 0 12px rgba(224, 193, 112, 0.3),
    0 0 18px rgba(224, 193, 112, 0.25);
  transform: scale(1.05);
}

/* Icon glow + brighten on hover */
.work-card .card-item .cont .tag:hover i {
  color: var(--gold-hover);
}

/* Paragraph text */
.work-card .card-item .cont p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 160px;
  color: var(--muted);
}

/* Card images */
.work-card .card-item .img {
  padding: 20px;
}

.work-card .card-item .img img {
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6), 0 0 12px rgba(224,193,112,0.06);
  transition: box-shadow .3s ease, transform .3s ease;
}

.work-card .card-item:hover .img img {
  box-shadow: 0 10px 30px rgba(224,193,112,0.12);
  transform: translateY(-4px);
}
/* Text Link - Golden Gradient Like H5 */
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 4px;
  background: linear-gradient(45deg, #A67C00, #D4AF37, #F5D67A);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s ease;
  cursor: pointer;
}

/* Underline gradient */
.text-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(45deg, #A67C00, #D4AF37, #F5D67A);
  transition: width 0.4s ease;
}

/* Hover effect: gradient shimmer + underline + arrow move */
.text-link:hover {
  background-position: right center; /* shimmer animation */
}

.text-link:hover::after {
  width: 100%;
}

/* Arrow styling */
.text-link .arrow {
  display: inline-block;
  margin-left: 6px;
  font-weight: bold;
  background: linear-gradient(45deg, #A67C00, #D4AF37, #F5D67A);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease, background-position 0.5s ease;
}

/* Hover: arrow glides right with gradient shimmer */
.text-link:hover .arrow {
  transform: translateX(6px);
  background-position: right center;
}

/* Social icons */
/* Disable hover effects for the first paragraph before cards */
.sec-head h4,
.sec-head h4 * {
    pointer-events: none;  /* disables any hover/click effects */
    color: inherit !important;
    transform: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    background: none !important;
}


/* ---------------------------------
   Clients
   --------------------------------- */
/*.clients-sa .item {
  border: 1px solid rgba(224,193,112,0.06);
  border-radius: 50%;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}
.clients-sa .item .img { width: 100px; }
.clients-sa .item .cont .icon { width: 40px; margin: 0 auto 10px; }
.clients-sa .item .cont span { font-size: 14px; line-height: 20px; color: var(--muted); }*/

/* ---------------------------------
   Testimonials
   --------------------------------- */
/*.testimonials-sa { position: relative; overflow: hidden; }
.testimonials-sa:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/testim/mesh-gradient.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: .08;
  z-index: 2;
}
.testimonials-sa .gl-rate {
  width: max-content;
  border: 1px solid rgba(224,193,112,0.06);
  border-radius: 60px;
  padding: 10px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}
.testimonials-sa .gl-rate .icon { width: 35px; }
.testimonials-sa .gl-rate .cont { padding-left: 30px; }
.testimonials-sa .gl-rate .cont h6 { line-height: 1; font-weight: 600; font-size: 18px; color: var(--text); }
.testimonials-sa .gl-rate .cont .stars { font-size: 13px; color: var(--gold); margin-left: 10px; }
.testimonials-sa .item {
  background: linear-gradient(180deg, var(--metal-light), var(--metal-mid));
  padding: 40px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid rgba(224,193,112,0.06);
}
.testimonials-sa .item .rate h5 { font-size: 16px; color: var(--text); }
.testimonials-sa .item .rate .stars { font-size: 13px; color: var(--gold); margin-left: 10px; }
.testimonials-sa .item .info .img-author { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; }
.testimonials-sa .item .info .info-text { padding-left: 15px; }
.testimonials-sa .item .info .info-text p { font-size: 14px; color: var(--muted); }*/

/* ---------------------------------
   Awards
   --------------------------------- */
/*.awards-sa .item-title {
  padding: 0 15px 25px;
  border-bottom: 1px solid rgba(224,193,112,0.06);
}
.awards-sa .item-title > div { padding: 0; }
.awards-sa .item-title h6 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: .8; color: var(--muted); }

.awards-sa .item-line {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(224,193,112,0.06);
  position: relative;
  transition: all .4s;
  z-index: 3;
}
.awards-sa .item-line:hover:after { height: 100%; }
.awards-sa .item-line:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(224,193,112,0.02);
  transition: all .4s;
  z-index: -1;
}
.awards-sa .item-line .honors h6 { font-size: 14px; color: var(--text); }
.awards-sa .item-line .project-date span { font-size: 14px; color: var(--muted); }*/

/* ---------------------------------
   Blogs
   --------------------------------- */
/*.blog-sa .item .img { height: 470px; border-radius: 15px; overflow: hidden; }
.blog-sa .item .cont .info a { font-size: 14px; color: var(--text); }
.blog-sa .item .cont .info .date { opacity: .6; margin-left: 5px; color: var(--muted); }*/

/* ---------------------------------
   Contact
   --------------------------------- */
.contact-sa .box {
  padding: 120px 60px;
  background-image: url(../imgs/gr-back.png);
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(224,193,112,0.03);
  background-blend-mode: overlay;
}
.contact-sa .info { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }

.contact-sa .contact-form label { font-size: 14px; margin-bottom: 5px; color: var(--text); }
.contact-sa .contact-form label .star { color: #ff6b6b; padding-left: 5px; }

.contact-sa .contact-form input,
.contact-sa .contact-form textarea {
  color: var(--text);
  background: transparent;
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(224,193,112,0.06);
  font-size: 18px;
}
.contact-sa .contact-form input::placeholder,
.contact-sa .contact-form textarea::placeholder { color: rgba(167,160,138,0.6); }

.contact-sa .contact-form button {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  transition: box-shadow .3s ease;
}
.contact-sa .contact-form button:hover {
  box-shadow: 0 10px 30px rgba(224,193,112,0.18);
}

/* ---------------------------------
   Footer
   --------------------------------- */
/*.footer-sa { background: linear-gradient(180deg, var(--metal-mid), var(--metal-dark)); padding: 60px 0; color: var(--text); border-top: 1px solid rgba(224,193,112,0.06); }
.footer-sa .logo { width: 160px; }
.footer-sa .logo img { width: 160px; filter: saturate(1.05) brightness(1.05); }
.footer-sa .contact-info .item { margin-bottom: 50px; color: var(--muted); }
.footer-sa .contact-info .item span { font-size: 12px; text-transform: uppercase; margin-bottom: 10px; color: var(--muted); }
.footer-sa .contact-info .social-icon a {
  width: 48px; height: 48px; line-height: 48px; text-align: center;
  border: 1px solid rgba(224,193,112,0.06); border-radius: 50%; font-size: 14px;
  color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
  transition: all .4s;
}
.footer-sa .contact-info .social-icon a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--metal-dark);
  box-shadow: 0 6px 20px rgba(224,193,112,0.16);
}
.footer-sa .sub-footer .copy p { font-size: 14px; color: var(--muted); }
.footer-sa .sub-footer .copy p a { color: var(--text); }
.footer-sa .sub-footer .links { width: 100%; }
.footer-sa .sub-footer .links a { font-size: 14px; color: var(--muted); }
.footer-sa .sub-footer .links .active { color: var(--text); }*/

/* ---------------------------------
   Common typography & utilities (preserved)
   --------------------------------- */
h1,h2,h3,h4,h5,h6 { font-weight: 400; margin: 0; color: var(--text); }
h1 { font-size: 64px; line-height: 64px; letter-spacing: -3px; }
h2 { font-size: 48px; line-height: 60px; letter-spacing: -3px; }
h3 { font-size: 40px; line-height: 52px; letter-spacing: -2px; }
h4 { font-size: 36px; line-height: 48px; letter-spacing: -2px; }
h5 { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
h6 { font-size: 24px; line-height: 32px; }
.sub-color { color: var(--gold); }
.sub-head { font-size: 20px; line-height: 28px; }
p { font-size: 16px; font-weight: 400; margin: 0; color: var(--text); }

.sec-head .sub-head { position: relative; padding-left: 25px; }
.sec-head .sub-head:after { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; position: absolute; top: 10px; left: 0; }

/* loader */
.loader-wrap svg { fill: rgba(0,0,0,0.6); }

/* button border variant */
.butn.butn-bord { border: 1px solid rgba(224,193,112,0.06); color: var(--text); background: transparent; }
.butn.butn-bord:hover { background: var(--gold); color: #000; }

/* icon invert */
.icon.invert img { filter: invert(1); }
.butn .icon { width: 18px; }
.butn:hover .icon.invert img { filter: invert(0); }

/* progress scroll button */
.progress-wrap { border-radius: 100%; padding: 6px; background: rgba(0,0,0,0.4); }
.progress-wrap .progress-circle path { stroke: var(--gold); stroke-width: 2; }

/* ======================
   Responsive
   ====================== */
@media screen and (max-width: 992px) {
  .sec-head .sub-head { margin-bottom: 30px !important; }
  .header-sa {
    padding: 180px 0 320px;
    min-height: auto;
    position: relative;
  }
  .header-sa .caption { position: relative; z-index: 4; }
  .header-sa .caption .text { margin-top: 40px; width: 80%; }
  .header-sa .imgs { position: absolute; bottom: 0; right: 0; width: 50%; transform: translateY(50%); }
  .header-sa .imgs .circle { width: 250px; top: 60%; }

  .work-card .card-item .cont { padding: 30px 40px; }
}

@media screen and (max-width: 768px) {
  .header-sa .caption h1 { font-size: 50px; line-height: 1.4; }
  .header-sa .imgs { width: 60%; transform: translateY(70%); }
  .header-sa .imgs .cube img { right: -30px; }
  .header-sa .imgs .circle { width: 200px; }
  .contact-sa .box { padding: 120px 40px; }
  .navbar .logo img { height: 48px; }
  .work-card .card-item { margin-bottom: 60px; }
}

/* End of file */
