/*Components CSS Start*/
 html, body{
     margin: 0;
     padding: 0;
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
     font-weight: 500;
     line-height: 1.5;
     color: #777777;
     overflow-x: hidden;
     background-color: #ffffff;
}
 *,*:before,*:after{
     outline: none;
     box-sizing: border-box;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
}


/* ===== STATS SECTION ===== */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 60px 40px;
  text-align: center;
}

/* ===== STAT BOX ===== */
.stat-box {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.stat-box:nth-child(1){animation-delay:0.2s;}
.stat-box:nth-child(2){animation-delay:0.4s;}
.stat-box:nth-child(3){animation-delay:0.6s;}
.stat-box:nth-child(4){animation-delay:0.8s;}

.stat-box h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ff6a00;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
  color: #333;
}

/* ===== FADE UP ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #ff0000, #ff7009);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 34px;
  margin-bottom: 25px;
  animation: slideDown 1s ease;
}

/* ===== BUTTON GLOW ===== */
.cta-btn {
  background: #fff;
  color: #ff0000;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-
  ;
  position: relative;
  animation: pulse 1.6s infinite;
}

/* ===== PULSE EFFECT ===== */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ===== SLIDE DOWN ===== */
@keyframes slideDown {
  from { opacity:0; transform:translateY(-30px); }
  to { opacity:1; transform:translateY(0); }
}



/* ===== SECTION ===== */
.why-choose {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

/* ===== TITLE ===== */
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.section-title span {
  color: red;
  position: relative;
}

/* animated underline */
.section-title span::after {
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, red, orange);
  position: absolute;
  bottom: -6px;
  left: 0;
  animation: underline 1.5s infinite alternate;
}

@keyframes underline {
  from { width: 40%; }
  to { width: 100%; }
}

/* ===== GRID ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* ===== CARD ===== */
.feature-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.feature-card:nth-child(1){animation-delay:0.2s;}
.feature-card:nth-child(2){animation-delay:0.4s;}
.feature-card:nth-child(3){animation-delay:0.6s;}
.feature-card:nth-child(4){animation-delay:0.8s;}

/* ===== ICON ===== */
.feature-card .icon {
  color: red;
  font-size: 18px;
  transition: transform 0.4s ease;
}

/* ===== HOVER EFFECT ===== */
.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(255,0,0,0.25);
}

.feature-card:hover .icon {
  transform: rotate(360deg) scale(1.2);
}

/* ===== FADE UP ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #ff0000, #ff5a00);
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* floating light animation */
.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  animation: float 6s infinite alternate;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
  animation: float 7s infinite alternate-reverse;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(40px); }
}

