﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div:after {
    content: '';
    display: block;
    clear: both;
}

a {
    text-decoration: none !important;
}

body {
    font-family: "Hind", sans-serif !important;
    background-color: #f8f9fa;
}
 
 
.evikas-header-home {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 10px 0;
    /*box-shadow: 0px 4px 7px #1f0453;*/
    z-index: 1;
}

.evikas-logo-header {
}

.evikas-header-home .evikasmain-logo {
    height: 100px;
    /*filter: drop-shadow(5px 5px 10px #000000);*/
    background-color: #fff;
    padding: 10px 10px 10px 10px;
    border-radius: 50px;
       box-shadow: 
        inset 4px 4px 10px rgba(0, 0, 0, 0.25),
        inset -4px -4px 10px rgba(255, 255, 255, 0.8);

    transition: all 0.3s ease;
}

.landing-wrapper {
    min-height: 100vh;
    background-image: url('../images/evikasimg.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20px;
}
/* Glass Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

    .glass-card h1 {
        font-weight: 600;
    }

    .glass-card p {
        opacity: 0.9;text-transform: math-auto;
        font-style:italic;
    }

/* Optional: darker overlay for readability */
.landing-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}
 

.glass-card {
    position: relative;
    z-index: 1;
}
/* button */
.modern-btn {
  position: relative;
  padding: 12px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 500;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

/* Gradient glow layer */
.modern-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #ffffb4ba, transparent);
  opacity: 0; 
  transition: 0.4s;
}

/* Hover = modern micro interaction */
.modern-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Glow sweep */
.modern-btn:hover::before {
  opacity: 1;
  animation: shine 1s ease;
}

/* Smooth shine animation */
@keyframes shine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* Click feedback */
.modern-btn:active {
  transform: scale(0.96);
}

.modern-btn {
background:linear-gradient(125deg, #679267, #043927) !important;
  border: none;
  color: #fff;
}

.modern-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
/* Footer */
.fixedFooter {
    position: fixed;
    left: 0;
    bottom: 0;
    text-align: center;
    color: #fff;
    width: 100%;
    font-size: 13px;
    padding: 5px 0;
}


    .fixedFooter a {
        color: #fff;
        text-decoration: none !important;
        font-weight: bold;
    }
     .fixedFooter a:hover {
         text-decoration:underline !important;
     }


    /* Login button and fields */
    /* Login Button */
.open-btn {
  padding: 12px 30px;
  font-size: 18px;background: linear-gradient(125deg, #006500, #ffffb4ba) !important;
  border:0 !important;
  position:relative;overflow: hidden;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.open-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #ffffb4ba, transparent);
  opacity: 0;
  transition: 0.4s;
}


.open-btn:hover::before {
  opacity: 1;
  animation: shine 1s ease;

}
/* Overlay (Glassy + Blur) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

/* Active State */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box (Glass Card) */
.popup-box {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);

  transform: translateY(50px) scale(0.95);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Smooth appear */
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

/* Form styling */
.form-control {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
}

.form-control::placeholder {
  color: #eee;
}

.form-control:focus {
  background: rgba(255,255,255,0.3);
  box-shadow: none;
  color: #fff;
}

/* Captcha */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-img {
  height: 40px;
  border-radius: 5px;
}
 
.btn-login-sb {
  padding: 12px 30px;
  font-size: 18px;background: linear-gradient(125deg, #679267, #043927) !important;
  border:0 !important;
  position:relative;overflow: hidden;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;color:#fff !important;
}
.btn-login-sb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #ffffb4ba, transparent);
  opacity: 0;
  transition: 0.4s;
}


.btn-login-sb:hover::before {
  opacity: 1;
  animation: shine 1s ease;

}
/* Responsive */
@media (max-width: 576px) {
  .popup-box {
    padding: 20px;
  }
}


/* Cursor design */
body {
  cursor: url('cursor.png'), auto;
}

.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}

/* Hover effect */
a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
  transform: translate(-50%, -50%) scale(1.8);
}

