body {
      background-image: url(../img/Portal_background.webp);
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
    }

.main-box {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 40px;

    /* Stronger Glass effect */
    background: rgba(255, 255, 255, 0.25); /* higher opacity */
    backdrop-filter: blur(20px);           /* stronger blur */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4); /* more visible border */

    /* Shadow for depth */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);

    /* Smooth edges */
    /* overflow: hidden; */

    /* Optional: subtle gradient for better glass look */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
}

.main-box a,.main-box a:hover {

    color:#3e3e3e;

    text-decoration:none;

    display: block



}

.top-blue{ height: 30px; width: 100%;position: absolute; }



.cardT [data-background-color="ligBlue"] {

    background: linear-gradient(60deg, #00adef, #b6e5f7);

    box-shadow: 0 12px 20px -10px rgba(156, 39, 176, 0.28), 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(156, 39, 176, 0.2);

}

.main-box-inner {

    text-align:center;

    padding:10px;

    border-radius:5px;

    -moz-border-radius:5px ;

    -webkit-border-radius:10px;

    margin-bottom:40px;

    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);

    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);

}

.main-box-inner a,.main-box-inner a:hover {

    color:#3e3e3e;

    text-decoration:none;

    display: block;

        padding:40px;



}

.main-box-inner i{

    background: linear-gradient(60deg,#929292,#bdbcbc);

    padding: 10px;

    position: absolute;

    top: -24px;

    left: 30px;

    color: #fff;

    width:97px;

    -webkit-box-shadow: 0 4px 20px 0 rgba(0,0,0,.14), 0 7px 10px -5px rgba(0,0,0,.4);

    box-shadow: 0 4px 20px 0 rgba(0,0,0,.14), 0 7px 10px -5px rgba(0,0,0,.4);

    border-radius: 5px;

    font-size: 65px

}



.main-box .card-header {

    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.42), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);

    margin: -45px 15px 0;

    border-radius: 3px;

    padding: 15px;

    background-color: #999999;

}