/* ===== CONTENT ===== */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content h2 span {
  color: #ffe600;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* ===== BUTTON ===== */
.cta-btn {
  position: relative;
  display: inline-block;
  padding: 16px 45px;
  background: #fff;
  color: #ff0000;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* glow wave */
.cta-btn span {
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(120deg, #ff0000, #ff7a00);
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.4s ease;
}

.cta-btn:hover span {
  width: 100%;
}

.cta-btn:hover {
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 45px rgba(255,255,255,0.4);
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .cta-content h2 {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 16px;
  }
}




 :root{
     --main_color: #ff0000;
}
 ::placeholder {
     font-weight : 300;
     color: #b3b3b3;
     opacity: 1;
    /* Firefox */
}
 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
     color: red;
}
 ::-ms-input-placeholder {
    /* Microsoft Edge */
     color: red;
}

.welcomePop.disNone, .modal-backdrop.disNone  {
  display: none !important;
}
.welcomePop .modal-body {
    border-radius: 5px;
    margin-top: 20px !important;
    width: 500px;
    margin: 0 auto;
    padding: 15px;
    background: #fff;
}
.welcomePop .modal-body img {
    height: auto;
}

 a,a:focus,a:hover{
     text-decoration: none;
}
 h1,h2{
     color: #333333;
}
 .section{
     padding: 60px 0px;
}
 .container{
     max-width: 1170px;
}
 ul{
     margin: 0;
     padding: 0;
     list-style: none;
}
 .padding-right-0 {
     padding-right: 0px;
}
 .as_heading_block{
     text-align: center;
     margin-bottom: 50px;
}
 .as_heading_block .circle_icon{
     text-align: center;
     margin-bottom: 20px;
}
 .as_heading_block > h2{
     font-size: 32px;
     line-height: 22px;
     color: #1c1c1c;
     position: relative;
     font-weight: 700;
     margin: 0;
     padding-bottom: 20px;
     text-transform: uppercase;
}
 .as_heading_block > h2::after{
     content: "";
     position: absolute;
     top: 100%;
     left: 50%;
     width: 80px;
     height: 1px;
     background-color: #000000;
     transform: translateX(-50%);
}
 .as_heading_block > h2 > span{
     color: var(--main_color);
}
 .as_subheading{
     text-align: center;
     margin-top: 20px;
}
 .as_subheading > p{
     margin: 0;
     font-weight: 400;
     line-height: 1.5;
}
 .as_btn_search{
     width: 100%;
     height: 40px;
     line-height: 39px;
     border: 1px solid transparent;
     outline: none;
     padding: 0px 10px;
     font-size: 14px;
     font-weight: 300;
     letter-spacing: 2px;
     margin: 0;
     border-radius: 5px;
     text-align: center;
     display: inline-block;
     text-transform: uppercase;
     color: #ffffff;
     background-color: var(--main_color);
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .as_btn_search:hover{
     border-color: var(--main_color);
     color: var(--main_color);
     background-color: transparent;
}
.story_image {
    border-bottom: none !important;
    border: 1px dashed #f00;
    height: 190px;
    text-align: center;
}
 .as_btn{
     min-width: 150px;
     height: 45px;
     line-height: 45px;
     border: 1px solid transparent;
     outline: none;
     padding: 0px 10px;
     font-size: 14px;
     font-weight: 300;
     letter-spacing: 2px;
     margin: 0;
     border-radius: 5px;
     text-align: center;
     display: inline-block;
     text-transform: uppercase;
     color: #ffffff;
     background-color: #ff0000;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .as_btn:hover{
     border-color: #ff0000;
     color: #ff0000;
     background-color: transparent;
}
 .as_btn.d_block{
     display: block;
}
 .as_btn > span{
     margin-right: 5px;
}
 .view_more_block{
     text-align: center;
     margin-top: 50px;
}
 .btn_right.as_btn > span{
     margin-right: 0;
     margin-left: 5px;
     font-size: 18px;
     vertical-align: bottom;
}
 .form_block{
     margin-bottom: 7px;
}
 .search-page-label {
     text-transform: capitalize;
     font-weight: 500;
     color: #FFF;
     font-size: 12px;
     margin-bottom: 5px;
}
 .form_block > h6{
     text-transform: capitalize;
     font-weight: 500;
     color: #333333;
     font-size: 16px;
     margin-bottom: 10px;
}
 select{
     background: #fff !important;
}
 .form_block .form_field{
     background: #fff !important;
     font-weight : 400;
     color : #797979;
     height: 50px;
     width: 100%;
     border-radius: 0px;
     padding: 0 5px;
     border-bottom: 1px solid #cccccc !important;
     outline: none;
     border: none;
}
 .form_block .form_field:focus{
     font-size : 22px;
     color : #000000;
     border-bottom: 1px solid #ff0000 !important;
}
 .form_block textarea.form_field{
     padding-top: 15px;
}
 .form_block .searc-page-form-feild{
     height: 35px;
     width: 100%;
     border-radius: 0px;
     padding: 0px 20px;
     border: 1px solid #cccccc;
     outline: none;
}
 .form_block .searc-page-form-feild:focus{
     outline: none;
     border-color: rgba(255, 0, 0, 0.2);
     box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}
 .form_block textarea.searc-page-form-feild{
     padding-top: 15px;
}
 .inner_page .as_top_header{
     background-color: var(--main_color);
     display: none;
}
 .inner_page .as_header_wrapper {
     background-color: #ffffff;
     box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.065);
}
 .as_checkbox {
     position: relative;
}
 .as_checkbox > input {
     position: absolute;
     left: -99999px;
}
 .as_checkbox > label {
     color: #5e686d;
     font-weight: 500;
     font-size: 14px;
     text-transform: capitalize;
     cursor: pointer;
     position: relative;
}
 .as_checkbox > label::before {
     content: "";
     display: inline-block;
     width: 16px;
     height: 16px;
     background-color: #f4f7fb;
     border: 1px solid #dee6f0;
     border-radius: 3px;
     vertical-align: middle;
     margin-right: 10px;
     -webkit-transform: translateY(-1px);
     -moz-transform: translateY(-1px);
     transform: translateY(-1px);
}
 .as_checkbox > label::after {
     content: "";
     position: absolute;
     top: 0px;
     left: 3px;
     width: 15px;
     height: 8px;
     opacity: 0;
     visibility: hidden;
     border-bottom: 3px solid var(--main_color);
     border-left: 3px solid var(--main_color);
     -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
     transform: rotate(-45deg);
}
 .as_checkbox > input:checked ~ label::after {
     opacity: 1;
     visibility: visible;
}
 .check_radio_group{
     margin-top: 15px;
     display: flex;
     align-items: center;
}
 .check_radio_group .as_checkbox{
     margin-right: 20px;
}
 .breadcrumb_wrapper{
     position: relative;
     background: url('../images/breadcrumb_bg.jpg') no-repeat center;
     background-size: cover;
     padding: 90px 0px 30px;
     z-index: 1;
}
 .breadcrumb_wrapper:before{
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
     background-color: rgba(0,0,0,0.7);
     z-index: -1;
}
 .breadcrumb_wrapper .breadcrumb_inner{
     text-align: center;
     margin-bottom: 27px;
}
 .breadcrumb_wrapper .breadcrumb_inner h3{
     font-size: 32px;
     font-weight: 600;
     color: #ffffff;
     text-transform: capitalize;
}
 .breadcrumb_block{
     position: absolute;
     left: 50%;
     bottom: -25px;
     transform: translateX(-50%);
     padding: 14px 20px;
     background-color: var(--main_color);
     border-radius: 30px;
     z-index: 1;
}
 .breadcrumb_block ul li{
     display: inline-block;
     color: #ffffff;
     position: relative;
     margin-right: 15px;
     text-transform: capitalize;
}
 .breadcrumb_block ul li a{
     color: #ffffff;
}
 .breadcrumb_block ul li:before, .breadcrumb_block ul li:after{
     content: "/";
     position: absolute;
     top: 50%;
     right: -10px;
     transform:translateY(-50%);
}
 .breadcrumb_block ul li:after{
     right: -15px;
}
 .breadcrumb_block ul li:last-child{
     margin: 0;
}
 .breadcrumb_block ul li:last-child:before, .breadcrumb_block ul li:last-child:after{
     display: none;
}


/* nortification start*/

.notif {
     font-size: 17px;
     margin-right: 7px;
}

.nortification_window{
         overflow: auto;
         position: fixed;
         top: 0;
         right: -300px;
         bottom: 0;
         width: 300px;
         padding: 38px 0px 30px;
         background-color: #fbfbfb;
         z-index: 999;
         transition: all 0.3s ease-in-out;
         -webkit-transition: all 0.3s ease-in-out;
         -moz-transition: all 0.3s ease-in-out;
    }
     .nortification_window.show{
         box-shadow: -10px 0px 10px 1px rgba(170, 170, 170, 0.25);
         right: 0;
    }
     .close_menu_1{
     cursor: pointer;
     padding: 10px;
     top: 0;
     position: absolute;
     display: inline-block;
     color: #f00;
    }


    .nortification_window::-webkit-scrollbar {
    width: 3px;
    height: 1px;
}
    .nortification_window::-webkit-scrollbar-button {
    background: #eee;
}
    .nortification_window::-webkit-scrollbar-track-piece {
    background: #fff;
}
    .nortification_window::-webkit-scrollbar-thumb {
    background: #eee;
}



    .nortification_title {
    padding: 10px 10px;
    background: #f00;
    color: #fff;
    margin-top: 2px;
    }
    .n_list_ul {
     padding: 0px
    }

    .n_list_ul li {
     border-bottom: 1px solid #efefef;
     padding: 8px;
    }
     .n_click {
          display: flex;
     }
     .n_pic {
     margin-right: 7px;
     background-position: center;
     height: 75px;
     width: 100px;
     background-size: cover;
     background-repeat: no-repeat;
     }
     .n_text {
          width: -webkit-fill-available;
          padding: 0px;
     }
     .n_title {
          word-break: unset;
          line-height: 18px;
          color: #000;
          padding: 0px;
          overflow: hidden;
          text-overflow: ellipsis;
          width: 96%;
          height: 57px;
     }
     .n_hours {
          color: #ff0000;
          font-size: 11px;
          padding: 0px;
     }

     .n-dp {
          width: 86px;
     }
    


/* nortification end*/
/*Component CSS End*/
/*Header CSS Start*/
 .as_header_wrapper{
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 999;
}
 .as_header_wrapper.header_fixed{
     background-color: #ffffff;
     box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.065);
}
 .as_header_wrapper.header_fixed .as_top_header{
     height: 0;
     overflow: hidden;
     opacity: 0;
     visibility: hidden;
     padding: 0;
}
 .as_top_header{
     padding: 10px 0px;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .as_top_header .as_top_header_inner{
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .header_contact_wrapper > ul > li{
     display: inline-block;
     margin-right: 20px;
     font-size: 12px;
     font-weight: 400;
     color: #ffffff;
}
 .header_contact_wrapper > ul > li > span{
     margin-right: 10px;
     display: inline-block;
     font-size: 18px;
}
 .fa-whatsapp{
     color: #25D366;
     font-size: 20px;
}
.header_login_wrapper > ul > li {
    border-right: 1px solid #f77;
    display: inline-block;
    padding: 0 10px;
}

.header_login_wrapper > ul > li:last-child {
    border-right: none;
}
.nortficatipn-bell {
    position: relative;
    font-size: 18px;
    top: 1px; 
}
 .header_login_wrapper > ul > li > a{
     display: inline-block;
     text-transform: uppercase;
     color: #ffffff;
     font-size: 12px;
     font-weight: 400;
}
 .header_login_wrapper > ul > li > a > span{
     margin-right: 5px;
     vertical-align: text-bottom;
     display: inline-block;
}
 .as_bottom_header .as_bottom_header_inner{
     background-color: #ffffff;
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .as_logo_block{
     padding: 14px 10px;
}
 .menu_toggle > span{
     color: #000000;
     cursor: pointer;
     display: inline-block;
     font-size: 20px;
     display: none;
}
 .close_menu{
     display: none;
     color: #ffffff;
     font-size: 18px;
     position: absolute;
     top: 10px;
     right: 20px;
     cursor: pointer;
}
 .as_menu_block > ul > li{
     display: inline-block;
     margin: 0px 5px;
}
 .as_menu_block > ul > li > a{
     display: inline-block;
     padding: 30px 10px;
     text-transform: uppercase;
     color: #333333;
     font-size: 12px;
     font-weight: 500;
     position: relative;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .as_menu_block > ul > li > a::after{
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 3px;
     transform: scaleX(0);
     -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
     background-color: var(--main_color);
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .as_menu_block > ul > li > a:hover, .as_menu_block > ul > li > a.active{
     color: var(--main_color);
}
 .as_menu_block > ul > li > a:hover::after, .as_menu_block > ul > li > a.active::after{
     transform: scaleX(1);
     -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
}
/*Header CSS End*/

.hero_section {
  height: 100vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroSlider 10s infinite ease-in-out;
}

/* SLIDE IMAGES */
@keyframes heroSlider {
  0% {
    background-image: url("https://i.pinimg.com/736x/a0/42/ec/a042ec9ad9885dfb54801864281c5fb2.jpg");
  }
  33% {
    background-image: url("https://media.istockphoto.com/id/866987662/photo/indian-wedding-hands.jpg?s=612x612&w=0&k=20&c=hhsB9WHEb7PAUp23HG42e3TKYWBDFoDojLusW1PoZLE=");
  }
  66% {
    background-image: url("https://media.istockphoto.com/id/1186214696/photo/hindu-wedding-ritual-wherein-bride-and-groom-hand.jpg?s=1024x1024&w=is&k=20&c=zO6Lbrbuy127Qlx8kkm-k2R281tQA153NW_tEWizPHc=");
  }
  100% {
    background-image: url("https://www.agraseva.com/assets/images/banner2.jpg");
  }
}

/* Overlay */
.hero_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* Content */
.hero_content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero_subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero_title {
  font-size: 48px;
  margin: 15px 0;
  color: white;
}

.hero_title span {
  color: #ff0000;
}

.hero_desc {
  max-width: 600px;
  margin: auto;
  font-size: 18px;
  opacity: 0.9;
}

/* Button */
.hero_btn {
  display: inline-block;
  margin-top: 25px;
  background: linear-gradient(135deg, #ff0000, #ff7b00);
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.4s;
}

.hero_btn:hover {
  background: #fff;
  color: #ff0000;
}




.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-header {
  margin-bottom: 50px;
}

.about-icon img {
  width: 70px;
  margin-bottom: 15px;
}

.about-title {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-title span {
  color: red;
  position: relative;
}

/* animated underline */
.about-title span::after {
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, red, orange);
  position: absolute;
  bottom: -6px;
  left: 0;
  animation: underline 1.5s infinite alternate;
}


.about-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 8px;
}

/* Section spacing */
.about-body {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: justify;
}

/* Text column spacing */
.about-body .col-md-6:first-child {
  padding-right: 35px;
}

/* Paragraph spacing */
.about-body p {
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 16px;
  color: #444;
}

/* Image spacing */
.about-image {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 10px;
}

/* Mobile spacing fix */
@media (max-width: 767px) {
  .about-body {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .about-body .col-md-6:first-child {
    padding-right: 15px;
    margin-bottom: 25px;
  }
}
.about-icon img {
  width: 70px;
  animation: slowRotate 12s linear infinite;
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*About CSS End*/

/*Stories CSS Start*/
 .stories_wrapper{
     position: relative;
     background: url('../images/stories_bg.jpg') no-repeat center;
     background-size: cover;
     z-index: 1;
}
 .stories_wrapper::before{
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
     background-color: rgba(255, 255, 255, 0.7);
     z-index: -1;
}
 .stories_wrapper .as_heading_block .as_subheading p{
     color: #1c1c1c;
}
 .story_block{
     box-shadow: 0px 0px 18px 1px rgba(0,0,0,0.07);
}

.story_image > img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

 .story_block > .story_name{
     background-color: #ffffff;
     padding: 20px 10px;
     display: flex;
     align-items: center;
     justify-content: space-between;
}

.story_block > .story_name > h3 {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 36px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
    font-weight: 400;
}

 .story_block > .story_name > a{
     display: inline-block;
     text-align: center;
     font-size: 12px;
     color: #ffffff;
     text-transform: capitalize;
     border-radius: 30px;
     background-color: var(--main_color);
     padding: 5px 10px;
}
/*Stories CSS End*/

/* ===== PREMIUM GALLERY CARD ===== */
.pg-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s cubic-bezier(.22,1,.36,1),
              box-shadow 0.6s ease;
}

.pg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.pg-card:hover::before {
  transform: translateX(100%);
}

.pg-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ===== IMAGE ===== */
.pg-image {
  position: relative;
  overflow: hidden;
}

.pg-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.22,1,.36,1),
              filter 0.6s ease;
}

.pg-card:hover .pg-image img {
  transform: scale(1.15) rotate(1deg);
  filter: brightness(0.85);
}

/* ===== OVERLAY ===== */
.pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.45)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pg-card:hover .pg-overlay {
  opacity: 1;
  transform: scale(1);
}

/* ===== PLUS ICON EFFECT ===== */
.pg-overlay img {
  width: 60px;
  height: 60px;
  background: #fff;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulseGlow 2s infinite;
  transition: transform 0.5s ease;
}

.pg-overlay img:hover {
  transform: rotate(180deg) scale(1.15);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255,255,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/* ===== TITLE ===== */
.pg-title {
  position: relative;
  padding: 18px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.pg-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  transition: width 0.5s ease, left 0.5s ease;
}

.pg-card:hover .pg-title::after {
  width: 100%;
  left: 0;
}

.pg-title h4 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.3px;
  transition: color 0.4s ease, transform 0.4s ease;
}

.pg-card:hover .pg-title h4 {
  color: #dd2476;
  transform: translateY(-4px);
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 767px) {
  .pg-image img {
    height: 220px;
  }
}






/* GALLERY CARD */
.gallery_block {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

/* CARD HOVER LIFT */
.gallery_block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(255,0,0,0.25);
}

/* IMAGE */
.gallery_image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* IMAGE ZOOM */
.gallery_block:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.overlay_gallery_block {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255,0,0,0.65),
    rgba(0,0,0,0.75)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

/* SHOW OVERLAY */
.gallery_block:hover .overlay_gallery_block {
  opacity: 1;
}

/* PLUS ICON */
.overlay_gallery_block img {
  width: 55px;
  height: 55px;
  transform: scale(0.6) rotate(-90deg);
  transition: all 0.5s ease;
}

/* ICON ANIMATION */
.gallery_block:hover .overlay_gallery_block img {
  transform: scale(1) rotate(0deg);
}

/* TITLE */
.gallery_title {
  text-align: center;
  margin-top: 12px;
}

.gallery_title h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  transition: color 0.3s ease;
}

/* TITLE COLOR ON HOVER */
.gallery_block:hover + .gallery_title h4 {
  color: #ff0000;
}

/* FADE IN ANIMATION */
.col-md-4 {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* News CSS Start*/
.as_news{
     padding: 60px 0 51px;
}
.news_img{
     margin-bottom: 20px;
}
.news_img img{
     width: 100%;
     border-radius: 5px;
}
.news_head >ul >li{
     color: #777777;
     font-size: 16px;
}
.news_head >ul >li > a{
     color: var(--main_color);
}
.news_content > a >h2{
     padding-top: 10px;
     font-size: 20px;
     font-weight: 800;
     color: #1c1c1c;
     text-transform: capitalize;
     transition: all 0.3s;
} 
.news_content > a >h2:hover{
     color: var(--main_color);
}
.content_p{
     color: #777777;
     margin-bottom: 7px;
}
.news_content blockquote {
     font-size: 15px;
     background: #f5f5f5;
     padding: 10px 20px;
    margin: 10px 0;
    border-left: 5px solid var(--main_color);
 }
 .news_content blockquote a.block_span {
     color: var(--main_color);
 }
 .news_footer{
      width: 100%;
      padding: 15px 0 40px;
 }
 .news_footer_left{
      float: left;
 }
 .top li{
     display: inline-block;
     margin-right: 10px;
 }
 .top li > a{
     color: #ffffff;
     font-size: 16px;
 }
 .top li > a > i{
      color: var(--main_color);
 }
 .news_footer_right{
      float: right;
      text-align: right;
 }
/*  .comments-title {
     margin-bottom: 25px;
     font-size: 20px;
    line-height: normal;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
 }
 .comment_wrapper {
     width: 100%;
 }
 .comments{
      display: flex;
 }
 .comments .authore_img {
     width: 100px;
     height: 100px;
 }
 .comments .authore_img img{
      max-width: 100%;
 }
 .comments .content {
     width: calc(100% - 100px);
     float: left;
     padding-left: 15px;
 }
 .comments .content .heading3 {
     line-height: 30px;
     margin-bottom: 5px;
     color: #ffffff;
     font-size: 18px;
 }
 .heading3 span.minutes {
     color: #bcbcbc;
     font-size: 16px;
 }
 .comments .content .date {
     width: 100%;
     float: left;
 }
 .comments .content .date span{
     color: var(--main_color);
     font-size: 14px;
     text-transform: capitalize;
     font-weight: 400;
     display: inline-block;
     vertical-align: middle;
 }
 .comments .content .date .reply {
     float: right;
 }
 .comnt_paragraph{
      margin-bottom: 5px;
      color: #ffffff;
 }
 .cmmnt_child{
      padding-left: 25px;
 }
 .cmmnt_child li{
      display: inline-block;
      margin: 15px 0;
 }
 .comment_form .form_block > input {
     height: 48px;
     width: 100%;
     border-radius: 50px;
     padding: 0px 30px;
     border: 1px solid #ffffff;
     background-color: transparent;
     outline: none;
     color: #ffffff;
 }
.comment_form .form_block > .form_field {
     width: 100%;
     height: 170px;
     border-radius: 30px;
     padding: 24px 30px;
     border: 1px solid #ffffff;
     background-color: transparent !important;
     outline: none;
     color: #ffffff;
 }
 .news_comment_form button{
     display: inline-block;
     text-align: center;
     font-size: 12px;
     color: #ffffff;
     text-transform: capitalize;
     border-radius: 30px;
     background-color: var(--main_color);
     padding: 5px 10px;
     outline: none;
     border: none;
     margin-bottom: 60px;
 }
.news_comment_form .form_block{
     margin-bottom: 30px;
} */
.as_sidebar_block .sidebar_block{
     margin-bottom: 30px;
}
.as_sidebar_block .sidebar_block > .siderbar_heading > h3 {
     font-size: 26px;
     font-weight: 600;
     color: #1c1c1c;
     position: relative;
     margin-bottom: 18px;
     text-transform: capitalize;
 }
 .as_sidebar_block .sidebar_block > .sidebar_search {
     position: relative;
     width: 100%;
 }
 .as_sidebar_block .sidebar_block > .sidebar_search >input {
     border: none;
     background-color: #f5f5f5;
     border-radius: 50px;
     width: 100%;
     height: 50px;
     padding: 0 45px 0 20px;
     outline: none;
 }
 .as_sidebar_block .sidebar_block > .sidebar_search >input::placeholder{
      text-transform: capitalize;
 }
 .as_sidebar_block .sidebar_block > .sidebar_search > a {
     position: absolute;
     top: 50%;
     right: 20px;
     color: #777777;
     transform: translateY(-50%);
     cursor: pointer;
 }
 .as_sidebar_block .sidebar_block >.sidebar_category > ul > li > a {
     display: inline-block;
     color: #777777;
     font-size: 15px;
     line-height: 2.2;
     transition: all 0.3s;
 }
 .as_sidebar_block .sidebar_block >.sidebar_category > ul > li > a:hover{
      color: var(--main_color);
 }
 .as_sidebar_block .sidebar_block >.sidebar_category > ul > li > a >span {
      display: inline-flex;
      vertical-align: middle;
     color: var(--main_color);
     margin-right: 14px!important;
 }
 .as_sidebar_block .sidebar_block >.sidebar_category > ul > li > span {
     color: #777777;
     float: right;
 }
 .as_sidebar_block .sidebar_block >.sidebar_insta ul > li {
     display: inline-block;
     margin-bottom: 11px;
     margin-right: 7px;
     overflow: hidden;
 }
 .as_sidebar_block .sidebar_block >.sidebar_insta ul > li > a >img {
     width: 80px;
     height: 80px;
     -webkit-transition: .4s ease-in-out;
     transition: .4s ease-in-out;
     -webkit-transform: rotate(0) scale(1);
     transform: rotate(0) scale(1);
 }
 .as_sidebar_block .sidebar_block >.sidebar_insta ul > li > a > img:hover{
     transform: rotate(15deg) scale(1.3);
 }
/* News CSS End*/

/* Contact-CSS Start
.as_contact{
     padding-top: 60px;
}
.contact_block{
     position: relative;
    box-shadow: 0px 0px 30px 1px rgba(0,0,0,0.09);
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    padding: 50px 10px 43px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.contact_block:before, .contact_block:after, .contact_block span:before, .contact_block span:after{
     position: absolute;
     content: "";
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: 1px solid transparent;
     border-width: 1px 0px 0px 1px;
     border-radius: 10px 0px 0px 0px;
     z-index: -1;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
.contact_block:after{
     top: auto;
     bottom: 0;
     border-radius: 0px 0px 0px 10px;
     border-width: 0px 0px 1px 1px;
}
.contact_block span:before{
     left: auto;
     right: 0;
     border-radius: 0px 10px 0px 0px;
     border-width: 1px 1px 0px 0px;
}
.contact_block span:after{
     top: auto;
     left: auto;
     bottom: 0;
     right: 0;
     border-radius: 0px 0px 10px 0px;
     border-width: 0px 1px 1px 0px;
}
.contact_block:hover:before{
     width: 90px;
     height: 60px;
     border-color: var(--main_color);
}
.contact_block:hover:after{
     width: 60px;
     height: 90px;
     border-color: var(--main_color);
}
.contact_block:hover span:before{
     width: 60px;
     height: 90px;
     border-color: var(--main_color);
}
.contact_block:hover span:after{
     width: 90px;
     height: 60px;
     border-color: var(--main_color);
}
.contact_block .contact_icon {
     margin-bottom: 15px;
 }
 .contact_block h4 {
     position: relative;
     padding-bottom: 14px;
     margin-bottom: 17px;
     text-transform: capitalize;
     font-size: 26px;
     color: #777777;
     font-weight: 600;
 }
 .contact_block p {
     margin: 0;
     font-size: 20px;
 }
 .as_getin{
      padding-top: 48px;
      text-align: center;
 }
 /* .as_main_head > h1{
     font-size: 32px;
     line-height: 1.5;
     font-weight: 700;
     color: #1c1c1c;
     margin-bottom: 2px;
 }
 .as_main_head > h1 >span{
      color: var(--main_color);
 }
 .as_main_head > p{
     color: #777777;
     margin-bottom: 40px;
} */
 /* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Segoe UI', sans-serif;
  background:#f4f6f9;
  color:#333;
  line-height:1.6;
}

/* ===== HERO ===== */
.contact-hero{
  background:linear-gradient(135deg,#ff6a00,#ff9a3c);
  color:#fff;
  padding:80px 20px;
  text-align:center;
  animation: fadeDown 1s ease;
}

.contact-hero h1{
  font-size:42px;
  margin-bottom:10px;
}

.contact-hero p{
  font-size:16px;
  opacity:0.9;
}

/* ===== WRAPPER ===== */
.contact-wrapper{
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
}

/* ===== CONTACT BOXES ===== */
.contact-boxes{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.contact-box{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
  animation: fadeUp 1s ease;
}

.contact-box::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,106,0,0.15),transparent);
  transition:0.6s;
}

.contact-box:hover::before{
  left:100%;
}

.contact-box:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 55px rgba(0,0,0,0.15);
}

/* ICON */
.contact-icon{
  width:80px;
  height:80px;
  background:linear-gradient(135deg,#ff6a00,#ff9a3c);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin:0 auto 20px;
  animation: pulse 2.5s infinite;
}

.contact-box h3{
  margin-bottom:10px;
  font-size:22px;
}

.contact-box a{
  display:block;
  text-decoration:none;
  color:#007bff;
  font-weight:600;
  margin:5px 0;
}

.contact-box p{
  font-size:15px;
  color:#555;
}

/* ===== FORM SECTION ===== */
.contact-form-section{
  margin-top:80px;
  background:#fff;
  padding:50px 35px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
  animation: fadeUp 1.2s ease;
}

.contact-form-section h2{
  text-align:center;
  margin-bottom:30px;
  font-size:30px;
}

/* FORM */
.contact-form-area{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.contact-form-area input,
.contact-form-area textarea{
  padding:15px;
  border:1px solid #ccc;
  border-radius:10px;
  font-size:15px;
  transition:0.3s;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus{
  border-color:#ff6a00;
  box-shadow:0 0 0 3px rgba(255,106,0,0.2);
  outline:none;
}

.contact-form-area textarea{
  grid-column:1/-1;
  height:130px;
  resize:none;
}

/* BUTTON */
.contact-submit-btn{
  grid-column:1/-1;
  padding:16px;
  background:linear-gradient(135deg,#ff6a00,#ff9a3c);
  color:#fff;
  border:none;
  border-radius:12px;
  font-size:18px;
  cursor:pointer;
  transition:0.4s;
}

.contact-submit-btn:hover{
  transform:scale(1.05);
  box-shadow:0 15px 35px rgba(255,106,0,0.4);
}

/* ===== MAP ===== */
.contact-map{
  margin-top:80px;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
  animation: fadeUp 1.3s ease;
}

/* ===== WHATSAPP BUTTON ===== */
.contact-whatsapp-btn{
  position:fixed;
  bottom:25px;
  right:25px;
  width:60px;
  height:60px;
  background:#25d366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:28px;
  text-decoration:none;
  box-shadow:0 15px 30px rgba(0,0,0,0.3);
  animation: bounce 2s infinite;
  z-index:999;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeDown{
  from{
    opacity:0;
    transform:translateY(-40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.1);}
  100%{transform:scale(1);}
}

@keyframes bounce{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

/* ===== RESPONSIVE ===== */
@media(max-width:600px){
  .contact-hero h1{
    font-size:32px;
  }
  .contact-form-section{
    padding:30px 20px;
  }
}

.as_getin .as_getin_form {
     text-align: left;
     background-color: #ffffff;
     padding: 45px 50px 50px;
     -webkit-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.1);
     box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.1);
     position: relative;
     z-index: 2;
 }
 .as_getin .as_getin_form >h1 {
     color: #1c1c1c;
     font-size: 22px;
     font-weight: 600;
     line-height: 1.3;
     margin-bottom: 24px;
 }
 .as_getin .form_input input {
     width: 100%;
     height: 50px;
     border: none;
     border-radius: 50px;
     background-color: #f5f5f5;
     margin-bottom: 30px;
     padding: 0 30px;
     outline: none;
 }
 .as_getin .form_input textarea {
     width: 100%;
     height: 170px;
     border: none;
     border-radius: 20px;
     background-color: #f5f5f5;
     padding: 25px 30px;
     margin-bottom: 24px;
     outline: none;
 }
 .submitform{
     display: inline-block;
     text-align: center;
     font-size: 12px;
     color: #ffffff;
     text-transform: capitalize;
     border-radius: 30px;
     background-color: var(--main_color);
     padding: 5px 10px;
     border: none;
     outline: none;
 }
 .as_map_wrapper{
      margin-top: 60px;
 }
 .as_map_wrapper > iframe {
     width: 100%;
     height: 710px;
     margin-bottom: -8px;
     border: none;
 }

/* Contact-CSS End*/
/* Breadcrumb-CSS Start*/
.as_pageinfo_wrapper {
     padding-top: 123px;
     position: relative;
     background: url("https://www.agraseva.com/assets/images/stories_bg.jpg") no-repeat center;
     background-size: cover;
     z-index: 1;
 }
 .as_pageinfo_wrapper::before {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
     background-color: rgba(0, 0, 0, 0.7);
     z-index: -1;
 }
 .as_pageinfo_wrapper .as_pageinfo_inner {
     text-align: center;
     padding: 45px 0;
 }
 .as_pageinfo_wrapper h1 {
     color: #ffffff;
     font-size: 32px;
     font-weight: 700;
     text-transform: capitalize;
 }
 .as_pageinfo_wrapper ul > li {
     display: inline-flex;
     color: var(--main_color);
     text-transform: capitalize;
 }
 .as_pageinfo_wrapper ul > li > a {
     display: inline-flex;
     color: #ffffff;
     text-decoration: none;
     font-size: 15px;
 }
/* Breadcrumb-CSS End*/
/* Dashboar sidebar*/
 .shadow-sidebar {
     box-shadow: 0px 0px 22px 1px rgba(0, 0, 0, 0.065);
     margin-top: 20px;
}
 .close-sb {
     display: none;
}
 ul li.dashboard-link {
    /* padding: 15px 20px;
     */
     list-style-type: none;
     border-bottom: 1px solid #f5f5f5;
     border-left: 2px solid #fff;
}
 ul li.dashboard-link a {
     line-height: 4px;
     padding: 15px 20px;
     display: block;
     color: #000;
}
 ul li.dashboard-link a:hover {
     background: var(--main_color);
     color: #fff;
}
 ul li.dashboard-link.activated{
     border-left: 3px solid var(--main_color) !important;
     box-shadow: 0px 0px 22px 1px rgba(0, 0, 0, 0.065);
     background: var(--main_color);
}
 ul li.dashboard-link.activated a{
     color: #fff;
}
 ul li.dashboard-link:hover {
     border-left: 3px solid var(--main_color);
     box-shadow: 0px 0px 22px 1px rgba(0, 0, 0, 0.065);
     color: var(--main_color);
}
 .d-link {
     top: 2px;
     margin-right: 10px;
     font-size: 20px;
     position: relative;
}
/*member start css*/
.member-section {
    padding: 20px;
}
.member-header {
    text-align: center;
    margin-bottom: 20px;
}
/* Top Button */
.register-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e60000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    
}

.register-btn:hover {
    background: #b40000;
}
.member-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px;
}

.member-card {
    display: flex;
    gap: 15px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}


.member-card:hover {
    transform: translateY(-4px);
}

/* Left Image */
.member-left img {
    width: 160px;
    height: 244px;
    object-fit: cover;
    border-radius: 10px;
}

/* Right Content */
.member-right {
    flex: 1;
}

.member-right h4 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #8b0000;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
     text-transform: capitalize;
}

.member-right h4:hover {
    color: #e60000;
    transition: 0.3s;
}
.member-right h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #e60000, #ff9900);
    border-radius: 3px;
}

.member-info p {
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}

.member-info span {
    font-weight: 600;
    color: #000;
}

/* Button */
.view-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #e60000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #b40000;
}
/*member css end*/

/*sidebar css start*/
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
    gap: 10px;
}