/* Glow Cursor */
.custom-cursor {
    /* Glow Cursor */
  /*box-shadow: 0 0 15px rgba(255,255,255,0.8);*/
  /* Gradient Cursor */
  /*background: linear-gradient(45deg, #ff6b6b, #5f27cd);*/
}

/* Cursor style for mobile */
@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
}


/* Media Query */
/* ================= RESPONSIVE FIX ================= */

/* Tablets */
@media (max-width: 992px) {

  .evikas-header-home .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .evikasmain-logo {
    height: 70px !important;
    padding: 8px;
  }

  .open-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .glass-card {
    padding: 30px;
    max-width: 90%;
  }

  .glass-card h1 {
    font-size: 28px;
  }

  .glass-card p {
    font-size: 14px;
  }

  .modern-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
  .service-card {
      margin-bottom:20px;
  }
}


/* Mobile */
@media (max-width: 576px) {

  /* Header */
  .evikas-header-home {
    padding: 8px 0;
  }

  .evikas-header-home .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .evikasmain-logo {
    height: 55px !important;
    border-radius: 30px;
  }

  .open-btn {
    padding: 6px 14px;
    font-size: 13px;
  }

  /* Glass Card */
  .glass-card {
    padding: 20px;
    border-radius: 15px;
  }

  .glass-card h1 {
    font-size: 22px;
  }

  .glass-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Button */
  .modern-btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  /* Popup */
  .popup-box {
    max-width: 90%;
    padding: 20px;
  }

  .popup-box h4 {
    font-size: 18px;
  }

  /* Captcha stack */
  .captcha-box {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-img {
    width: 100%;
    height: auto;
  }

  /* Footer */
  .fixedFooter {
    font-size: 11px;
    padding: 6px 10px;
  }
}


/* Extra small devices */
@media (max-width: 400px) {

  .glass-card h1 {
    font-size: 20px;
  }

  .glass-card p {
    font-size: 12px;
  }

  .modern-btn {
    font-size: 13px;
  }
  .pagetitle h5 img.title-icon {
   display:none;
  }
  .backLinks {
  padding: 0px 15px !important;
  font-size: 14px !important;
}
}


/* Inner page design styles */
/* Inner pages */
.evikas-preheader {
background:linear-gradient(125deg, #679267, #043927) !important;
 padding:4px 0;
}
.evikas-preheader a {color:#fff;}
.homelink a{
    line-height:30px;
}
/* login Dropdown */
  /* Optional custom styling */
        .user-dropdown .dropdown-menu {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            min-width: 200px;
        }

        .user-dropdown .dropdown-item:hover {
            background-color: #f2f4f7;
        }
        .dropdown-menu .dropdown-item {
            color:#000;
        }
       .user-dropdown .dropdown-toggle {
  background-color: #fff;
  color: #000;
  border: 0;
  padding: 4px 20px;
}
       .evikas-header {
         background-color: #fff;
  padding: 5px 0;
  box-shadow: 0px 4px 7px #eee;
  position: relative;
  z-index: 1; 
       }
       .evikas-header:after {
           content:'';
           position:absolute;left:0;
           bottom:-1px;
           width:30%;height:3px;
           background-color:#006500;
       }
       .evikasmain-logo {
           height:80px;
       }
             .evikas-header-home {
                   position:fixed;
           top:0;left:0;
           width:100%;
         background-color:transparent;
           padding:10px 0;/*box-shadow:0px 4px 7px #1f0453;*/
       }
       .evikas-header-home .evikasmain-logo {
           height:100px;
       }

       .footer-inner {
    text-align:center;
    padding:10px 0;font-size:13px;
    color:#fff;
 background: linear-gradient(125deg, #006500, #ffffb4ba);
}
.footer-inner a {
    text-decoration: none !important;
  color: #fff;
  font-weight: 500;
}

.wrapper {
    height: 100%;
 
    min-height: 100vh;
    position: relative;
}
.wrapper:after {
    content:'';
    position:absolute;left:0;top:0;
       background-image: url('../images/evikaspattern.jpg');
        background-position: center ;
    width:100%;height:100%;
    opacity:.3;z-index:-1;
}
.greenBg {
    background: #dfffe0 !important;
}
.greenBg:hover {
    border:1px solid #40bb33 !important;
}
.yellowBg {
  background: #f8fbc3 !important;
}
.yellowBg:hover {
  border:1px solid #ccd35b !important;
}
.purpleBg {
  background:#faf6fa !important;
}
.purpleBg:hover {
  border:1px solid #956995 !important;
}
.service-card {
    position: relative;
  background: #f6f6f6;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  padding: 20px 15px;
  height: 100%;
  border-radius: 15px 7px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  overflow: hidden;
  width:100%;
}
.service-card:hover {
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  box-shadow: 0px 30px 60px 0px rgb(0, 0, 0, 0.2);
  transform: translateY(-7px);
  background: #fff;
}
.service-card a h5 {
    color:#000 !important;
}
.service-card a {
    width:100%;display:flex;
    gap:20px;
}
.service-icon img{
    height:50px;
}
.pagetitle {
    margin-bottom: 20px;
    padding: 10px 0;
}

.pagetitle h5 {
    font-size: 20px;
    margin: 0;
    padding: 12px 15px;
    /*display: inline-flex;
    align-items: center;
    gap: 10px;*/

    /*background: rgba(255, 255, 255, 0.6);*/
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 🔥 Fancy Icon Style */
.pagetitle h5 img.title-icon {
    height: 40px;
    width: 40px;
    padding: 6px;
    border-radius: 50%;

    background:linear-gradient(135deg, #0c6c09, #f8fbc3);
    
    box-shadow: 
        0 4px 10px rgba(0,0,0,0.2),
        inset 0 0 8px rgba(255,255,255,0.3);

    transition: all 0.3s ease;
}

/* ✨ Hover effect */
.pagetitle h5 img.title-icon:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
      0 4px 10px rgb(94, 157, 73), inset 0 0 8px rgba(255,255,255,0.3);
}

.backLinks {
    padding:10px 15px;font-size:17px;
}
.backLinks a{
    color:#185912;opacity:.8;
}
.backLinks a:hover {
    text-decoration:underline;
    opacity:1;
}
.backLinks img {
    height:20px;
}

/* registration Page styles */
 .register-card {
            max-width: 900px;
            width: 100%;
            border-radius: 20px;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            border: none;
        }

        .form-label {
            font-weight: 500;
            font-size: 14px;
        }

        .form-control,
        .form-select {
            border-radius: 10px;
            padding: 10px 12px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #4facfe;
            box-shadow: 0 0 0 0.15rem rgba(79,172,254,0.25);
        }

        .form-control::placeholder {
            font-size: 13px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4facfe, #00c6ff);
            border: none;
            border-radius: 30px;
            padding: 10px 30px;
            font-weight: 500;
            transition: 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .card-title {
            font-weight: 600;
            color: #333;
        }

        /* File input styling */
        input[type="file"] {
            padding: 8px;
        }

        /* Mobile spacing */
        @media (max-width: 768px) {
            .register-card {
                padding: 15px;
            }
        }


        /* Payment Gateway Response page styles */
         .gateway-response {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        /* Status Banner */
        .gateway-status {
            padding: 11px 20px;
            color: #fff;
            background: linear-gradient(135deg, #28a745, #5cd67a);
        }

        .status-icon {
            font-size: 50px;
            background: rgba(255,255,255,0.2);
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            margin: 0 auto 15px;
        }

        .gateway-status h3 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Details */
        .gateway-details {
            padding: 25px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 7px;
        }



        .detail-box {
            background: #f9fbfd;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #eee;
            transition: 0.3s;
        }



        .detail-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .detail-box span {
            font-size: 12px;
            color: #777;
            display: block;
        }

        .detail-box strong {
            font-size: 14px;
            color: #222;
        }

        /* Actions */
        .gateway-actions {
            padding: 25px;
            border-top: 1px solid #eee;
        }

        .btn {
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 500;
        }

        .btn-primary {
            background: linear-gradient(135deg, #007bff, #00c6ff);
            border: none;
        }

        .btn-outline-primary {
            border: 2px solid #007bff;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .redirect-note {
            font-size: 13px;
            color: #888;
        }

        /* Responsive tweak */
        @media (max-width: 576px) {
            .gateway-status {
                padding: 30px 15px;
            }

            .status-icon {
                width: 60px;
                height: 60px;
                line-height: 60px;
                font-size: 30px;
            }
        }


        /* Payment History page */
         .receipt-box {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: 0.3s;
        }

        .receipt-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .receipt-amount {
            background: linear-gradient(135deg, #198754, #20c997);
            color: #fff;
            padding: 30px 20px;
        }

        .receipt-amount h2 {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
        }

        .receipt-body {
            padding: 25px;
        }

        .receipt-section {
            margin-bottom: 15px;
        }

        .receipt-section small {
            color: #6c757d;
            display: block;
            font-size: 13px;
        }

        .receipt-section p {
            margin: 0;
            font-weight: 500;
            font-size: 15px;
        }

        .receipt-split {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .receipt-split div {
            flex: 1;
            background: #f8f9fa;
            padding: 10px;
            border-radius: 10px;
        }

        .receipt-divider {
            height: 1px;
            background: #e5e5e5;
            margin: 20px 0;
        }

        .receipt-actions {
            padding: 20px;
            background: #fafafa;
        }

        .btn {
            border-radius: 10px;
            font-weight: 500;
            padding: 10px;
        }

        /* Mobile Optimization */
        @media (max-width: 576px) {
            .receipt-amount h2 {
                font-size: 26px;
            }

            .receipt-body {
                padding: 20px 15px;
            }

            .receipt-actions {
                padding: 15px;
            }
        }


        /* Form style */
        .evikas-container{max-width:1200px;margin:auto;}
.evikas-card{background:#fff;border-radius:12px;box-shadow:0 4px 15px rgba(0,0,0,0.08);margin-bottom:25px;overflow:hidden;}
.evikas-header-table{background:#066343;color:#fff;padding:10px 20px;font-size:18px;font-weight:600;}
.evikas-body{padding:20px;}
.evikas-table th{background:#eef3ff;width:25%;}
.evikas-upload{border:2px dashed #ccc;padding:20px;text-align:center;border-radius:8px;cursor:pointer;}
.evikas-upload:hover{background:#f1f5ff;}
.userdrop {
    background: linear-gradient(125deg, #066206, #2bc028) !important;
  color: #fff !important;
}
.btn-primary {
      background:linear-gradient(125deg, #679267, #043927) !important;
  color: #fff !important;border:none !important;
}

.evikas-upload {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.evikas-upload:hover {
    background: #f1f5ff;
    border-color: #4a6cf7;
}

/* Hide input safely */
.evikas-upload input[type="file"] {
    display: none;
}

.preview-img {
    max-width: 100%;
    max-height: 120px;
    margin-top: 10px;
    border-radius: 6px;
}

.upload-text {
    text-align: center;
  display: block;
  font-weight: 600;
}



/* Widget custom */
.uw-widget-custom-trigger {
  border: none;
  border-radius: 70px;
  bottom: 40px !important;
  cursor: pointer;
  height: 50px !important;
  padding: 18px;
  position: fixed;
  right: 20px;
  display: flex;
  overflow: hidden;
  align-items: center;
  width: auto;
  max-width: 50px;
  transition: all 400ms;
  color: var(--color-white);
  background-color: var(--color-dark-blue-1);
  text-align: left;
  z-index: 99999;
  cursor: pointer;
  box-shadow: 0px 13px 14px -6px rgba(0, 0, 0, 0.35);
}

.uw-widget-custom-trigger img {
  width: 20px !important;
  height: 20px !important;
  margin-left: 5px;
  margin-top: 5px !important;
}
.short-key {
    display:none;
}


.servernew {
 position: fixed;
  right: 5px;
  bottom: 0;
  background-color: #fff770 !important;
  font-weight: 700;
  color: #000 !important;
  font-weight: 500;
  padding: 3px 13px !important;
  z-index: 999 !important;
  border-radius: 7px 7px 0 0;font-size:12px;
}