/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 03 2026 | 09:04:41 */
/* header top bar progress scrolling styles */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  z-index: 9999;

  /* Premium Gradient */
  background: linear-gradient(
    90deg,
    #0089C0,
    #00c6ff,
    #F97A01,
    #ffb347,
    #0089C0
  );

  background-size: 300% 100%;

  /* Smooth animation */
  animation: gradientFlow 4s linear infinite;

  /* Glow effect */
  box-shadow:
    0 0 8px rgba(0, 137, 192, 0.1),
    0 0 12px rgba(249, 122, 1, 0.05);

  /* Smooth width transition */
  transition: width 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;

  opacity: 0;
}

/* Gradient Animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* header top bar progress scrolling styles ended here */

/* =========================================
   🔥 SITECRAFTED PREMIUM HEADER STYLES
   ========================================= */


/* =========================================
   1. GLASS / BLUR HEADER EFFECT
   ========================================= 
.whb-general-header {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
*/

/* =========================================
   2. STICKY HEADER SHADOW (ON SCROLL)
   ========================================= */
.whb-sticked .whb-general-header {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	 background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}


/* =========================================
   3. HEADER HEIGHT & ALIGNMENT
   ========================================= 
.whb-general-header .container {
  max-width: 1400px;
}

.whb-general-header-inner {
  align-items: center;
  min-height: 80px;
}
*/

/* =========================================
   4. LOGO SIZE CONTROL
   ========================================= 
.site-logo img {
  max-height: 42px;
  width: auto;
}
*/

/* =========================================
   5. NAV MENU STYLE + UNDERLINE ANIMATION
   ========================================= */
.wd-header-main-nav .nav-link-text {
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

/* Underline effect */
.wd-header-main-nav .nav-link-text::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #0089C0;
  transition: width 0.3s ease;
}

/* Hover animation */
.wd-header-main-nav li:hover .nav-link-text::after {
  width: 100%;
}


/* =========================================
   6. CTA BUTTON (ORANGE PREMIUM STYLE)
   ========================================= */