.sidebar-menu li {
    flex: 1;   /* Sab equal width lein */
}

.sidebar-menu li a {
    display: block;
    text-align: center;
    padding: 12px 5px;
    background: #f3f3f3;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.sidebar-menu li a:hover {
    background: #e60000;
    color: #fff;
}
/*sidebar css end*/







/* FOOTER */
.search-list-grid-footer {
  padding: 12px 18px;
  display: flex;
  justify-content: flex-end;
}

/* BUTTON */
.search-profile-button {
  background: #ff0000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.search-profile-button:hover {
  background: #000;
  transform: scale(1.1);
}

/* =========================
   TOP BUTTON
========================= */
.as_login_member {
  display: inline-block;
  background: linear-gradient(135deg, #ff0000, #c90000);
  color: #fff;
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: 0.3s;
  text-decoration: none;
}

.as_login_member:hover {
  transform: scale(1.08);
  background: #000;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width: 768px) {
  .search-list-info-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .search-list-profile-image {
    width: 120px;
    height: 140px;
  }

  .search-list-grid-footer {
    justify-content: center;
  }
}


/* profile-Password-Popup-start */
.as_pass_popup .popup-trigger {
     display: block;
     width: 170px;
     right: 2rem;
     margin: 3em auto;
     text-align: center;
     color: #FFF;
     font-size: 18px;
     padding:1rem 2rem;
     text-decoration:none;
     font-weight: bold;
     text-transform: uppercase;
     border-radius: 50em;
     background: #35a785;
     box-shadow: 0 3px 0 rgba(0, 0, 0, 0.07);
     transition:300ms all;
   }
   .as_pass_popup .popup {
     position: fixed;
     left: 0;
     top: 0;
     height: 100%;
     z-index: 1000;
     width: 100%;
     background-color: rgba(0,0,0, 0.8);
     opacity: 0;
     visibility: hidden;
     transition:500ms all;
   }
.as_pass_popup .popup.is-visible {
     opacity: 1;
     visibility: visible;
    transition:1s all;
   }
   
.as_pass_popup .popup-container {
     transform:translateY(-50%);
     transition:500ms all;
     position: relative;
     width: 100%;
     max-width: 500px;
     margin: 2em auto;
     top: 5%;
     padding:5rem;
     background: #FFF;
     border-radius: .25em .25em .4em .4em;
     text-align: center;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
   }
   .as_pass_popup .is-visible .popup-container {
     transform:translateY(0);
     transition:500ms all;
   }
   .as_pass_popup .popup-container .popup-close {
     position: absolute;
     top: -12px;
     font-size:0;
     right: -12px;
     width: 30px;
     height: 30px;
     background-color: var(--main_color);
     border-radius: 50%;
   }
   .as_pass_popup .popup-container .popup-close::before {
     -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
     -o-transform: rotate(45deg);
     transform: rotate(45deg);
     left: 8px;
   }
.pass_inputs input{
     border: 1px solid rgb(119, 119, 119,0.5);
     width: 100%;
     height: 40px;
     padding: 0 15px;
     margin-bottom: 20px;
     border-radius: 5px;
}
.pass_head{
     font-size: 20px;
     color: #1c1c1c;
     font-weight: 700;
     text-transform: capitalize;
     margin-bottom: 20px;
}
.pass_inputs input::placeholder{
     text-transform: capitalize;
}
/* .pass_inputs button{
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 10px 20px;
     text-transform: capitalize;
     outline: none;
     border: none;
     border-radius: 30px;
     background-color: var(--main_color);
     color: #ffffff;
} */
.popup-container .popup-close {
     position: absolute;
     top: 8px;
     font-size:0;
     right: 8px;
     width: 30px;
     height: 30px;
   }
   
   
   .popup-container .popup-close::before,
   .popup-container .popup-close::after {
     content: '';
     position: absolute;
     top: 12px;
     width: 14px;
     height: 3px;
     background-color: #ffffff;
   }
   
   .popup-container .popup-close::before {
     -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
     -o-transform: rotate(45deg);
     transform: rotate(45deg);
     left: 8px;
   }
   
   .popup-container .popup-close::after {
     -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
     -o-transform: rotate(-45deg);
     transform: rotate(-45deg);
     right: 8px;
   }
   
/* profile-Password-Popup-end */

/* profile-view-start */
 .profile_view_section {
     padding: 15px 15px;
     box-shadow: 0px 0px 30px 1px rgba(0,0,0,0.06);
     border-radius: 10px;
}
 .head-section-pro-view {
     padding-bottom: 15px;
     border-bottom: 1px solid #dedede;
}
 .main_heading h3 {
     padding: 15px 0;
     font-size: 26px;
     font-weight: 600;
     color: #222222;
     text-transform: capitalize;
}
 div.profile-slider {
}
 div.col-lg-8.col-md-8 h2 {
     font-variant: petite-caps;
     margin-bottom: 0px;
     font-size: 28px;
     padding: 0 0 20px 0;
}
 div.short-detail h2 span {
     font-weight: 200;
}
 div.col-lg-8.col-md-8 em {
     font-style: unset;
     color: #000;
     line-height: 30px;
     font-weight: 300;
}
 div.heading-title {
     font-weight: 600;
     margin: 10px 0px;
     color: #000;
}
 .short-detail {
     display: flex;
}
 .short-detail p {
     align-self: flex-end;
     margin: 0;
     padding: 0 10px 2px;
     color: #f00;
}
 div.col-lg-8.col-md-8 em span {
     font-weight: 300;
}
 .marker-city {
     color: #f00;
     margin-right: 5px;
}
 .profile_form_view {
     padding: 0px 10px;
     margin-bottom: 30px;
}

.profile_form_view_fam {
    padding: 0px 0px;
    margin-bottom: 30px;
}
 label.occupation-heading {
     align-self: center;
     padding-left: 20px;
     flex: 1;
     margin-bottom: 0px;
     font-weight: 300;
     font-size: 14px;
}
 label.occupation-heading:before {
     position: absolute;
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     content: "\f666";
     left: 15px;
     top: 15px;
     color: #ff0000;
}
 .form_block_2 {
     padding: 15px 0px;
     display: flex;
     margin: 0;
     border-bottom: 1px dashed #d4d4d4;
     font-size: 16px;
     text-transform: capitalize;
     color: #222222;
}
 .value-record {
     border-left: 1px solid #eee;
     align-self: center;
     line-height: 20px;
     word-wrap: break-word;
     max-width: 50%;
     flex: 1;
     font-weight: 500;
     padding-left: 15px;
     margin-top: -2px;
     margin-bottom: 0;
}


.value-record-family {
     border-left: 1px solid #eee;
     align-self: center;
     line-height: 20px;
     word-wrap: break-word;
     max-width: 100%;
     flex: 1;
     font-weight: 500;
     padding-left: 15px;
     margin-top: -2px;
     margin-bottom: 0;
}

.p-0 { padding: 0px; }
/*.value-record:before {
     position: relative;
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     content: "\f666";
     left: -5px;
     top: 1px;
     color: #ff00009c;
}
 */
 .form_block_3 {
     flex: 1;
     padding: 11px 0px;
     margin: 0;
    /* border-bottom: 1px dashed #d4d4d4;
     */
     font-size: 16px;
     text-transform: capitalize;
     color: #222222;
}
 label.occupation-heading-1 {
     padding-left: 0px;
     flex: 1;
     margin-bottom: 0px;
     font-weight: 300;
     font-size: 14px;
}
 label.occupation-heading-1:before {
    /* position: relative;
     */
    /* font-family: "Font Awesome 5 Free";
     */
    /* font-weight: 900;
     */
    /* content: "\f666";
     */
     left: -5px;
     top: 0px;
    /* color: #ff0000;
     */
}
 .value-record-1 {
     flex: 1;
     font-weight: 500;
     padding-left: 0px;
     margin-top: 0px;
     margin-bottom: 0;
}
/*.value-record-1:before {
     position: relative;
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
     content: "\f666";
     left: -5px;
     top: 1px;
     color: #ff00009c;
}
*/
 .short-detail-box {
     display: flex;
     border-bottom: 1px dashed #d4d4d4;
}
 .short-detail-box:last-child {
     border-bottom: none;
}
div.short-detail > h2 {padding: 0px !important;}

/* profile-view-end */
 .list-sorting-icons {
     padding: 0px;
}
 .likes-thumb {
     color: #078e69;
     position: relative;
     left: 20px;
     top: -9px;
     font-size: 18px;
}
 .dislikes-thumb {
     color: #f40000;
     position: relative;
     left: 20px;
     top: -9px;
     font-size: 18px;
}
/* The list-sorting-icons */
 .list-sorting-icons {
     width: 70px;
     display: block;
     position: relative;
     padding-left: 10px;
     margin-bottom: 0px;
     cursor: pointer;
     font-size: 22px;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
}
/* Hide the browser's default radio button */
 .list-sorting-icons input {
     position: absolute;
     opacity: 0;
     cursor: pointer;
}
/* Create a custom radio button */
 .checkmark {
     border: 1px solid #afafaf;
     position: absolute;
     top: 0;
     left: 0;
     height: 18px;
     width: 18px;
     background-color: #fff;
     border-radius: 50%;
}
/* On mouse-over, add a grey background color */
 .list-sorting-icons:hover input ~ .checkmark {
     background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
 .list-sorting-icons input:checked ~ .checkmark {
     background-color: #fd0000;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
 .checkmark:after {
     content: "";
     position: absolute;
     display: none;
}
/* Show the indicator (dot/circle) when checked */
 .list-sorting-icons input:checked ~ .checkmark:after {
     display: block;
}
/* Style the indicator (dot/circle) */
 .list-sorting-icons .checkmark:after {
     top: 5px;
     left: 5px;
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: white;
}
 .pagination-list-page {
     display: flex;
}
 .pagination-listing {
     display: flex;
}
 ul li.list-number a {
     padding: 5px 0;
     min-width: 32px;
     display: block;
     color: #000;
     border: 1px solid #e0e0e0;
     margin-right: 4px;
     border-radius: 1px;
     text-align: center;
     height: 32px;
}
 .active-pagination, ul li.list-number a:hover {
     background: var(--main_color);
     color: #fff !important;
}
.img-box{
  width: 300px;        /* card width */
  height: 400px;       /* card height */
  overflow: hidden;
  border-radius: 12px;
}

.img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 perfect crop */
  object-position: top; /* focus on face */
}

/*about css*/
.about-section{
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  text-align: center;
}

.about-container{
  max-width: 900px;
  margin: auto;
}

.about-icon img{
  width: 60px;
  margin-bottom: 15px;
}

.about-title{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-title span{
  color: #ff0000;
}

.about-subtitle{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
}

.about-content{
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-content p{
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

.about-content strong{
  color: #000;
}

/*about css end*/

/* birthday css start */
.as_birthday_block {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE WRAPPER (FIXED SIZE)
========================= */
.birthday_image {
  width: 100%;
  height: 260px;            /* FIXED HEIGHT */
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

/* =========================
   IMAGE PERFECT FIT
========================= */
.birthday_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* MAIN FIX */
  object-position: center; /* CENTER FACE/BODY */
  display: block;
  transition: transform 0.6s ease;
}

/* =========================
   HOVER ZOOM EFFECT
========================= */
.as_birthday_block:hover .birthday_image img {
  transform: scale(1.08);
}

/* =========================
   ACTIVE SLIDE EFFECT
========================= */
.swiper-slide-active .as_birthday_block {
  transform: translateY(-14px);
  box-shadow: 0 35px 70px rgba(255,0,0,0.3);
}

/* =========================
   TEXT STYLING
========================= */
.as_birthday_block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 16px;
  color: #111;
}

.as_birthday_block h6 {
  font-size: 14px;
  font-weight: 600;
  color: #ff0000;
  margin-bottom: 10px;
}

.as_birthday_block p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* =========================
   ARROW STYLE (OPTIONAL)
========================= */
.birthday_arrow span {
  background: #ff0000;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.birthday_arrow span:hover {
  background: #000;
}

.birthday_slider_wrapper{
  position: relative;
}

/* Common arrow style */
.birthday_arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
}

.birthday_arrow i{
  color: #fff;
  font-size: 18px;
}

/* LEFT arrow */
.birthday_arrow_prev{
  left: -25px;   /* move outside card */
}

/* RIGHT arrow */
.birthday_arrow_next{
  right: -25px;  /* move outside card */
}


/*Birthday CSS end*/


/*Blog CSS Start*/
 .as_blog_wrapper{
     position: relative;
     background: url('../images/stories_bg.jpg') no-repeat center;
     background-size: cover;
     z-index: 1;
}
.as_blog_wrapper_nws{
     background: #ffffff !important;
}
.as_blog_wrapper_nws::before{
     display: none;
}
.as_blog_wrapper_nws .blog_block {
     border-radius: 10px;
}
.as_blog_wrapper_nws .blog_block > .blog_content{
     border-radius: 0 0 10px 10px;
}
.as_blog_wrapper_nws .blog_image img{
     border-radius: 10px 10px 0 0;
}
 .as_blog_wrapper::before{
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
     background-color: rgba(0, 0, 0, 0.7);
     z-index: -1;
}
 .as_blog_wrapper .as_heading_block h2::after{
     background-color: #ffffff;
}
 .blog_block{
     position: relative;
     box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.065);
    
}
.blog_block {
  height: 100%;
}
/* =========================
   EVENT CARD MAIN
========================= */
.event-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin: 20px;
}

/* =========================
   GRADIENT BORDER
========================= */
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ff0000, #ff9800, #ff0000);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* =========================
   TOP COLOR BAR
========================= */
.event-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #ff0000, #ff9800);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

/* =========================
   HOVER EFFECT
========================= */
.event-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(255, 0, 0, 0.2);
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.03),
    rgba(255, 152, 0, 0.04)
  );
}

