

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000000;
  color: #f0f0f0;
   overflow-x: hidden;

}

header {
  padding: 0.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  /* align-items: center; */
  height: 60px; 
  width: auto;
  /* margin-right: 0%;
  padding-right: 0%;
   */
  
}

.logo h1 {
  /* margin-left: 0%; */
  /* padding-left: 0%;
  margin-left: 0%; */
  color: gold;
  font-size: 1.9rem;
  font-weight: 550;
  /* text-decoration:underline 2px;
  text-underline-offset: 8px  ; */
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 1.2rem;
  font-size: large;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  transform: translateZ(10px) scale(1.2);
  color: gold;
  text-decoration:underline;
  text-underline-offset: 10px  ;
}

@media (max-width: 768px) {
  nav a:hover {
    transform: none;
}
}

  

.hero {
  padding: 0.1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(45deg, black, black,#1f1f1f, #1f1f1f);
}

.hero h2 {
  font-size: 2.5rem;
  color: gold;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem 0;
}

.btn {
  background: gold;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6c200;
}

.mockup img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 30px black;
  margin-top: 2rem;
  /* margin-right: 20%; */
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #222;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.delay-3 {
  transition-delay: 0.9s;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-content {
    max-width: 50%;
  }

  .mockup {
    max-width: 40%;
  }
}

.animate-charcter
{
   text-transform: uppercase;
   text-align: center;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 50px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}



@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400');

.ux-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 100;
  padding: 80px 20px;
  width: 100%;
  min-height: 300px;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
  animation: ux-bg 10s ease-in-out infinite; /* faster background change */
  background-size: 400% 400%;
  background-image: linear-gradient(-45deg,
    #ff00cc, #3333ff, #00c9ff, #ff9900, #e100ff);
}

.ux-label {
  white-space: nowrap;
}

.ux-dropping-texts {
  position: relative;
  height: 48px;
  width: 200px;
  overflow: hidden;
  text-align: left;
  font-weight: 300;
  line-height: 48px;
}

.ux-dropping-texts > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  font-size: 0px;
  white-space: nowrap;
  animation: ux-drop 8s steps(1, end) infinite;
}

/* Time each word to its own unique part of the 8s loop */
.ux-dropping-texts > div:nth-child(1) {
  animation-delay: 0s;
}
.ux-dropping-texts > div:nth-child(2) {
  animation-delay: 2s;
}
.ux-dropping-texts > div:nth-child(3) {
  animation-delay: 4s;
}
.ux-dropping-texts > div:nth-child(4) {
  animation-delay: 6s;
}

/* Only one word shows at a time */
@keyframes ux-drop {
  0% {
    opacity: 0;
    font-size: 0px;
  }
  1% {
    opacity: 1;
    font-size: 40px;
  }
  24% {
    opacity: 1;
    font-size: 40px;
  }
  25% {
    opacity: 0;
    font-size: 0px;
  }
  100% {
    opacity: 0;
    font-size: 0px;
  }
}

/* Faster background transition */
@keyframes ux-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}






/* hhome chy khalchya text jo p made aahe  */
#shine-text {
  font-family: sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff, white, white);
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-align: justify; */
  text-justify: inter-word;
}


/* golden btn starts  */
/* Button Container */
.custom-golden-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}

/* Golden Button */
.custom-golden-btn {
  position: relative;
  font-size: 1.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #ffb948;
  border-radius: 5rem;
  background: black;
  box-shadow: 0 4px 32px #ffb30026;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  border: 3px solid transparent; /* Reserve space for border */
}

/* Optional glossy overlay */
.custom-golden-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
  border-radius: inherit;
}

/* Hover effect - no vertical movement */
.custom-golden-btn:hover {
  border-color: #ffb948;
  transform: scale(1.03); /* Slight zoom only */
  box-shadow: 0 6px 36px #ffb30066;
}

/* Optional icon styling */
.custom-golden-btn i {
  font-size: 1.2rem;
}

/* golden btn Ends  */