.whb-column10 .btn.btn-color-primary {
  background: linear-gradient(135deg, #F97A01, #ff9a2f) !important;
  color: #ffffff !important;
  border-radius: 30px !important;
  padding: 12px 24px !important;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
	font-size:15px;
}

/* CTA Hover Effect */
.whb-column10 .btn.btn-color-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 25px rgba(249, 122, 1, 0.35);
  background: linear-gradient(135deg, #e56f00, #ff8c1a) !important;
}


/* =========================================
   7. CTA BUTTON ACTIVE (CLICK EFFECT)
   ========================================= */
.whb-column10 .btn.btn-color-primary:active {
  transform: scale(0.97);
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}


/* =========================================
   8. SMOOTH TRANSITIONS (GLOBAL HEADER FEEL)
   ========================================= */
.whb-general-header,
.wd-header-main-nav a,
.whb-column10 .btn {
  transition: all 0.3s ease;
}


/* =========================================
   9. OPTIONAL: HIDE MENU UNDERLINE ON MOBILE
   ========================================= */
@media (max-width: 768px) {
  .wd-header-main-nav .nav-link-text::after {
    display: none;
  }
}


/* =========================================
   🔚 END OF PREMIUM HEADER CSS
   ========================================= */

/* =========================================
   CLEAN PREMIUM FLOAT (FINAL)
========================================= */

.elementor-28608 .elementor-element.elementor-element-30fe13bd::before {
    animation: heroFloat 5s ease-in-out infinite;
    will-change: transform;
	 filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

/* Smooth slow floating */
@keyframes heroFloat {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

/* Prevent overflow */
.elementor-28608 .elementor-element.elementor-element-30fe13bd {
    overflow: hidden;
}

/* ===============================
   HERO BUTTON PREMIUM STYLE
   Target: .hero .btn
================================ */

/* BASE */
.hero .btn {
  position: relative;
  display: inline-block;
  border-radius: 999px;
  transition: all 0.35s ease;
  overflow: hidden;
  z-index: 1;
	line-height: 38px;
}

/* HOVER LIFT */
.hero .btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* SOFT GLOW */
.hero .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.hero .btn:hover::before {
  opacity: 1;
}

/* SHINE SWIPE */
.hero .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.hero .btn:hover::after {
  left: 130%;
}

/* CLICK PRESS */
.hero .btn:active {
  transform: translateY(-1px) scale(0.97);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.menu-label{border-radius:3px!important;
bottom: 80%!important;

  padding: 1px 3px!important;
}

.menu-label-green {
  --wd-label-color: #22c55e!important;
}

.menu-label-red {
  --wd-label-color: #ff3b3b!important;
}

.wd-tools-element:is([class*="wd-design-6"], [class*="wd-design-7"]):not(.wd-with-wrap) .wd-tools-icon {
  width: 32px!important;
	height: 38px!important;
  border-radius: 24px!important;
}
.wd-tools-element .wd-tools-icon::before {
  font-size: 19px!important;
}

/* =========================
   COMMON BOX
========================= */
.blue-box,
.orange-box,
.green-box {
  position: relative;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
	border: 1px solid #f1f5f9; 
}

/* =========================
   DEFAULT SHADOW (SOFT GLOW)
========================= */
.blue-box {
 box-shadow: 0 20px 25px -5px rgba(219, 234, 254, 0.8), 0 8px 10px -6px rgba(219, 234, 254, 0.8);
}

.orange-box {
  
box-shadow: 0 20px 25px -5px rgba(255, 237, 213, 0.8), 0 8px 10px -6px rgba(255, 237, 213, 0.8);
}

.green-box {
box-shadow: 0 20px 25px -5px rgba(220, 252, 231, 0.8), 0 8px 10px -6px rgba(220, 252, 231, 0.8);
}

/* =========================
   HOVER (ONLY SHADOW CHANGE)
========================= */
.blue-box:hover,
.orange-box:hover,
.green-box:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

}

/* =========================
   TOP RIGHT CURVED SHAPE (FIXED SIZE + VISIBILITY)
========================= */
.blue-box::after,
.orange-box::after,
.green-box::after {
  content: "";
  position: absolute;
top: -45px;
  right: -45px;
  width: 105px;
  height: 105px;
  background: #F9f9f9;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* =========================
   HOVER - SUBTLE GROW
========================= */
.blue-box:hover::after,
.orange-box:hover::after,
.green-box:hover::after {
  width: 115px;
  height: 115px;
top: -45px;
  right: -45px;
	 background: #Fafafa;
}

.blue-box .elementor-icon{
	background: linear-gradient(135deg, #3b82f6, #2563eb)!important;
	Box Shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1)!important;
	color:#fff!important;
}

.orange-box .elementor-icon{
	background: linear-gradient(135deg, #F97A01, #ff9d42)!important;
	Box Shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1)!important;
	color:#fff!important;
}

.green-box .elementor-icon{
	background: linear-gradient(135deg, #22c55e, #059669)!important;
	Box Shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1)!important;
	color:#fff!important;
}

.black-box{max-height:400px!important;}



.black-blue-box {
    position: relative;
    padding: 48px;
 

    /* Deep dark base */
    background: linear-gradient(
        145deg,
        #0b1f3a 0%,
        #0a2540 40%,
        #0a1a2f 100%
    );

    /* Subtle glass effect */
    backdrop-filter: blur(20px);

    /* Soft glowing border */
    border: 1px solid rgba(0, 180, 255, 0.25);

    /* Outer glow */
    box-shadow:
        0 0 60px rgba(0, 140, 255, 0.15),
        inset 0 0 30px rgba(0, 140, 255, 0.05);

    overflow: hidden;
}

.black-blue-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: linear-gradient(
        120deg,
        rgba(0, 200, 255, 0.12),
        transparent 40%,
        transparent 60%,
        rgba(0, 120, 255, 0.12)
    );

    pointer-events: none;
}