.event-card:hover::before {
  opacity: 1;
}

/* =========================
   IMAGE EFFECT
========================= */
.event-img {
  overflow: hidden;
  border-radius: 12px;
}

.event-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.12);
}

/* =========================
   CONTENT
========================= */
.event-content {
  padding-top: 18px;
}

.event-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #d90000;
  margin-bottom: 10px;
  position: relative;
}

/* Heading underline animation */
.event-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #ff9800);
  transition: width 0.4s ease;
}

.event-card:hover h3::after {
  width: 70px;
}

/* =========================
   META INFO
========================= */
.meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.event-card:hover .meta {
  color: #ff0000;
}

/* =========================
   READ MORE BUTTON
========================= */
.read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #005cff;
  transition: all 0.3s ease;
}

.event-card:hover .read-more {
  color: #ff0000;
  transform: translateX(6px);
}

/* =========================
   OPTIONAL GLASS EFFECT
========================= */
.event-card {
  backdrop-filter: blur(6px);
}


.blog_block_nws{
     margin-bottom: 30px;
}
 .blog_block > .blog_content{
     background-color: #ffffff;
     padding: 20px 20px;
}
 .blog_block > .blog_content > h3{
     display: block;
     display: -webkit-box;
     max-width: 100%;
     height: 40px;
     margin: 0 auto;
     font-size: 14px;
     line-height: 20px;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
     text-transform: uppercase;
     color: #ff0000;
     font-size: 18px;
     font-weight: 500;
     margin-bottom: 5px;
}