/* our service start */
:root {
  --gold: #fdd835;
  --gold-gradient: linear-gradient(135deg, #fdd835 0%, #ffcc00 100%);
  --dark: #0e0e0e;
  --text-dark: #111111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  
}

.service-card {
  background-color: black;
  border: 1px solid rgb(0, 0, 0);
  background: linear-gradient(130deg,#000000 87%,#ffd900d5 100%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--gold);
  box-sizing: border-box;
  border: 2px solid #212121;
  /* border: 2px solid black; */
  transition: border 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: white;
  transition: color 0.4s ease-in-out;
}

.service-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  color: white;
  transition: color 0.4s ease-in-out;
}

.service-description {
  font-size: 20px;
  font-family: poppins;
  color: #cccccc;
  line-height: 1.6;
  transition: color 0.4s ease-in-out;
}

/* 🟡 On Hover: Gradient background + text turns dark */
.service-card:hover {
  color:hsl(0, 0%, 100%) ;
  border: 2px solid var(--gold);
  /* background: linear-gradient(-45deg, black 10%,#454545 25%, #1a1a1a 50%, #454545 75%, black 100%); */

  /* background: linear-gradient(-45deg,
    #ff00cc, #3333ff, #00c9ff, #ff9900, #e100ff); */
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover{
  color: gold;
  /* border: 2px solid #ffb948; */
}



/* our service end*/




.richcore-aboutus-neon {
  background: linear-gradient(135deg,#000000 70%,#15131d 100%);
  padding: 60px 0 60px 0;
  font-family: 'Poppins', sans-serif;
  color: #e9e9e9;
  margin: 0;
  width: 100vw;
  overflow-x: hidden;
}

.richcore-neon-header {
  text-align: center;
  margin-bottom: 40px;
}

.richcore-gradient-text {
  background: linear-gradient(90deg,#ffae00,#ff419f,#00f0ff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 1px;
  animation: animateGradient 4s ease-in-out infinite alternate;
}

@keyframes animateGradient {
  0% {filter: brightness(1);}
  100% {filter: brightness(1.2);}
}

.richcore-gold-text {
  color: #ffb948;
  font-weight: 700;
}

.richcore-neon-desc {
  /* color: #c9c9c9d2; */
  color:white;
  font-size: 1.16rem;
  margin: 18px auto 0;
  max-width: 700px;
  line-height: 1.6;
}

.richcore-cards-block {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px 24px;
}

.richcore-neon-card {
  background: linear-gradient(130deg,#000000 87%,#ffd900d5 100%);
  border-radius: 21px;
  box-shadow: 0 4px 32px #ffb30026, 0 0 0 0 #ff2f0050;
  transition: 0.4s box-shadow, 0.23s transform, 0.35s border;
  position: relative;
  width: 295px;
  max-width: 92vw;
  min-height: 275px;
  padding: 32px 28px 32px 28px;
  cursor: pointer;
  border: 2px solid #212121;
  opacity: 0;
  animation: richcore-fadeup 0.9s forwards;
  gap: 90px;
}

.richcore-neon-card:nth-child(1) { animation-delay: .2s;}
.richcore-neon-card:nth-child(2) { animation-delay: .42s;}
.richcore-neon-card:nth-child(3) { animation-delay: .64s;}
.richcore-neon-card:nth-child(4) { animation-delay: .86s;}

@keyframes richcore-fadeup {
  from {transform: translateY(52px) scale(0.94); opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}

.richcore-neon-card:hover {
  border: 2px solid #ffb948;
  transform: scale(1.028) translateY(-6px) rotate(-1deg);
}

.richcore-card-icon {
    background-color: white;
  /* background: linear-gradient(90deg,
    #ff00cc, #3333ff, #00c9ff, #ff9900, #e100ff); */
  box-shadow: 0 0 18px 4px #00f0ff80,0 0 40px 5px #ffb94860 inset;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #191919;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
  transition: box-shadow 0.31s;
  animation: richcore-icon-glow 2.8s infinite alternate;
}

@keyframes richcore-icon-glow {
  0% {box-shadow: 0 0 18px 4px #9b9b9880,0 0 40px 5px #eae02abc inset;}
  100% {box-shadow: 0 0 30px 7px hwb(53 18% 6% / 0.941), 0 0 50px 7px 
hsl(48 100% 50%) inset;}
}

.richcore-card-title {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.richcore-neon-card p,
.richcore-neon-card ul {
  color: #f6f6f6e8;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.richcore-neon-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.richcore-neon-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  font-size: 1.008rem;
  color: #fff5d8;
  text-shadow: 0 0 3px #00f0ff90;
}

.richcore-neon-list i {
  color:#ff419f;
  font-size: 1.21rem;
  filter: drop-shadow(0 0 8px #ff419faa);
}

.richcore-neon-cta {
  text-align: center;
  margin: 54px auto 0;
}

.richcore-contact-btn {
  background: none;
  border: none;
  text-decoration: none;
  font-weight: 700;
  border-radius: 32px;
  cursor: pointer;
  font-size: 1.15em;
  padding: 0;
  box-shadow: none;
}

.richcore-btn-gradient {
  background: linear-gradient(45deg, #ffb500, #ff41c5, #00f0ff 70%);
  padding: 13px 44px;
  border-radius: 36px;
  border: 2px solid ;
  color: #191919;
  font-weight: 700;
  text-shadow: 0 1px 15px #fffbe6a0;
  transition: filter .19s;
  /* filter: brightness(1.0) drop-shadow(0 0 14px #ffefae90); */
  display: inline-block;
}

.richcore-contact-btn:hover .richcore-btn-gradient {
     border: 2px solid white;
     color: black;
  /* filter: brightness(1.3) drop-shadow(0 0 22px #ffc041) drop-shadow(0 0 16px #ffc40088); */
}

@media (max-width: 990px) {
  .richcore-cards-block {flex-direction: column; align-items: center;}
  .richcore-neon-card {width: 93vw; max-width: 465px;}
}













.animate-charcter2
{
   text-transform: uppercase;
   text-align: center;
  background-image: linear-gradient(
  45deg,
    #6c4886 ,
    #78619c ,
    #8d7ab8 ,
    #b79edc,
    #ffa3cb ,
    #ffd7e0 ,
    #fff9b0,
     #ffd7e0 ,
     #ffa3cb ,
     #b79edc ,
     #8d7ab8 ,
     #78619c ,
     #6c4886 
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 50px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}


/* img{
    filter: drop-shadow(5px 5px rgb(255, 238, 0));
} */


.premium-hero {
  /* background: #121212; */
  padding: 4em 2em;
  text-align: center;
  font-family: 'Times New Roman', serif;
}

.premium-text {
  /* font-size: 100px; */
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #b38600; /* deep gold */
  background:
    linear-gradient(135deg,  #f9d71c 0%,#ffe96a 30%,#c39500, #c39500 60%,   #f9d71c 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    1px 1px 2px rgba(0,0,0,0.7), wheat,
    0 0 6px #b38600,
    0 0 12px #d2af36;
  /* position: relative; */
  /* display: inline-block; */
  /* margin-bottom: 2rem; */
  /* line-height: 1.4; */
  /* transition: color 0.5s; */
  /* animation: sweepLight 6s infinite; */
   /* animation: textclip 2s linear infinite; */
}

/* Sweep light animation to simulate luxe gleam */
@keyframes sweepLight {
  0%, 100% {
    background-position: 200% center;
  }
  50% {
    background-position: -50% center;
  }
}

.premium-button {
  font-family: 'times new roman', serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.015em;
  padding: 1em 3em;
  border-radius: 40px;
  border: none;
  background: black;
    /* linear-gradient(145deg, #b38600, #ffd700); */
  color: #a09e98;
  /* linear-gradient(145deg, #b38600, #ffd700);  */
  box-shadow: inset 0 2px 5px #ffd70088,
              0 0 15px #d2af36bb;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.3s ease;

  
}

.premium-button::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 75%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255, 221, 0, 0.5) 50%, rgba(255,255,255,0.15) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.premium-button:hover {
  /* transform: scale(1.1); */
  box-shadow: inset 0 2px 10px #fff4b899,
              0 0 25px #e3c51ecc,#ffd900;
  color:   #b8b29b; 
  /*white, #ffd90095; */
  /* background: linear-gradient(145deg, #ffbf00, #ffd900); */
  border-color:#ff0000;
/* border-radius:55px; */
border-style:solid;
  border: #ffd900;
  /* border-top-right-radius: 50%; */
  border-width:200px;
  /* #3c2a00; */
  /* border: 2px solid var(--gold); */
}

.premium-button:hover::before {
  animation: shine 2.5s infinite;
}

/* Subtle shine animation on hover */
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}



.newheder{
  font-family: Times, serif;
  font-size: 50px;
  color: #8c8c89b2;
  color: linear-gradient(145deg, #ffbf00, #ffd900);
  /* text-decoration: underline; */
  text-underline-offset: 6px;
}


.newheder:hover{

   transform: scale(1.1);
  box-shadow: inset 0 2px 10px #fff4b899,
              0 0 25px #e3c51ecc,#ffd900;
  color:   #a09e98;
  /* #ffd90095; */
  /* background: linear-gradient(145deg, #ffbf00, #ffd900); */
/* border-radius:55px; */
border-style:solid;
  border: #ffd900;
  /* border-top-right-radius: 50%; */
  border-width:200px;
  
  /* #3c2a00; */

   /* text-decoration: none;
  text-underline-offset: 10px; */
}

.newheder:hover::before {
  animation: shine 2.5s infinite;
  opacity: 1;
}


body.light-theme .newheder {
  color: #5d4c21;
  /* linear-gradient(
  135deg,
  #ffffff 0%,
  #fcfcfc 50%,
  #f8f5e6 80%,
  #e4c574 100%
); */
}


body.light-theme .newheder:hover{
   transform: scale(1.1);
  box-shadow: inset 0 2px 10px #fff4b899,
              0 0 25px #e3c51ecc,#ffd900;
  color:   #907533;
border-style:solid;
  border: #ffd900;
}









.scrollToTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  font-weight: 500;
  /* background: transparent; */
  color: #ffd700;
  border: yellow;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* border-color: #d2af36 ; */
  /* border-radius: 3px;  Slightly rounded, but mostly square */
  /* box-shadow: 0 0 14px 4px #FFC42E, 0 0 45px 12px #FFD700; */
  /* filter: brightness(1.2) drop-shadow(0 0 10px #FFC42E); */
  /* text-shadow: 0 0 5px #FFD700, 0 0 10px #FFC42E; */
  /* cursor: pointer; */
  /* transition: box-shadow 0.3s, filter 0.3s; */
}







/* connect form  */
.cf4-container {
  display: flex;
  width: 820px;
  margin: 50px auto;
  box-shadow: 0 8px 24px rgba(40,40,60,0.11);
  border-radius: 40px;
  overflow: hidden;
  /* background: #fff; */
}

.cf4-form-section {
  flex: 1px;
  padding: 50px 40px 50px 40px;
  background: linear-gradient(135deg, #684ca0 0%, #1c223a 100%);
  color: #fff;
  
}

.cf4-form-section h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  letter-spacing: 1px;
  font-weight: 500;
}

.cf4-form {
  display: flex;
  flex-direction: column;
}

.cf4-input, .cf4-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 13px 0;
  margin-bottom: 24px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.cf4-input:focus, .cf4-textarea:focus {
  border-bottom: 1.8px solid #ff46a1;
}

.cf4-textarea {
  min-height: 60px;
  resize: vertical;
}

.cf4-btn {
  background: transparent;
  border: solid;
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  align-self: center;
  margin-top: 12px;
}

.cf4-btn:hover {
  background: transparent;
  border: solid white;
}

/* Info Section */
.cf4-info-section {
  flex: 1;
  padding: 48px 36px;
  background: #fffcef;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cf4-heading {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.cf4-underline {
  border-bottom: 2px solid #ff46a1;
  padding-bottom: 2px;
}

.cf4-desc {
  margin-bottom: 36px;
  color: #929292;
  font-size: 22px;
}

.cf4-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cf4-contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  
}

.cf4-icon {
  font-size: 1.3em;
  margin-right: 16px;
  color: #ff46a1;
}

.cf4-contact-list a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.cf4-contact-list a:hover {
  color: #684ca0;
}









/* project */
/* Enhanced Gold and Black Responsive Project Grid */
.gold-black-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding: 10rem;
  background: transparent;
}

.project-card {
  /* background: linear-gradient(135deg, #191919 80%, #ffd700 100%); */
  border-radius: 21px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(146, 143, 0, 0.35);
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
  position: relative;
}

.project-card:hover, .project-card:focus-within {
  transform: translateY(10px) scale(1.03);
  box-shadow: 0 16px 48px 0 #ffd70090, 0 2px 10px 0 #111;
  outline-offset: 3px;
}

.card-img {
  width: 100%;
  height: 240px;             /* Increased height for a taller card */
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.4s;
}
.project-card:hover .card-img {
  filter: none;
}

.card-content {
  padding: 2rem;           /* Slightly reduced padding for less clutter */
  color: #ffd700;
  text-align: center;
  background: rgba(0, 0, 0, 0.97);
  transition: background 0.3s;
  /* border: #fff; */
}

.card-title {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  /* color: #ffd700; */
  letter-spacing: 1px;
}

.card-desc {
  margin: 0;
  color: #fff8dc;
  font-size: 1rem;
  opacity: 0.8;
}
.card-title:hover,.card-desc:hover{
  color: #ffd700;
  /* font-weight: 500; */

}

/* Responsive Styles */
@media (max-width: 900px) {
  .gold-black-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;

    
  }
  .project-card {
    margin: 0 auto;
    max-width: 350px;       /* Slightly smaller on small screens for a tidier look */
  }
}

/* Subtle gold border on hover for extra detail */
.project-card:after {
  content: '';
  display: block;
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  border: 2px solid transparent;
  border-radius: 21px; /* Match parent */
  pointer-events: none;
  transition: border 0.3s;
}
.project-card:hover:after, 
.project-card:focus-within:after {
  border: 3px solid #ffb948
;
  outline-offset: 3px;
  
  @apply animate-character;
}


/* ===== LIGHT/DARK THEME TOGGLE ===== */
:root {
  --bg-primary: #000000;
  --bg-secondary: #1f1f1f;
  --text-primary: #f0f0f0;
  --text-secondary: #aaa;
  --header-bg: #000;
  --card-bg: linear-gradient(130deg,#000000 87%,#ffd900d5 100%);
  --card-border: #212121;
  --about-bg: linear-gradient(135deg,#000000 70%,#15131d 100%);
  --neon-card-bg: linear-gradient(130deg,#000000 87%,#ffd900d5 100%);
  --cf4-info-bg: #fffcef;
  --cf4-info-text: #000000;
  --cf4-desc-color: #929292;
  --footer-color: #777;
  --footer-border: #222;
}

body.light-theme {
  --bg-primary: #f5f5f0;
  --bg-secondary: #e8e8e0;
  --text-primary: #111111;
  --text-secondary: #555;
  --header-bg: #ffffff;
  --card-bg: linear-gradient(130deg,#ffffff 87%,#ffd900 100%);
  --card-border: #dddddd;
  --about-bg: linear-gradient(135deg,#f0f0e8 70%,#e8e0f0 100%);
  --neon-card-bg: linear-gradient(130deg,#ffffff 87%,#ffd900 100%);
  --cf4-info-bg: #fffcef;
  --cf4-info-text: #000000;
  --cf4-desc-color: #666666;
  --footer-color: #555;
  --footer-border: #cccccc;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
}

body.light-theme header {
   /* background: rgb(224, 221, 217) ;var(--header-bg); */
   background: linear-gradient(45deg, black,black, #646060, #f6db6c, #e8e8e0,#e8e8e0);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  body.light-theme header {
    background: black; /* or any mobile color */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
}

body.light-theme .logo h1 {
  color: gold;
}

body.light-theme nav a {
  color: var(--text-secondary);
  /* color:#000; */
}

body.light-theme nav a:hover {
  /* transform: translateZ(10px) scale(1.2); */
  color: #574000;
}

body.light-theme .hero {
  background: linear-gradient(45deg, #f5f5f0, #ebebeb, #e0e0d8, #e8e8e0);
}


body.light-theme .premium-text {
  background: #4f3f14;
  /* background: linear-gradient(35deg, #ca9205 0%, #d69c0a 30%, #4f3f14, #8b6914 60%, #d69c0a 90%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-theme .premium-button {
  background: #ffffff;
  color: #555;
  box-shadow: inset 0 2px 5px #ffd70044, 0 0 10px #d2af3660;
}



body.light-theme .premium-button:hover {
  /* transform: scale(1.1); */
  box-shadow: inset 0 2px 10px #fff4b899,
              0 0 25px #e3c51ecc,#000000;
  color:   rgb(145, 0, 0); 
  /*white, #ffd90095; */
  /* background: linear-gradient(145deg, #ffbf00, #ffd900); */
  border-color:#ff0000;
/* border-radius:55px; */
border-style:solid;
  border: #0a0904;
  /* border-top-right-radius: 50%; */
  border-width:200px;
  /* #3c2a00; */
  /* border: 2px solid var(--gold); */
}





body.light-theme .premium-button::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 75%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 238, 86, 0.35) 0%, rgba(255, 111, 0, 0.5) 50%, rgba(255,255,255,0.15) 100%,rgba(255, 238, 86, 0.35) 0% );
  transform: skewX(-25deg);
  transition: none;
}

body.light-theme .service-card {
  background: linear-gradient(130deg,#ffffff 87%,#ffd900 100%);
  border-color: var(--card-border);
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

body.light-theme .service-card:hover {
  box-shadow: 0 0 25px rgba(0,0,0,0.12);
}

body.light-theme .service-title {
  color: #111;
}

body.light-theme .service-description {
  color: #444;
}

body.light-theme .service-icon {
  color: #333;
}

body.light-theme .richcore-aboutus-neon {
  background: linear-gradient(135deg,#f0f0e8 70%,#e8e0f5 100%);
}

body.light-theme .richcore-neon-card {
  background: linear-gradient(130deg,#ffffff 87%,#ffd900 100%);
  border-color: #dddddd;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

body.light-theme .richcore-neon-card:hover {
  border-color: #b8860b;
}

body.light-theme .richcore-neon-desc {
  color: #333;
}

body.light-theme .richcore-neon-list li {
  color: #222;
  text-shadow: none;
}

body.light-theme .richcore-card-title {
  color: #8b6914;
}

body.light-theme .gold-black-grid {
  background: transparent;
}

body.light-theme .project-card {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

body.light-theme .card-content {
  background: rgba(255,255,255,0.97);
}

body.light-theme .card-title {
  color: #111;
}

body.light-theme .card-desc {
  color: #333;
}

body.light-theme .cf4-form-section {
  background: linear-gradient(135deg, #7b5cb0 0%, #2c3260 100%);
}

body.light-theme .cf4-info-section {
  background: #fffcef;
  color: #000;
}

body.light-theme footer {
  color: #555;
  border-top-color: #cccccc;
}

/* The Toggle Button */
.theme-toggle {
  background: none;
  border: 2px solid #444;
  border-radius: 50px;
  width: 56px;
  height: 28px;
  cursor: pointer;
  position: relative;
  padding: 0;
  margin-left: 1.5rem;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
  background: #1a1a1a;
}

.theme-toggle:hover {
  border-color: gold;
  transform: translateZ(10px) scale(1.2);
}

body.light-theme .theme-toggle:hover {
  border-color: #b8860b;
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: gold;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.theme-toggle-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.icon-moon {
  right: 5px;
  opacity: 1;
}

.icon-sun {
  left: 5px;
  opacity: 0;
}

body.light-theme .theme-toggle {
  background: #e0e0d8;
  border-color: #aaa;
}

body.light-theme .theme-toggle-thumb {
  transform: translateX(28px);
  background: #b8860b;
}

body.light-theme .icon-moon {
  opacity: 0;
}

body.light-theme .icon-sun {
  opacity: 1;
}


body.light-theme #shine-text{
    font-family: sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #000000, rgb(0, 0, 0), rgb(0, 0, 0));
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-align: justify; */
  text-justify: inter-word;
}



body.light-theme .service-card:hover {
  color:hsl(0, 0%, 0%) ;
  border: 2px solid #ffb948;
  /* background: linear-gradient(-45deg, black 10%,#454545 25%, #1a1a1a 50%, #454545 75%, black 100%); */

  background: linear-gradient(135deg, #ffffff,#ffffff,#ffffff, #ffffff,gold);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  
}




.bold{
  color: rgb(255, 255, 255); text-decoration: underline 1px;  text-underline-offset: 2px;
}

.gold{color: #ffcc00;  text-decoration: underline 3px; text-underline-offset: 9px; }

body.light-theme .gold{ color: #B8860B;  text-decoration: underline 3px; text-underline-offset: 9px; }

body.light-theme .gold:hover{ text-transform: uppercase; color: #B8860B;  text-decoration: underline 3px; text-underline-offset: 9px; }

body.light-theme .bold:hover{ text-transform: uppercase; color: black;  text-decoration: underline 3px; text-underline-offset: 9px; } 

.gold:hover{ text-transform: uppercase; color: gold;  text-decoration: underline 3px; text-underline-offset: 9px; }

.bold:hover{ text-transform: uppercase; color: rgb(255, 255, 255);  text-decoration: underline 3px; text-underline-offset: 9px; } 


body.light-theme .bold{ color: rgb(0, 0, 0); text-decoration: underline 1px;  text-underline-offset: 2px;}



/* ===== END THEME TOGGLE ===== */





.floating-buttons{
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 15px;
    bottom: 65px; /* Above scroll button */
    width: 38px;
    height: 38px;
    background: #f6db6c;
    color: #000000;
    border-radius: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Scroll To Top Button */
.scrollToTopBtn {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 9999;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}

/* Scroll To Top Button */
.scrollToTopBtn{
    width: 40px;
    height: 40px;
    background: #f6db6c;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    transition: transform .3s ease;
}


.scrollToTopBtn2{
    width: 60px;
    height: 60px;
    background: #f6db6c;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(92, 76, 29, 0.3);
    transition: transform .3s ease;
    margin-right: 35px;
    margin-bottom: 12px;


    
}

.scrollToTopBtn2:hover, .scrollToTopBtn:hover{
    transform: scale(1.1);
}

@media (max-width: 768px){
    .floating-buttons{
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .whatsapp-float{
      margin-bottom: 2%;
    }

    .whatsapp-float,
    .scrollToTopBtn{
        width: 50px;
        height: 50px;
        font-size: 24px;
    }





    .scrollToTopBtn2{
    width: 55px;
    height: 55px;
    background: #f6db6c;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(43, 40, 40, 0.3);
    transition: transform .3s ease;
    margin-right: 55px;
    margin-bottom: 25px;


    
}
}

.agent-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.8);
    z-index:99999;
    justify-content:center;
    align-items:center;
}

.agent-container{
    width:90%;
    max-width:1000px;
    height:85vh;
    background:#111;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 0 30px rgba(255,255,255,.15);
}

.agent-frame{
    width:100%;
    height:100%;
    border:none;
}

.close-agent{
    position:absolute;
    top:10px;
    right:10px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    z-index:10;
    font-size:18px;
}