
.transparent-header .site-main-header-wrap .site-header-row-container-inner, .transparent-header .site-bottom-header-wrap .site-header-row-container-inner {
        background: transparent;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgb(255 255 255 / 4%);
        transition: all 0.3s ease-in-out;
    }



.popup-drawer .drawer-inner {
    top: 46px;
    background-image: linear-gradient(135deg, rgb(255, 45, 117) 0%, rgb(138, 43, 226) 100%);
}


.wp-site-blocks .menu-toggle-open {
    box-shadow: none;
    background-image: linear-gradient(135deg, rgb(255, 45, 117) 0%, rgb(138, 43, 226) 100%);
    padding: 15px !important;
    color: white !important;
    border-radius: 100px;
}



.site-footer a {
	color: #EDF3FF !Important; 
 }




.blur {
  position: relative !important;
  z-index: 0 !important;
}

.blur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(252, 230, 200, 0.6), rgba(210, 215, 250, 0.5), transparent);
  filter: blur(40px);
  z-index: -1 !important;
  pointer-events: none;
	-webkit-filter: blur(40px); 
}



/* === Material Input Fields with Animated Gradient Focus === */
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="number"],
.fluentform input[type="tel"],
.fluentform input[type="url"],
.fluentform input[type="password"],
.fluentform select,
.fluentform textarea {
  width: 100%;
  background: transparent;
  border: none;
border-bottom: 1px solid #6e6bc93d;
	border-radius: 0;
  padding: 16px 16px;
  font-size: 15px;
  color: #111;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}
.ff-default .ff-el-form-control:focus {
	background-color: #070319 !important;}
.ff-default .ff-el-form-control {
    background-clip: padding-box;
    background-image: none;
    border: 1px solid #6e6bc93d !important;
}
/* Animated gradient underline (Material style) */
.fluentform input[type="text"]:focus,
.fluentform input[type="email"]:focus,
.fluentform input[type="number"]:focus,
.fluentform input[type="tel"]:focus,
.fluentform input[type="url"]:focus,
.fluentform input[type="password"]:focus,
.fluentform select:focus,
.fluentform textarea:focus {
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(135deg, rgb(255, 45, 117), rgb(138, 43, 226));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
  transition: background-size 0.3s ease;
}

/* Smooth underline animation */
.fluentform input:not(:focus),
.fluentform select:not(:focus),
.fluentform textarea:not(:focus) {
  background-size: 0 2px;
}

/* Floating label effect */
.fluentform .ff-el-input--label label {
  position: relative;
  top: 0;
  color: #555;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  pointer-events: none;
}

/* Move label upward on focus */
.fluentform input:focus + label,
.fluentform textarea:focus + label {
  color: rgb(255, 45, 117);
  transform: translateY(-6px);
  font-size: 12px;
}

/* Placeholder invisible for clean design */
.fluentform input::placeholder,
.fluentform textarea::placeholder {
  color: transparent;
}

/* === Gradient Button === */
.fluentform button[type="submit"],
.fluentform .ff-btn-submit {
  background-image: linear-gradient(135deg, rgb(255, 45, 117) 0%, rgb(138, 43, 226) 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fluentform button[type="submit"]:hover,
.fluentform .ff-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 45, 117, 0.45);
}



.kk-star-ratings.kksr-align-center {
	padding-bottom: 59px;}


#masthead .custom-logo {
    border-radius: 10px;
}


.hero {
    position: relative;
    background: #030014;
    overflow: hidden;
    isolation: isolate;
    min-height: inherit;
    height: 100%;
    width: 100%;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    pointer-events: none;
    filter: blur(1px); /* Extra blur for dots */
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
    filter: blur(80px);
    animation: orbsPulse 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.hero > *:not(canvas) {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

@keyframes orbsPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}




/* MOBILE HEADER GLASS EFFECT MATCHING MENU */
@media (max-width: 1024px) {

  .transparent-header .site-main-header-wrap .site-header-row-container-inner,
  .transparent-header .site-bottom-header-wrap .site-header-row-container-inner {

    /* Match menu background color */
    background: rgba(15, 16, 40, 0.75) !important;

    /* Match menu blur effect */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 14%);
    
    transition: all 0.35s ease-in-out;
  }

}

/* REMOVE MOBILE HEADER BORDER ONLY */
@media (max-width: 1024px) {
  .transparent-header .site-main-header-wrap .site-header-row-container-inner,
  .transparent-header .site-bottom-header-wrap .site-header-row-container-inner {
    border-bottom: none !important;
  }
}

.custom-mobile-menu ul {
    padding-top: 0px;
    padding-bottom: 6px;
}


.wp-site-blocks .menu-toggle-open {
    padding: 15px !important;
    color: white !important;
    border-radius: 100px;
    background: rgba(14, 28, 75, 0.6); /* dark semi-transparent background */
    box-shadow: 0 8px 30px rgba(14, 28, 75, 0.5); /* soft glow */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.wp-site-blocks .menu-toggle-open:hover {
    background: rgba(14, 28, 75, 0.8); /* slightly darker on hover */
    box-shadow: 0 12px 40px rgba(14, 28, 75, 0.6);
}

.hero {
    /* 1. Base Color - Exact match for your next section */
    background-color: #0A0A24; 
    
    /* 2. Gradients ko Center mein rakha hai taake Bottom edge saaf rahe */
    background-image: 
        /* CENTER GLOW - Vibrant Purple (Ab ye niche touch nahi hoga) */
        radial-gradient(at 50% 50%, rgba(157, 0, 255, 0.45) 0px, transparent 55%),
        
        /* CENTER RIGHT - Electric Blue Pop */
        radial-gradient(at 100% 50%, rgba(27, 0, 255, 0.5) 0px, transparent 50%),
        
        /* TOP CENTER - Subtle Blue leak */
        radial-gradient(at 50% 10%, rgba(0, 247, 255, 0.2) 0px, transparent 45%);

    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    /* PADDING REMOVED - Using your Elementor padding */
}

/* 3. THE DOTS (Tiny Colorful Stars) */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    
    /* Tiny Dots pattern */
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 45px 85px, #00f7ff, transparent),
        radial-gradient(1px 1px at 150px 45px, #ff00ea, transparent),
        radial-gradient(1.5px 1.5px at 110px 160px, #fff, transparent),
        radial-gradient(1px 1px at 210px 190px, #00f7ff, transparent),
        radial-gradient(1px 1px at 290px 260px, #ff00ea, transparent);
    
    background-size: 320px 320px;
    opacity: 0.5; /* Dots brightness */
    pointer-events: none;
    z-index: 0;
}

/* 4. Fine Grain (Premium Texture) */
.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.07;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}





input[type=range] {
    border: none !important;
}




/* Mobile */
@media (max-width: 767px) {
    .gz-tab {
        font-size: 11px !important;
    }
}

a { 
	text-decoration: none;}



@media (min-width: 1025px) {
    .main-navigation ul.sub-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
			min-width: 170px !important;}
	
	
	#colophon .footer-navigation .footer-menu-container > ul li.current-menu-item > a {
    color: var(--global-palette3);
    background: transparent !important;
}
	
	
	.phind-input {
    color: white !important;
}

.phind-message.bot .phind-message-text {
    border-top-left-radius: 6px;
	background: rgb(0 0 0 / 24%) !important;}


.phind-message-text pre {
	background: rgb(0 0 0 / 24%) !important;}


.phind-messages {
	background: rgb(0 0 0 / 42%) !important;}

	.phind-tooltip-content p {
    margin: 6px 0;
    line-height: 1.4;
}
	.fluentform * {
    box-sizing: border-box;
    color: white !important;
}
}