div.blog_content p {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 46px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 21px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
 .blog_block > .blog_content > h3 > a{
     color: #333333;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .blog_block > .blog_content > h3:hover > a{
     color: var(--main_color);
}
 .blog_block > .blog_content > a{
     display: inline-block;
     color: var(--main_color);
     text-transform: uppercase;
     font-size: 13px;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .blog_block > .blog_content > a:hover{
     letter-spacing: 2px;
}
 .as_blog_wrapper .as_btn{
     color: var(--main_color);
     background-color: #ffffff;
     border-color: #ffffff;
}
 .as_blog_wrapper .as_btn:hover{
     color: #ffffff;
     background-color: transparent;
}
.as_nws_btn{
     color: #ffffff!important;
     background-color: var(--main_color)!important;
     border-color: var(--main_color)!important;
}
.as_nws_btn:hover{
     color: var(--main_color)!important;
     background-color: transparent!important;
}
/*Blog CSS End*/
/*Member CSS Start*/
/* .as_member_wrapper .as_heading_block{
     margin-bottom: 10px;
}
 */
 .member_slider_wrapper{
     position: relative;
}
 .member_arrow{
     position: absolute;
     top: 50%;
     left: -50px;
     cursor: pointer;
     transform: translateY(-50%);
     font-size: 46px;
     color: var(--main_color);
}
 .member_arrow.member_arrow_next{
     left: auto;
     right: -50px;
}
 .member_slide{
     display: flex;
     align-items: center;
     padding: 30px 30px;
     margin: 30px 10px;
     box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.065);
}
 .member_slide.single_slide{
     margin: 0 auto;
}
/* .member_slide.single_slide{
     display: flex;
     align-items: flex-start;
     padding: 20px;
     margin: 30px 10px;
     box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.065);
}
 */
 .member_slide > .member_image{
     width: 25%;
     margin-right: 10px;
}
/* .member_slide > .member_image > img{
     width: 80px;
     height: 80px;
     border-radius: 50%;
}
 */
 .member_slide > .member_content{
     padding: 0 20px;
     width: 75%;
}
 .member_slide > .member_content > h3{
     font-size: 26px;
     text-transform: capitalize;
     font-weight: 600;
     color: #333333;
}
 .member_slide > .member_content > h6{
     font-size: 14px;
     text-transform: capitalize;
     font-style: italic;
     color: #333333;
}
 .member_slide > .member_content > p{
     margin: 0;
     line-height: 26px;
    /* display: -webkit-box;
     */
    /* -webkit-line-clamp: 3;
     */
    /* -webkit-box-orient: vertical;
     */
    /* overflow: hidden;
     */
}
/*Member CSS End*/
/*Footer CSS Start*/
 .as_footer_wrapper{
     background-color: #242424;
     padding-bottom: 0;
}
 .footer_block .footer_logo_block{
     margin-bottom: 20px;
}
 .footer_logo > p{
     color: #ffffff;
     font-weight: 400;
     font-size: 16px;
}
 .footer_logo > ul.social_link > li{
     display: inline-block;
     margin: 0px 5px;
}
 .footer_logo > ul.social_link > li > a{
     font-size: 20px;
     color: #456580;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .footer_logo > ul.social_link > li > a:hover{
     color: #ffffff;
}
 .footer_heading{
     font-size: 22px;
     text-transform: uppercase;
     color: #ffffff;
     font-weight: 700;
     margin-bottom: 20px;
}
 .quick_links_menu > li{
     margin-bottom: 10px;
}
 .quick_links_menu > li:last-child{
     margin-bottom: 0;
}
 .quick_links_menu > li > a{
     text-transform: capitalize;
     color: #b7cde0;
     font-weight: 400;
     font-size: 16px;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
 .quick_links_menu > li > a:hover{
     color: #ffffff;
}
 .latest_news_nav > li{
     position: relative;
     padding-left: 25px;
     margin-bottom: 20px;
}
 .latest_news_nav > li > span{
     position: absolute;
     top: 0;
     left: 0;
     color: #22b4ff;
     font-size: 18px;
}
 .latest_news_nav > li > a{
     color: #b7cde0;
     font-size: 16px;
     margin-bottom: 10px;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
}
 .latest_news_nav > li > p{
     margin: 0;
}
 .latest_news_nav > li > p > a{
     color: #ffffff;
}
 .address_menu > li{
     margin-bottom: 10px;
     position: relative;
     padding-left: 20px;
}
 .address_menu > li::before{
     content: "";
     position: absolute;
     top: 10px;
     left: 0;
     width: 10px;
     height: 1px;
     background-color: #b7cde0;
}
 .address_menu > li > p{
     margin-bottom: 0;
     font-size: 16px;
     color: #b7cde0;
}
 .copyright_wrapper{
     margin-top: 60px;
     padding: 20px 0px;
     background-color: #000000;
}
 .copyright_wrapper p{
     color: #ffffff;
     font-weight: 400;
     font-size: 14px;
     text-transform: capitalize;
     margin: 0;
}
 .copyright_wrapper p > a{
     color: var(--main_color);
}
/*Footer CSS End*/
/*Profile Page CSS Start*/
 .upload-photo-section {
     position: relative;
     justify-content: space-between;
     display: flex;
     padding: 15px 20px;
}
 .profile-photos ul {
     justify-content: space-between;
     display: flex;
}
 .profile-photos ul li img.img-grid-profile-edit {
     border: 2px solid #fff;
     box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.12);
     border-radius: 50%;
     margin: 3px;
     width: 60px;
}
 .view-all-pics {
     text-align: center;
     align-self: center;
     width: 90px;
     justify-content: center;
}
 .view-all-pics a {
     color: #f00;
}
 .user_profile_wrapper{
     padding-top: 120px;
}
 .user_profile_section{
     padding: 0px 0px 60px;
     box-shadow: 0px 0px 30px 1px rgba(0,0,0,0.06);
     border-radius: 10px;
}
 .profile_heading {
     padding: 0px 15px;
     border-bottom: 1px solid #f7f7f7;
     margin-bottom: 30px;
}
 .profile_heading h3{
     font-size: 26px;
     font-weight: 600;
     color: #222222;
     margin-bottom: 30px;
     text-transform: capitalize;
}
 .profile_heading h5{
     color: #222222;
     text-transform: capitalize;
     font-size: 18px;
     margin-bottom: 16px;
}
 .profile_view_page_heading {
    /* width: fit-content; */
    padding: 10px 0 10px 0;
    margin-bottom: 5px;
    color: #000;
    border-bottom: 1px solid #f00;
}
 .profile_view_page_heading div {
     
     font-size: 18px;
     font-weight: 600;
}
 .profile_image_block{
     text-align: center;
     margin-bottom: 40px;
}
 .user_profile_img{
     left: 12px;
     display: inline-block;
     position: relative;
     margin: 0 auto;
     margin-top: -100px;
}
 .user_profile_img > img{
     width: 120px;
    /* height: 172px;
     */
     border-radius: 50%;
}
 .user_profile_img > input[type="file"]{
     position: absolute;
     left: -9999px;
     opacity: 0;
     visibility: hidden;
}
 .user_profile_img > label{
     margin: 0;
     position: absolute;
     left: 50%;
     bottom: -25px;
     transform: translateX(-50%);
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: var(--main_color);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
}
 .user_profile_section .profile_heading{
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-bottom: 15px;
}
 .user_profile_section .profile_heading h3{
     font-size: 20px;
     margin: 0;
}
 .user_profile_section .profile_heading > a{
     text-transform: capitalize;
     color: var(--main_color);
}
 .user_profile_section .profile_heading > a > span{
     margin-right: 5px;
}
 .profile_form {
     padding: 0px 40px;
     margin-bottom: 30px;
}
 .profile_form .form_block h6{
     font-size: 16px;
     text-transform: capitalize;
     color: #222222;
     margin-bottom: 5px;
}
 .profile_form .form_block{
     margin-bottom: 25px;
}
/*Profile Page CSS End*/
/*Search Profile CSS Start*/
 .search_profile_wrapper{
     padding-top: 80px;
}
/*Search Profile CSS End*/
/*Profile List CSS Start*/
 .as_profile_list_wrapper{
     padding-top: 80px;
}
 .search_sidebar_filter{
     padding: 20px 20px;
     box-shadow: 0px 0px 22px 1px rgba(0, 0, 0, 0.065);
}
 .sidebar_heading{
     margin-bottom: 30px;
}
 .sidebar_heading > h3{
     text-transform: capitalize;
     font-size: 20px;
     font-weight: 600;
     color: var(--main_color);
}
 .profile_list_section{
     padding: 30px 20px 0px;
     box-shadow: 0px 0px 22px 1px rgba(0, 0, 0, 0.065);
}
 .profile_list_section > ul{
     display: flex;
     flex-wrap: wrap;
}
 .profile_list_section > ul > li{
     margin: 0px 15px 30px;
     width: calc(100%/3 - 4.3%);
}
 .profile_list_block{
     box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
}
 .profile_list_block > .profile_content{
     padding: 10px 10px;
}
 .profile_list_block > .profile_content > .profile_name{
     text-transform: capitalize;
     font-size: 16px;
     font-weight: 600;
     color: var(--main_color);
}
 .profile_list_block > .profile_content > h5{
     text-transform: capitalize;
     font-size: 14px;
     font-weight: 600;
     color: #333333;
}
 .dashboard-button {
     display: none;
}
.profile_slide > a{
     display: block;
     cursor: zoom-in;
}
/*Profile List CSS End*/
/*Home Popup CSS Start*/
.as_popup_wrapper{
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 50px 0px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: rgba(0,0,0,0.8);
     opacity: 0;
     visibility: hidden;
     z-index: 1000;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
.as_popup_wrapper.show{
     opacity: 1;
     visibility: visible;
}
.as_popup_wrapper > .popup_inner{
     position: relative;
     width: 100%;
     max-width: 550px;
     min-height: 400px;
     padding: 30px 30px;
     background-color: #ffffff;
     border-radius: 10px;
     transform: translateY(50px);
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
.as_popup_wrapper.show > .popup_inner{
     transform: translateY(0);
}
.popup_inner > .close_popup{
     position: absolute;
     top: 5px;
     right: 10px;
     font-size: 12px;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     background-color: var(--main_color);
}
/*Home Popup CSS End*/
/*Loader CSS Start*/
.as_loader_wrapper{
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 50px 0px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #ffffff;
     z-index: 1001;
     transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
}
.as_loader_wrapper .loader_inner{
     display: inline-block;
}
/*Loader CSS End*/
/*WhatsApp Icon CSS Start*/
.wa-icon-size {width: 45px;}
div.whts_icon_wrapper div a {color: #f00;}
.whts_icon_wrapper{
     background: #fff;
     padding: 10px;
     border: 1px solid #efefef;
     width: fit-content;
     position: fixed;
     right: 0;
     bottom: 40px;
     display: flex;
     z-index: 999;
     animation: whts_icon 1s alternate infinite;
}
.whts_icon_wrapper .whts_icon_inner{
     display: inline-block;
}
@keyframes whts_icon{
     0%{
          transform: translateY(-10px);
     }
     100%{
          transform: translateY(0px);
     }
}
/*WhatsApp Icon CSS End*/
/*Responsive CSS Start*/
 @media (max-width: 1200px){

     .priew_block {
          width: 18%;
          padding: 5px;
          margin: 5px;
     }
     .search-list-grid {
         width: 48.5%;
         margin: 0 9px 10px 0;
    }
     .profile_list_section > ul > li {
         width: calc(100%/2 - 5.1%);
         margin: 0px 10px 30px;
    }
}
 @media (max-width: 991px){
     .search-list-info-box {
         display: block;
    }
     .search-list-profile-image {
		 
               height: 200px;
        width: 100%;
        background-repeat: no-repeat;
        background-position: top;
    }
     .search-list-profile-info {
         padding: 10px 0;
    }
     .search-list-grid-footer {
         display: block;
    }
     .short-list-profile {
         width: auto;
    }
     .search-list-grid {
         width: 47.9%;
    }
     .d-link {
         margin-right: 5px;
    }
     ul li.dashboard-link a {
         line-height: 1.5;
         padding: 15px 5px;
    }
     .menu_toggle > span{
         display: inline-block;
    }
     .as_logo_wrapper{
         width: 100%;
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding-right: 20px;
    }
     .as_menu_wrapper{
         position: fixed;
         top: 0;
         left: -300px;
         bottom: 0;
         width: 300px;
         padding: 30px 0px;
         background-color: #212121;
         z-index: 999;
         transition: all 0.3s ease-in-out;
         -webkit-transition: all 0.3s ease-in-out;
         -moz-transition: all 0.3s ease-in-out;
    }
     .as_menu_wrapper.show{
         left: 0;
    }
     .close_menu{
         display: inline-block;
    }
     .as_menu_block > ul > li{
         display: block;
         margin: 0;
    }
     .as_menu_block > ul > li > a{
         color: #ffffff;
         padding: 10px 30px;
    }
     .gallery_more_inner > h3{
         font-size: 22px;
    }
    .contact_block p {
     font-size: 14px;
     }
     .contact_block h4{
          font-size: 22px;
     }
}
 @media (max-width: 768px){
      .form_block .searc-page-form-feild {
    height: 35px;
}
      .inner_page .as_top_header {
    background-color: var(--main_color);
    display: none;
}
      .breadcrumb_wrapper {
    padding: 90px 0px 30px;
}
.form_block {
    margin-bottom: 7px;
}
      .search-page-label {
    font-size: 12px;
    margin-bottom: 5px;
}
     .welcomePop {

}
.welcomePop .modal-body {
    border-radius: 5px;
    margin-top: 20px !important;
    width: 90%;
    margin: 0 auto;
    padding: 15px;
    background: #fff;
}
.welcomePop .modal-body img {
    height: auto;
}

     .nortification_window {
    right: -100%;
    width: 100%;
}

     .profile_view_page_heading div {
    padding-bottom: 15px; }
     .short-detail {
         display: block;
         margin-top: 10px;
    }
     .short-detail p {
         margin: 0;
         padding: 4px 10px 0px 0;
    }
     .profile_view_page_heading {
         padding: 10px 0 0px 0;
    }
     .user_profile_wrapper {
         padding-top: 80px;
    }
     .profile_form {
         padding: 0px 15px;
    }
     .user_profile_img {
         left : 0px;
    }
     .upload-photo-section {
         display : block;
    }
     ..profile_image_block {
         margin-bottom: 40px;
    }
     .shadow-sidebar {
         displaay: block;
    }
     .close-sb {
         top: 7px;
         text-align: right;
         padding: 5px 10px;
         cursor: pointer;
         color: red;
         position: absolute;
         display: block;
         font-size: 20px;
         right: 7px;
         background: #fff;
    }
     .shadow-sidebar.open-sb {
         left: 0px;
    }
     .shadow-sidebar {
         position: fixed;
         top: 0;
         left: -340px;
         bottom: 0;
         width: 300px;
         background-color: #ffffff;
         z-index: 999;
         transition: all 0.3s ease-in-out;
         -webkit-transition: all 0.3s ease-in-out;
         -moz-transition: all 0.3s ease-in-out;
    }
     .dashboard-button {
         bottom: 0;
         text-align: center;
         color: #fff;
         position: fixed;
         display: block;
         background: #f00;
         padding: 10px 0;
         right: 0;
         z-index: 999;
         width: 100%;
         cursor: pointer;
    }
     .search-list-info-box {
         display: block;
    }
     .search-list-profile-image {
         height: 200px;
         width: 100%;
    }
     .search-list-profile-info {
         padding: 10px 0;
    }
     .search-list-grid-footer {
         display: block;
    }
     .short-list-profile {
         width: auto;
    }
     .search-list-grid {
         width: 47.9%;
    }
     .member_slide {
         display: block;
    }
     .member_slide > .member_image {
         width: auto;
         margin-right: auto;
    }
     .member_slide > .member_content {
         text-align: justify;
         width: auto;
         padding: 20px 0px;
    }
     .about_block{
         margin-bottom: 30px;
    }
     .story_block{
         margin-bottom: 30px;
    }
     .story_block .story_image > img{
         width: 100%;
    }
     .columns {
         -webkit-column-count: 2;
         -moz-column-count: 2;
         column-count: 2;
         -webkit-column-gap: 0px;
         -moz-column-gap: 0px;
         column-gap: 0px;
         -webkit-column-width: 50%;
         -moz-column-width: 50%;
         column-width: 50%;
    }
     .as_heading_block > h2{
         font-size: 26px;
    }
     .as_birthday_block{
         margin-bottom: 30px;
    }
     .as_birthday_block > .birthday_image{
         margin-top: 0;
    }
     .blog_block{
         margin-bottom: 30px;
    }
     .blog_block > .blog_image > img{
         width: 100%;
    }
     .member_slide > .member_content > h3{
         font-size: 20px;
    }
     .view_more_block{
         margin-top: 20px;
    }
     .footer_block{
         margin-bottom: 30px;
    }
     .birthday_slider_wrapper > .birthday_arrow{
         display: none;
    }
    .as_about .as_subheading{
         margin-bottom: 20px;
    }
.news_footer_right {
     text-align: left;
 }
 .news_footer_left{
      margin-bottom: 10px;
 }
 .contact_block{
      margin-bottom: 30px;
 }
 .as_contact{
      padding-top: 40px;
 }
 .as_map_wrapper {
     margin-top: 40px;
 }
 .as_getin {
     padding-top: 0;
 }
 .as_news{
      padding-top: 40px;
 }
 .news_footer {
     margin-bottom: 30px;
 }
 .as_about .section {
     padding: 40px 0px;
 }
 .as_news{
     padding: 40px 0 20px;
}
}
 @media (max-width: 600px){

     .priew_block {
    width: 22%;
    padding: 5px;
    margin: 5px;
}

     .search-list-grid {
         width: 100%;
    }
    .as_blog_wrapper_nws{
         padding: 40px 0;
    }
    .as_gallery{
     padding: 40px 0;
    }
    .comments {
     flex-direction: column;
 }
 .comments .content {
     width: 100%;
 }
 .as_getin .as_getin_form {
     padding: 45px 20px 20px;
 }
 .as_pass_popup .popup-container{
     max-width: 400px;
     padding: 3rem;
}
}
 @media (max-width: 480px){

     .priew_block {
    width: 46.8%;
    padding: 5px;
    margin: 5px;
}
.form_block_2 {
         padding: 10px 0px;
         display: block;
    }
     label.occupation-heading:before {
         top: 18%;
    }
     .value-record {
         border-left: none;
         max-width: 100%;
         padding: 2px 0 0 20px;
    }
     .profile-photos ul li img.img-grid-profile-edit {
         width: 50px;
    }
     .breadcrumb_wrapper .breadcrumb_inner {
         margin-top: 15px;
    }
     .search-list-info-box {
         display: block;
    }
     .search-list-profile-image {
         height: 200px;
         width: 100%;
    }
     .search-list-profile-info {
         padding: 10px 0;
    }
     .search-list-grid-footer {
         display: block;
    }
     .short-list-profile {
         width: auto;
    }
     .search-list-grid {
         width: 100%;
    }
     .as_top_header .as_top_header_inner{
         flex-direction: column;
    }
     .header_contact_wrapper{
         margin-bottom: 10px;
    }
     .header_contact_wrapper > ul > li{
         margin: 0px 10px;
    }
     .header_login_wrapper > ul > li{
         margin: 0px 10px;
    }
     .gallery_more_inner > h3 {
         font-size: 18px;
    }
     .profile_list_section > ul > li {
         width: calc(100%/1 - 0%);
         margin: 0px 10px 30px;
    }
     .profile_list_block > .profile_image > img{
         width: 100%;
    }
    .as_gallery{
     padding: 40px 0;
     }
    .as_blog_wrapper_nws{
     padding: 40px 0;
}
.as_news{
     padding-top: 40px;
}
.as_contact {
     padding-top: 40px;
 }
 .as_pageinfo_wrapper {
     padding-top: 155px;
 }
 .as_pageinfo_wrapper .as_pageinfo_inner {
     padding: 20px 0;
 }
 .as_pageinfo_wrapper h1 {
     font-size: 26px;
 }
 .as_pass_popup .popup-container{
     max-width: 280px;
     padding: 3rem 2rem;
}
 
}
 @media (max-width: 350px){
}


@media print {
* {
    -webkit-print-color-adjust: exact !important; /*Chrome, Safari */
    color-adjust: exact !important;  /*Firefox*/
  }
}
/*Responsive CSS End*/
/*promo start css*/
/* Main Section */
.promo-section {
    padding: 90px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(-45deg, #8b0000, #ff4d00, #ff2a0a, #b30000);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Smooth Gradient Animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Wrapper */
.promo-wrapper {
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.promo-heading {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Button */
.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(45deg, #ff0000, #ff6600);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.promo-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-20deg);
    transition: 0.7s;
}

/* Hover */
.promo-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.promo-btn:hover::before {
    left: 130%;
}


/* promo css end*/
/* registration CSS Start*/
.pro-registration {

    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* Card */
.form-wrapper {
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 14px;
    width: 100%;
    max-width: 950px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

.form-wrapper:hover {
    transform: translateY(-5px);
}

/* Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff0505, #ffa43c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header p {
    color: #666;
    font-size: 14px;
}

/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Input Fields */
.input-box {
    position: relative;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 15px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background: #fffdf5;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

/* Focus Effect */
.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    background: #ffffff;
    border-color: #ff2600;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.15);
}

/* Floating Label */
.input-box label {
    position: absolute;
    left: 14px;
    top: 15px;
    color: #999;
    font-size: 14px;
    padding: 0 4px;
    transition: 0.3s ease;
    pointer-events: none;
}

.input-box input:focus + label,
.input-box input:valid + label,
.input-box textarea:focus + label,
.input-box textarea:valid + label,
.input-box select:focus + label {
    top: -9px;
    left: 12px;
    font-size: 12px;
    color: #8b0000;
    background: #fff;
}

/* Textarea */
textarea {
    min-height: 110px;
    resize: none;
}

/* Full Width */
.full {
    grid-column: span 2;
}

/* Upload Area */
.upload-area {
    margin-top: 20px;
    padding: 22px;
    border: 2px dashed #ff0000;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: #8b0000;
    background: #fff8e6;
    transition: 0.3s ease;
}

.upload-area:hover {
    background: #ffe9b3;
}

/* Checkbox */
.checkbox-area {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

/* Button */
.pro-btn {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg,  #ff0505, #ffa43c);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.25);
}

.pro-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 153, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .full {
        grid-column: span 1;
    }
}
/* registration CSS End*/

/*Login CSS Start*/

.as_auth_wrapper{
    /* position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px; */
    animation: loginSlider 10s infinite;
}
@keyframes loginSlider {

    0%{
        background-image: url('https://i.pinimg.com/1200x/2a/8e/7e/2a8e7e0f8c03c639f95421c3b24e81ac.jpg');
    }

    33%{
        background-image: url('https://i.pinimg.com/736x/c2/c7/d0/c2c7d04169082619cddfd49094642449.jpg');
    }

    66%{
        background-image: url('https://i.pinimg.com/736x/9b/63/c1/9b63c1f0ac3a544ef4c52992d4f833fa.jpg');
    }

    100%{
        background-image: url('https://i.pinimg.com/736x/92/d4/3e/92d43e1d5c5dc4233c2bb98c2fcfcc5f.jpg');
    }
}
/* Login Card */
.as_auth_inner{
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    /* padding: 45px 35px; */
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    position: relative;
    animation: fadeIn 0.6s ease-in-out;
}

.back_btn_block{
    position: absolute;
    top: 20px;
    left: 25px;
}

.back_btn_block h5{
    margin:0;
}

.back_btn_block a{
    display: flex;              /* Important */
    align-items: center;        /* Vertical center */
    gap: 8px;                   /* Space between icon & text */
    text-decoration: none;
    color: #df0303;
    font-weight: 600;
    font-size: 14px;
}

/* Arrow Image */
.back_btn_block a span{
    display: flex;
    align-items: center;
}

.back_btn_block a img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Heading */
.as_auth_inner h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:8px;
    margin-top:20px;
    background: linear-gradient(45deg,#b30000,#ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.as_auth_inner p{
    font-size:14px;
    color:#666;
    margin-bottom:25px;
}

/* Input Wrapper */
.as_input_wrapper{
    position:relative;
    margin-bottom:18px;
}

/* Input */
.as_input{
    width:100%;
    padding:14px 15px 14px 48px; /* icon ke liye left space */
    border-radius:8px;
    border:1px solid #ddd;
    font-size:15px;
    transition:0.3s;
    box-sizing:border-box;
}

.as_input:focus{
    border-color:#c50000;
    box-shadow:0 0 0 3px rgba(139,0,0,0.15);
    outline:none;
}

/* Icon Alignment FIX */
.as_icon{
    position:absolute;
    top:50%;
    left:15px;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    width:20px;
    height:20px;
}

.as_icon img{
    width:18px;
    height:18px;
    opacity:0.6;
}

/* Remember + Registration */
.as_remember_forgot{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
    font-size:14px;
}

.as_remember_forgot label{
    color:#555;
}

.as_forgot_password a{
    color:#8b0000;
    font-weight:600;
    text-decoration:none;
}

.as_forgot_password a:hover{
    text-decoration:underline;
}

/* Login Button */
.as_login_member{
    width:100%;
    padding:0;
    border:none;
    border-radius:50px;
   background: linear-gradient(45deg,#b30000,#e00000);
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.as_login_member:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(179,0,0,0.4);
}

/* Copyright */
.as_auth_copyright{
    text-align:center;
    font-size:12px;
    color:#777;
    margin-top:20px;
}

/* Animation */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/*Login CSS End*/
/* owner Section  */
.as_member_wrapper {
    padding: 90px 0;
    background: #f8f9fb;
}

.as_heading_block {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

/* Main Heading */
.as_heading_block h2 {
    font-size: 42px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

/* Gradient highlight for span */
.as_heading_block h2 span {
    background: linear-gradient(45deg, #ff0000, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Stylish underline */
.as_heading_block h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #ff0000, #ff6a00);
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Optional background light effect */
.as_heading_block::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

/* SECTION */
.owner-section {
    padding: 40px 0;
    background: linear-gradient(to right, #f9f9f9, #f2f2f2);
}

/* IMAGE BOX */
.owner-img-box {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
}

.owner-image {
    width: 100%;
    max-width: 430px;
    height: 480px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Hover Effect */
.owner-img-box:hover .owner-image {
    transform: scale(1.05);
}

/* Decorative Accent Box */
.owner-img-box::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6a00, #ff0000);
    border-radius: 20px;
    z-index: -1;
}

/* CONTENT */
.owner-content {
    padding-left: 20px;
}

.owner-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
}

/* Stylish underline */
.owner-content h2::after {
    content: "";
    width: 160px;
    height: 4px;
    background: #ff0000;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 10px;
}

.owner-content p {
   font-family: 'Noto Sans Devanagari', sans-serif;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.owner-content h4 {
    font-weight: 700;
    margin-top: 25px;
    font-size: 20px;
}

.designation {
    color: #ff0000;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {

    .owner-section {
        text-align: center;
        padding: 20px 20px;
    }

    .owner-content {
        padding-left: 0;
    }

    .owner-content h2 {
        font-size: 28px;
    }

    .owner-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .owner-image {
        height: 420px;
    }
}
/*owner css end*/