/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 10 2025 | 12:23:16 */
/* frame work section */
.card-numm {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F37737;  /* fixed color for number circle */
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(243, 119, 55, 0.5);
}
.framework-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(8,10,20,0.55);
}


/* Custom Glowing Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, #F37737 0%, rgba(243,119,55,0.4) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease, background 0.2s;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(243, 119, 55, 0.6);
}

/* Hover effect - grow on clickable elements */
a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor,
.elementor-button:hover ~ .custom-cursor {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle, #F37737 0%, rgba(243,119,55,0.7) 60%);
  box-shadow: 0 0 25px rgba(243, 119, 55, 0.9);
}
.hero-3d-btn {
  display: inline-block;
  padding: 12px 32px; /* smaller padding */
  font-size: 1rem; /* slightly smaller text */
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.6px;
  border-radius: 50px;
  background: linear-gradient(180deg, #F37737 0%, #d96025 100%);
  box-shadow: 0 6px 0 #b24a16, 0 10px 25px rgba(243, 119, 55, 0.4);
  transition: all 0.25s ease;
  position: relative;
}

/* subtle top light reflection */
.hero-3d-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 50px 50px 0 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
}

/* hover: lift + shine */
.hero-3d-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #b24a16, 0 16px 30px rgba(243, 119, 55, 0.55);
}

/* click: press down */
.hero-3d-btn:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #b24a16, 0 5px 10px rgba(243, 119, 55, 0.4);
}

/* 🔹 Responsive size adjustments */
@media (max-width: 768px) {
  .hero-3d-btn {
    padding: 10px 26px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-3d-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}




.what {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  
}

.what:hover {
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.what::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}




.heroo {
   backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.07);
}

/* hero heading */
.hero-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem); /* responsive size */
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  position: relative;
  display: inline-block;
  
 
	
	background: linear-gradient(90deg, #fff, #F37737, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(243, 119, 55, 0.6);
  transform: scale(1.03);
  transition: all 0.4s ease-in-out;
}
/* --- Mobile Optimization (Screen size 600px se kam ke liye) --- */
@media (max-width: 600px) {
    .hero-heading {
       
        letter-spacing: 1px; 
        text-shadow: 0 0 10px rgba(243, 119, 55, 0.3);
       
        font-size: clamp(2rem, 8vw, 4.5rem);
    }
}