.main-box i{

    background: linear-gradient(60deg,#26c6da,#00acc1);

    padding: 10px;

    position: absolute;

    top: 0px;

    left: 1px;

    color: #fff;

    width:27px;

    -webkit-box-shadow: 0 4px 20px 0 rgba(0,0,0,.14), 0 7px 10px -5px rgba(244,67,54,.4);

    box-shadow: 0 4px 20px 0 rgba(0,0,0,.14), 0 7px 10px -5px rgba(244,67,54,.4);

    border-radius: 5px 0 0 5px;

}

.form-control, 
.form-group .form-control {
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5); /* visible underline */
    background: transparent;
    color: #fff; /* White text looks good on dark/blur background */
    /* padding: 10px 5px; */
    font-weight: 400;
    font-size: 16px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus, 
.form-group .form-control:focus {
    border-bottom: 2px solid #00adef; /* highlight underline on focus */
    background-position: center bottom, center calc(100% - 1px);
    color: #fff;
}

::placeholder {
    color: rgba(255, 255, 255, 0.7); /* placeholder visible on glass */
    opacity: 1;
}

.form-control:focus {
    box-shadow: 0 2px 6px rgba(0, 173, 239, 0.5);
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 15px; /* space between image and input */
    margin-bottom: 10px;
}

.captcha-row img {
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    width: 150px; /* fixed width for captcha image */
    height: 50px;
    object-fit: cover;
}

.captcha-row .input-f {
    flex: 1; /* take remaining width */
    padding: 10px;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.captcha-row .input-f:focus {
    border-bottom: 2px solid #00adef;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 2px 6px rgba(0, 173, 239, 0.5);
}

.f-label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.captcha-row span {
    color: #fff;
    font-size: 14px;
}

.captcha-row a.ccc {
    color: #00adef;
    text-decoration: underline;
}

/* Common button styles */
.btn {
    padding: 10px 25px;
    /* font-size: 14px; */
    /* font-weight: 500; */
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Primary Login Button */
.btn.valid {
    background: linear-gradient(135deg, #10408c, #072c67);
    color: #fff;
}

.btn.valid:hover {
    background: linear-gradient(135deg, #072c67, #10408c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Forgot Password Button */
.btn.btn-primary {
    background: linear-gradient(135deg, #2B2B2B, #444444);
    color: #fff;
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, #444444, #2B2B2B);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Focus & active states */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.5);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Ensure backdrop covers entire page */
.modal-backdrop.show {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.6); /* darker overlay */
    backdrop-filter: blur(4px); /* slight blur effect on background */
    -webkit-backdrop-filter: blur(4px);
}

/* Modal z-index */
.modal {
    z-index: 1050; /* must be above backdrop */
}

/* Optional: Add slight blur effect to the page behind modal */
body.modal-open {
    overflow: hidden;
}

/* Modal Glass Style */
.modal-content {
    /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #000;
}

/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, #10408c, #072c67);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    color: #fff;
}

.modal-title {
    font-weight: 600;
}

/* Inputs */
.modal-body .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus {
    border-bottom: 2px solid #00adef;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 2px 6px rgba(0,173,239,0.5);
}

/* Modal Footer Buttons */
.modal-footer .btn-primary {
    background: linear-gradient(135deg, #10408c, #072c67);
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #072c67, #10408c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.modal-footer .btn-secondary {
    background: #2B2B2B;
    color: #fff;
    border-radius: 8px;
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.modal-footer .btn-secondary:hover {
    background: #444444;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.modal-content .modal-header {padding: 18px 24px;}

#page-wrapper {background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 20px;}
.mb-dull {

    background-color:#fff;

}

.mb-red {

    background-color:#fff;

}

.mb-pink {

    background-color:#fff;

}







    .main-box h5 {

        font-size:16px;

        font-weight:800;

        text-transform:uppercase;

    }

/*==============================================

    CHAT WINDOW  STYLES    

    =============================================*/



.chat-widget-main {

    max-height:500px;

    padding:20px;

    overflow:auto;

}

.chat-widget-left:after {

    top: 100%;

    left: 10%;

    border: solid transparent;

    content: " ";

    position: absolute;

    border-top-color: #6792d5;

    border-width: 15px;

    margin-left: -15px;

   

}



.chat-widget-left {

    width: 100%;

    height: auto;

    padding: 15px;

    -webkit-border-radius: 5px;

    -moz-border-radius: 5px;

    border-radius: 5px;

    position: relative;

    border: 1px solid #6792d5;

    font-size:14px;

   

}

.chat-widget-right:after {

    top: 100%;

    right: 10%;

    border: solid transparent;

    content: " ";

    position: absolute;

    border-top-color: #d51111;

    border-width: 15px;

    margin-left: -15px;

}



.chat-widget-right {

    width: 100%;

    height: auto;

    padding: 15px;

    -webkit-border-radius: 5px;

    -moz-border-radius: 5px;

    border-radius: 5px;

    position: relative;

    border: 1px solid #d51111;

    font-size:14px;

    

}



.chat-widget-name-left {

    color: #6792d5;

    margin-top: 30px;

    margin-left: 60px;

    text-align:left;

    font-weight:900;

    padding-bottom:20px;

    font-size:16px;

}

.chat-widget-name-right {

    color: #d51111;

    margin-top: 30px;

    margin-right: 60px;

    font-size:16px;

    text-align:right;

    font-weight:900;

    padding-bottom:20px;

    



}



/*==============================================

        Reviews Styles

    =============================================*/

#reviews {

    min-height:180px;

    background-color:#64A2DB;

	padding:15px;

}

#reviews h4 {

color: #fff;

line-height: 30px;

font-size: 16px;

}

#reviews .user-img {

border: 2px solid #fff;

overflow: hidden;

border-radius: 50%;

display: inline-block;

}



#reviews .img-u {

   max-height: 90px;

max-width: 90px;

}



#reviews .c-black {

    color:#fff;

    font-style: italic;

font-size: 20px;

padding: 5px;

}



/*==============================================

        NOTICE BOX STYLES

    =============================================*/



.noti-box {

min-height: 100px;

color:#fff;

padding: 20px;

}

.noti-box .icon-box {

display: block;

float: left;

margin: 0 15px 10px 0;

width: 70px;

height: 70px;

line-height: 75px;

vertical-align: middle;

text-align: center;

font-size: 40px;

}

.bg-color-black {

background-color: #424242;

color: #fff;

}

.main-text {

font-size: 25px;

font-weight: 600;

}

.color-bottom-txt {

font-size: 16px;

line-height: 30px;

}

.panel-back {

background-color: #929292;

}



/*==========================================

   GALLERY/ PORTFOLIO STYLES

    =====================================================*/



#port-folio {

    padding-top: 10px; 

    padding-bottom: 100px; 

}

.portfolio-item {

    border:1px solid #000;

    margin:3px;

}

    .portfolio-item p {

        padding:12px;

        color:#fff;

        line-height:25px;

    }



.portfolio-item .overlay {

   

  background-color: #000;

  text-align: center;

  padding-bottom:30px;

  

}



/*==========================================

   GALLERY/ PORTFOLIO FILTER STYLES

    =====================================================*/

ul#filters {

	padding: 0px;

}

#filters {

	margin: 3% 0;

	padding: 0;

	list-style: none;

	text-align: center;

}

	#filters li {

		display: -webkit-inline-box;

	}

	#filters li span {

		display: block;

		padding: 5px 4px;

		text-decoration: none;

		color: #d51111;

		cursor: pointer;

		font-size: 18px;

	}

 	#port-folio .portfolio-item {

		-webkit-box-sizing: border-box;

		-moz-box-sizing: border-box;

		-o-box-sizing: border-box;

		width: 100%;		

        opacity:.2;

		float:left;

		overflow:hidden;

	}



/****my css*******/



.rowmargin{

margin-bottom:100px !important;

}



  fieldset.scheduler-border {

    border: 1px groove #ddd !important;

    padding: 0 1.4em 1.4em 1.4em !important;

    margin: 0 0 1.5em 0 !important;

    -webkit-box-shadow:  0px 0px 0px 0px #000 ;

            box-shadow:  0px 0px 0px 0px #000 ;

}



    legend.scheduler-border {

        font-size: 1.2em !important;

        font-weight: bold !important;

        text-align: left !important;

        width:auto;

        padding:0 10px;

        border-bottom:none;

    }



/*****end of my css******/

.notification-icon, .message-icon {
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.popover-content {color: #000;}

.badge-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff0000;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}
.modal-header .close {margin-top: -20px;}

