
:root {
    --color-primary-bg: #1f3b78;
    --color-primary-bg-dark: #000f36;
    --color-secondary-bg: #e6edff;
    --color-button-bg: #F15A29;
    --font-size-base: 14px;
    --font-common-color:#000;
}




/* ===============================
   Globle css start
=================================*/
body{
  /* font-family: "Poppins", sans-serif; */
   font-family: 'Nunito Sans';
}



  .top_header_sec .container-fluid {
  max-width: 92%;
}
.container {
  max-width: 92%;
}
.about_btn {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}
.about_btn:hover {
  background: #e45723;
  color: #fff !important;
}

.navbar-nav .nav-link{
    position: relative;
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: #f15a29 !important;
}
.navbar-nav .nav-link.active::after{
    content: "";
    position: absolute;
    width: 90%;
    height: 1px;
    background: #23376d;
    left: 5px;
    bottom: 6px;
    margin: auto;
}


/* ===============================
   MAIN TITLE SECTION
=================================*/

/* Heading */
.main_title_box .main_title {
  font-weight: 600;
  font-size: 28px;
  line-height: 22px;
  color:#000;
  margin: 0;
  padding-bottom: 15px;
  position: relative;
}

.main_title_box {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.main_title_box .main_title::after {
content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: #f7b089;  
}


.main_title_box .main_title::before {
content: "";
  position: absolute;
  bottom: -8px;
  width: 140px;
  height: 4px;
  background: #f15a29;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);  
}

/* globle css end */








/* ===Top header css start==== */
.top_header_sec {
  background: #23376D;
  padding: 5px 0;
}
  .top_header_link ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top_header_link ul li {
  line-height: 22px;
}
.top_header_link ul li a {
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #fff;
  text-decoration: none;
  border-right: 1px solid #fff;
  padding: 0 10px;
}
.top_header_right_button ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3px;
}
.top_header_right_button ul li{
background: #fff;
  padding: 3px 3px;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.top_header_right_button ul li span {
  font-weight: 600;
  font-size: 12px;
  line-height: 22px;
}
/* ===Top header css end=== */


/* ====nav-bar css start==== */
.nevbar_sec .navbar-brand img {
  max-width: 140px;
  height: auto;
}
.nevbar_sec .navbar-nav {
  gap: 15px;
}
.nevbar_sec .navbar-nav li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-transform: capitalize;
  color:#000 !important;
}
.nevbar_sec .nav_bar_search_bar {
  background: var(--color-secondary-bg);
  padding: 2px 10px;
  border-radius: 6px;
}
.input-group.nav_bar_search_bar span img {
  width: 17px;
}
.input-group.nav_bar_search_bar input::placeholder {
  font-size: 14px !important;
}
.nevbar_sec .nav_bar_search_bar input:focus{
  box-shadow: none;
}
.login_button {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  padding: 8px 50px;
  background: var(--color-button-bg);
}
.login_button:hover{
  color: #fff;
}
.login_button:focus{
  box-shadow: none;
}
.hero_sec .hero_right_notification_caption h3 {
font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
}

.hero_sec .hero_right_notifiation_details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px 0;
}

.hero_sec .hero_right_notification_bor {
    background-color: var(--color-secondary-bg); 
    border-radius: 10px;
    padding: 15px;
    height: 100%; 
    width:100%
}


.hero_sec .hero_right_notification_caption {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero_sec .hero_right_notification_caption h3 {
    /* position: sticky; */
    top: 0;
    padding: 10px 0;
    margin: 0;
    z-index: 12;
    border-bottom: 1px solid #000;
}

.hero_sec .hero_right_notifiation_details {
    overflow-y: auto;
    max-height: 350px;
    padding-right: 8px;
}

.hero_sec .hero_right_notifiation_details ul {
    padding: 0;
    margin: 0;
    list-style: none;
    animation: verticalScroll 18s linear infinite;
}
.hero_sec .hero_right_notifiation_details:hover ul {
    animation-play-state: paused;
}

.hero_sec .hero_right_notifiation_details ul li {
display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  padding: 10px 10px;
  border-radius: 6px;
  margin: 10px 0;
}
.hero_sec .hero_right_notifiation_details ul li:hover{
  animation-play-state: paused;
}

.hero_sec .hero_right_notifiation_details ul li:last-child {
    border-bottom: none;
}

/* Vertical infinite animation */
@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* ====nav-bar css end==== */


/* ====hero sec css start===== */
.hero_sec {
  position: relative;
}
.hero_slide_detail h1 {
  font-weight: 600;
  font-size: 34px;
  line-height: 46px;
  color: var(--font-common-color);
}

.hero_slider_box {
  /* position: relative; */
  /* z-index: 1;
  background: linear-gradient( 103.16deg, #FFF9F3 0%, #FFE8D2 101.21% );
  border-radius: 12px; */
}

.hero_slider_box::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius:12px;
  width: 985px;
  max-width: 100%;
  height: 100%;
  background: linear-gradient(
    103.16deg,
    #FFF9F3 0%,
    #FFE8D2 101.21%
  );
  z-index: -1; */
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  max-width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #FFF9F3 0%, #FFE8D21C 101.21%);
  z-index: -1; */
      content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    max-width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(103.16deg, #FFF9F3 0%, #FFE8D2 101.21%);
    border-radius: 0px 12px 12px 0px;
}
.slider_logo_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider_logo_box ul li img {
  height: auto;
  opacity: 1;
  max-width: 130px;
  object-fit: contain;
  padding: 0 10px;
}

.slider_logo_box ul li:last-child{
  border-right: 0 !important;
}

.slider_logo_box ul li {
  border-right: 1px solid #ccc;
}
.hero_slide_detail p {
  font-size: 15px;
  font-weight: normal;
  line-height: 30px;
  color: #000;
}
.hero_slide_left_caption {
  margin-top: 4rem;
}
.hero_slide_left_caption img {
  width: 92%;
}

.hero_sec .carousel-indicators {
  bottom: -40px;
  display:flex;
  justify-content:start; 
  margin-left: 0 !important;
}
.hero_sec .carousel-indicators button {
  width: 70px !important;
  background-color: #C6C6C6 !important;
}
.hero_sec .carousel-indicators .active {
  background-color:var(--color-button-bg) !important;
  opacity: 1;
}

/* ====hero sec css end===== */


/* ============================= */
/* KEYWORD SEARCH SECTION */
/* ============================= */

.key_search_sec {
  padding: 40px 0;
}

.key_search_sec .keyword-search-section {
  background: linear-gradient(90deg, #2f3f73 0%, #2b3a6b 100%);
  border-radius: 12px;
  padding: 25px 40px;
  overflow: hidden;
}

.key_search_sec .keyword-search-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LEFT SIDE ================= */

.key_search_sec .search-left {
  width: 55%;
}

.key_search_sec .search-left h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Search Input Box */

.key_search_sec .search-left .search-box {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.key_search_sec .search-left .search-box input {
  height: 40px;
  font-size: 16px;
  box-shadow: none;
}
.key_search_sec .input-group.nav_bar_search_bar {
  max-width: 63.4%;
}

.key_search_sec .search-left .search-box input::placeholder {
  color: #8c8c8c;
}

/* ================= CAPTCHA ROW ================= */

.key_search_sec .search-left .captcha-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.key_search_sec .search-left .captcha-image img {
  height: 40px;
  border-radius: 4px;
}

.key_search_sec .search-left .captcha-input {
height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  outline: none;
  width: 214px;
  border: 1px solid;
  background: #9b9b9b66;
  border: 1px solid #ffffff8a;
}

.key_search_sec .search-left .captcha-input::placeholder {
  color: #ffffff;
}

/* Search Button */

.key_search_sec .search-left .search-btn {
  height: 48px;
  padding: 0 30px;
  border-radius: 6px;
  background-color: #f25c2a;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.key_search_sec .search-left .search-btn:hover {
  background-color: #d94c1e;
}

/* ================= RIGHT SIDE ================= */

.key_search_sec .search-right {
  width: 40%;
  text-align: center;
}

.key_search_sec .search-right img {
  max-width: 55%;
  height: auto;
}

/* ================= RESPONSIVE ================= */



/*================= Nation sec start================= */

.nation_wise_sec {
  position: relative;
  z-index: 1;
}

.nation_wise_sec::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;             
  width: 100%;         
  height: 520px;
  background: #E6EDFF;
  z-index: -1;        
}


.nation_wise_sec .nation_wise_card_box {
  background: #fff;   
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0px 6px 33.6px 0px #0000001A;
  margin-bottom: 25px;
}

/* Hover effect */
.nation_wise_sec .nation_wise_card_box:hover {
  transform: translateY(-5px);
}

.nation_wise_sec .nation_wise_card {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}


.nation_wise_sec .nation_wise_card img {
  width: 48px;
  height: 48px;
  padding: 0px;
  background: #FBEDE7;   
  border-radius: 10px;
}

.nation_wise_sec .nation_wise_card span {
  font-size: 28px;
  font-weight: 600;
  color: #111;
}

.nation_wise_sec .nation_wise_card_box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-transform: capitalize;
  color: #000 !important;
}
.nation_wise_text {
  font-size: 15px;
  font-weight: normal;
  line-height: 30px;
  color: #000;
  margin-bottom:0;
}


/*================= Nation sec end =============== */





/*================= Resources & Policies Start =============== */
.resources_sec {
  padding: 50px 0;
}

.resources_tab_caption div{
  gap: 20px;
}
.resources_tab_caption .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #23376D !important;
}
.resources_tab_caption .nav-pills .nav-link{
  color: #000;
  background-color: #E6EDFF;
  padding: 20px 30px;
  border-radius: 12px;
}

.resources_tab_caption .nav-pills .nav-link .tabs_img img{
  max-height: 40px;
}

.resources_tab_caption .nav-pills .nav-link span{
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}


.e_tutorial_card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

/* Thumbnail */
.e_tutorial_img {
  /* width: 100%; */
  max-width: 31rem;
  height: 100%;
  display: block;
  border-radius: 15px;
}

/* Dark Gradient Bottom Overlay */
.e_tutorial_card_details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

/* Title */
.e_tutorial_card_details h5 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

/* Duration */
.e_tutorial_card_details p {
  font-size: 14px;
  margin: 5px 0 0;
  opacity: 0.8;
}

/* Arrow */
.e_tutorial_arrow {
  width: 30px;
  height: 30px;
}

/* Play Button */
.play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #ff1e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play_icon {
color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.resources_tab_details {
  display: flex;
  height: 100%;
}

.sop_box {
  background: #23376D;
  padding: 25px;
  border-radius: 12px;
}
.sop_left_box h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  text-transform: capitalize;
}
.sop_left_box p {
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}
.sop_right_box {
  background: #E6EDFF;
  border-radius: 12px;
  padding: 20px;
}
.sop_right_box h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #000;
  text-transform: capitalize;
}
.sop_right_box ul li {
  background: #FFE6DD;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #EF6031;
  box-shadow: 0px 3px 16.1px 0px #00000026;
}
.sop_right_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sop_download_caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sop_download_detail {
  margin-left: 15px;
}
.sop_download_detail h5 {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 600;
}
.sop_download_detail p {
  font-size: 14px;
  color: #181818;
  line-height: 22px;
  text-transform: capitalize;
  margin: 0;
}
.sop_right_box ul li img {
  max-width: 50px;
  object-fit: contain;
  max-height: 50px;
}
.sop_download_caption img {
  max-height: 36px;
  width: 35px;
  object-fit: contain;
}
.sop_download_caption {
}


/*================= Resources & Policies End =============== */


/* ========================= About Section  Start ========================= */
.about_sec {
  background: linear-gradient(rgba(10,25,60,0.95), rgba(10,25,60,0.95)),
              url('assets/img/about-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  color: #fff;
}

.about_sec .about_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* =========================
   Left Side
========================= */
.about_sec .about_left {
  flex: 1;
}

.about_sec .about_left .about_title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.about_sec .about_left .about_title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ff6b35;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.about_sec .about_left .about_desc {
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 25px;
  color: #d6d6d6;
}

.about_sec .about_left .about_btn {
display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.about_sec .about_left .about_btn:hover {
  background: #e45723;
}

/* =========================
   Right Side
========================= */
.about_sec {
  background: linear-gradient(rgba(15,35,80,0.95), rgba(15,35,80,0.95)),
              url('../img/about-bg-img.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

/* Left */
..about_sec .about_left {
  height: 100%;
}

.about_sec .about_desc {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 25px;
  color: #d6d6d6;
}

.about_sec .about_btn {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.about_sec .about_btn:hover {
  background: #e45723;
}

/* Cards */
.about_sec .about_card {
  background:#3E4B6F;
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.about_sec .about_card:hover {
  transform: translateY(-5px);
}

.about_sec .card_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.about_sec .card_icon img {
width: 65px;
  height: 65px;
  object-fit: contain;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.about_sec .card_icon span {
background: #23376D;
  padding: 6px 14px;
  border-radius: 6px;
  width: 120px;
  position: absolute;
  z-index: -1;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  left: 27%;
}

.about_sec .about_card p {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  color: #e0e0e0;
}

/* ========================= About Section  End ========================= */

/* ========================= How It work Section Start ========================= */
   .how_it_sec{
      padding: 50px 0px 0px !important;
      position:relative;
  }
  .bg_svg_effect_line{
     position: absolute;
     /* bottom: 3rem; */
     bottom: 1rem;
     animation: lineMove 5s linear infinite;
  }


.animated-line {
  stroke-dasharray: 800 2500;   /* 800 + 2500 = 3300 */
  stroke-dashoffset: 3300;     /* SAME as total */
  animation: flowLine 7s linear infinite;
}

@keyframes flowLine {
  from {
    stroke-dashoffset: 3300;
  }
  to {
    stroke-dashoffset: 0;
  }
}









  .how_it_sec .main_title_box .main_title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 100px;
  height: 4px;
  background: #f15a29;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}




/* Wrapper */
.how_wrapper{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-top: 50px;
}



@keyframes lineMove{
  from { stroke-dashoffset:0; }
  to { stroke-dashoffset:100; }
}

/* Card */
.how_card{
position: relative;
  width: 19%;
  background: #fff;
  padding: 20px 20px;
  border-radius: 6px;
  box-shadow: 0px 11px 33.6px 0px #00000033;
  z-index: 2;
  transition: 0.4s ease;
}

.how_card:hover{
  transform:translateY(-10px);
}
.how_card:hover > .icon_box {
  background: #0d1f4a;
   transition: 0.4s ease;
}

/* ZigZag Positioning */
.step1{ margin-top:0; }
.step2{ margin-top:8rem; }
.step3{ margin-top:0; }
.step4{ margin-top:8rem; }

/* Icon */
.icon_box{
width: 70px;
  height: 70px;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 22px;
  margin-bottom: 15px;
  position: absolute;
  top: 0;
  left: 23%;
  transform: translate(-50%, -50%);
  padding: 10px;
}

/* Title */
.how_card h4{
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin-top: 30px;
}

.how_card p{
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 25px;
  color: #525252;
}

/* Step Number */
.step_no{
font-weight: 600;
  font-size: 80px;
  line-height: 24px;
  background: linear-gradient(180deg, #0009 -23.1%, #FFF0 82.34%);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media(max-width:992px){
  .how_wrapper{
    flex-direction:column;
    align-items:center;
  }


  .zigzag_line{
    display:none;
  }
}
/* ========================= How It work Section End ========================= */


/* ========================= Gallery Section  Start ======================= */
  .gallery_sec{
      padding: 50px 0px 0px !important;
  }
  .gallery_sec .main_title_box .main_title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: #f15a29;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

.gallery_title {
  font-size: 28px;
  font-weight: 600;
}

/* Left Big Image */
.gallery_left_caption {
  overflow: hidden;
  border-radius: 5px;
  height: 100%;
}

.gallery_left_caption img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

/* Right Small Images */
.gallery_right_caption {
  overflow: hidden;
  border-radius: 5px;
}

.gallery_right_caption img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 5px;
}

.gallery_right_caption:hover img {
  transform: scale(1.08);
}


/* Effect */

.gallery_item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gallery_item img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  transition: transform 0.4s ease;
}

/* Overlay (BOTTOM → TOP) */
.gallery_overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(7, 35, 88, 0.95) 10%,
    rgba(7, 35, 88, 0.7) 40%,
    rgba(7, 35, 88, 0.3) 70%,
    rgba(7, 35, 88, 0) 100%
  );

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: #fff;
  text-align: center;

  /* Start hidden at bottom */
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

/* Title */
.gallery_overlay h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease 0.2s;
  margin-top: 3rem;
}

/* View Button */
.view_btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease 0.3s;
}

/* Hover Effects */

.gallery_item:hover .gallery_overlay {
  transform: translateY(0);
}

.gallery_item:hover h4,
.gallery_item:hover .view_btn {
  opacity: 1;
  transform: translateY(0);
}

/* View Button */
.view_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  perspective: 600px;
}

.view_btn i {
  font-size: 14px;
  opacity: 0;
  transform: rotateY(180deg);
  transition: transform 1.2s ease, opacity 0.4s ease;
  transform-origin: right;
  backface-visibility: hidden;
}

.gallery_item:hover .view_btn i {
  opacity: 1;
  transform: rotateY(0deg);
}



/* ========================= Gallery Section  End ========================= */  


/* ========================= FAQ Section  Start ========================= */
.faq_sec {
  padding: 50px 0;
  margin-bottom: 4rem;
}
.faq_sec .main_title_box .main_title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 50px;
  height: 4px;
  background: #f15a29;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.faq_sec .faq_item {
  background: #e9edf7;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.faq_sec .faq_question {
  width: 100%;
  background: #E6EDFF;
  border: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  rotate
}

.faq_sec .faq_icon {
  width: 35px;
  height: 35px;
  background: #0d1f4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease;
   transform: rotate(180deg);
}

/* Rotate when open */
.faq_sec .faq_question:not(.collapsed) .faq_icon i {
  transform: rotate(180deg);
  transition: 0.3s ease;
}

.faq_sec .faq_answer {
  padding: 0 20px 20px 20px;
  font-size: 14px;
  color: #333;
  background:#E6EDFF;
}

/* ========================= FAQ Section  End ========================= */





/* ================= FOOTER sec Start ================= */
.footer_sec {
  background: linear-gradient(180deg, #061a3a 0%, #04122c 100%);
  color: #ffffff;
 position: relative;
 /* margin-top:8rem; */
}

/* ================= PARTNER BAR ================= */
.partner_sec {
  background: #ffffff;
  padding: 18px 0;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: absolute;
  width: 92%;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
}

.partner-bar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.partner-item img {
 object-fit: contain;
  max-height: 75px;
}

.divider {
  width: 1px;
  height: 45px;
  background: #dcdcdc;
}


/* =========SEARCH FOR TRIAL PAGE CSS START======== */

.search_for_trial_sec {
  background: #e9e9ed;
  padding: 40px 0 80px;
}
/* Header */

.search_for_trial_sec .header{
background:#233A63;
color:white;
padding:15px 40px;
font-size:22px;
font-weight:bold;
}

/* Main Container */

.search_for_trial_sec .container{
width:900px;
margin:20px auto;
background:#ffffff;
padding:30px;
border-radius:8px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

   /* Title */

.search_for_trial_sec .title{
text-align:center;
font-size:20px;
font-weight:bold;
margin-bottom:10px;
}

.search_for_trial_sec .subtitle{
text-align:center;
font-size:14px;
color:#444;
margin-bottom:30px;
}

/* Form Layout */

.search_for_trial_sec .form-row{
display:flex;
align-items:center;
margin-bottom:15px;
}

.search_for_trial_sec .form-row label{
width:250px;
font-size:14px;
color:#333;
}

.search_for_trial_sec .form-row select,
.form-row input{
flex:1;
padding:6px 8px;
border:1px solid #D9D9D9;
border-radius:4px;
background: #fff;
}

/* Button */

.search_for_trial_sec .search-btn{
background:#F15A29;
color:white;
border:none;
padding:10px 25px;
border-radius:4px;
cursor:pointer;
margin-top:10px;
}

.search_for_trial_sec .search-btn:hover{
background:#d94d1f;
}

/* Tips */

.search_for_trial_sec .tips{
font-size: 14px;
  line-height: 22px;
  margin-bottom: 25px;
  color: #525252;
}


.search_for_trial_sec .tips h3{
color: #233A63;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-top: 30px;
}
.search_for_trial_sec .tips ul{
 padding-left: 1rem;
}
.search_for_trial_sec .tips li{
/* margin-bottom:10px; */
font-size:15px;
}

/* Marker Color */

.search_for_trial_sec .tips ul li::marker {
  color: #f15a29;
  font-size: 16px;
}

.search_for_trial_sec .faq_question{
  width:100%;
  text-align:left;
  padding:12px 40px 12px 12px;
  border:none;
  background:#233a77;
  cursor:pointer;
  font-weight:600;
  position:relative;  
    color: #fff;
    border-radius: 5px;
}

/* Arrow icon */
.search_for_trial_sec .faq_question::after{
  content: "▼";
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  transition: transform 0.3s ease;
  font-size:14px;
}

/* rotate arrow when open */
.search_for_trial_sec .faq_question.active::after{
  transform:translateY(-50%) rotate(180deg);
}

.search_for_trial_sec .faq_answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  padding:0 12px;
  background:#e9e9ed7d;
  border-left:3px solid #f15a29;
}

.search_for_trial_sec .faq_list_caption li{
   /* text-decoration: underline; */
}



/* marker counting */
.search_for_trial_sec .tips .faq_list_caption{
  list-style-type: decimal;
}
.search_for_trial_sec.faq_box_sec .tips ul li::marker {
  color: #f15a29;
  font-size: 16px;
} 

.search_for_trial_sec .faq_list_caption_two li b{
      color: #233A63;
}


.search_for_trial_sec.footer_sec {
  margin-top: 0rem  !important;
}
/* =========SEARCH FOR TRIAL PAGE CSS END========== */



/* ==========ADVANCED SEARCH PAGE CSS START============= */
/* Kind Attention */

.search_for_trial_sec .kind_attention{
text-align:center;
margin-bottom:30px;
}

.search_for_trial_sec .kind_attention h3{
margin:0;
font-weight:bold;
text-decoration:underline;
}

.search_for_trial_sec .kind_attention p{
font-size:16px;
margin-top:5px;
}

.search_for_trial_sec .faq_list_caption_three li{
  border-bottom: 2px dotted #52525226;
    padding-bottom: 6px;
}

/* Search Box */

.search_for_trial_sec .search_box{
display:flex;
align-items:center;
gap:10px;
margin-bottom:30px;
}

.search_for_trial_sec .search_box label{
font-weight:bold;
font-size:14px;
}

.search_for_trial_sec .search_box input{
padding:4px;
border:1px solid #999;
}

.search_for_trial_sec .search_box select{
padding:4px;
border:1px solid #999;
}

.search_for_trial_sec .captcha{
height:28px;
}

.search_for_trial_sec .captcha_input{
width:60px;
}

.search_for_trial_sec .search_btn{
background:#7ac143;
border:none;
color:white;
padding:5px 10px;
border-radius:50%;
cursor:pointer;
}

/* Tips */

.search_for_trial_sec .tips{
margin-top:20px;
}
.search_for_trial_sec .tips ul li a {
  text-decoration: none;
  color: #2d2d2d;
  transition: color 0.15s ease-in-out;
}
.search_for_trial_sec.publications_sec .tips ul li:hover >a {
  color: #233A63;
  
}

.search_for_trial_sec .tips h4{
margin-bottom:10px;
font-weight:bold;
}



.tips ul li {
    position: relative;
    padding: 10px 12px;
    /* margin-bottom: 6px; */
    transition: all 0.4s ease;
    /* cursor: pointer; */
}

.search_for_trial_sec.publications_sec .tips ul li {
    cursor: pointer;
}
/* Hover Effect */
.search_for_trial_sec.publications_sec .tips ul li:hover {
    background: #f5f7ff;
    transform: translateX(10px);
    border-left: 4px solid #f15a29;
    padding-left: 18px;
}
/* Remove marker on hover */
.search_for_trial_sec.publications_sec .tips ul li:hover::marker {
    content: "";
}


/* Marker color */


/* ==========ADVANCED SEARCH PAGE CSS END=============== */















/* ================= FOOTER LINKS ================= */
.footer_link_box {
  margin-top: 7rem;
}
.footer_map {
  margin-top: 7rem;
}

.footer_link_box h4 {
font-size: 17px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  width: fit-content;
  padding-bottom: 2px;
}

.footer_link_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_link_box ul li {
  margin-bottom: 5px;
}

.footer_link_box ul li a {
  color: #d0d6e2;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer_link_box ul li a:hover {
  color: #ff6a2c;
}

/* ================= CONTACT SECTION ================= */
.footer_link_box ul li span,
.footer_link_box ul li p {
  font-size: 14px;
  color: #d0d6e2;
  line-height: 1.6;
}

/* ================= MAP ================= */
.footer_map img {
max-width: 100%;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 5px solid #183362;
}

/* ================= FOOTER BOTTOM AREA ================= */
.footer_right_caption{
    text-align: left;
    margin-right: 8rem;
}
.footer_left_caption img {
max-width: 140px;
  object-fit: contain;
  padding: 0 10px;
}

/* Visitor counter */

.visitor_number ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 5px;
}
.visitor_number p {
font-weight: 400;
font-size: 14px;
line-height: 24px;
color: #fff;
}
.visitor_number ul li span {
position: relative;
font-weight: 600;
font-size: 16px;
line-height: 24px;
text-align: center;
color: #000;
}

.visitor_number ul li span::after {
content: '';
position: absolute;
right: -4px;
top: 54%;
border-left: 1px solid #000;
height: 5px;
border-radius: 20px;
transform: translateY(-50%);
}
.visitor_number ul li span::before {
content: '';
position: absolute;
left: -4px;
top: 54%;
border-left: 1px solid #000;
height: 5px;
border-radius: 20px;
transform: translateY(-50%);
}



.visitor_number li {
background: #FFF;
background: linear-gradient(0deg, rgba(255, 255, 255, 0.99) 0%, rgba(204, 204, 204, 1) 100%);
padding: 3px 6px;
border-radius: 3px;
}












/* Contact button */
.footer_contact_caption img {
max-height: 120px;
  cursor: pointer;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 11;
}


.footer_left_caption {
  position: relative;
  z-index: 1;
  margin: 30px 0;
}

.footer_left_caption::before {
content: "";
  position: absolute;
  left: -17rem;
  top: 50%;
  transform: translateY(-50%);
  width: 615px;
  height: 90px;
  background: #ffffff;
  border-radius: 6px;
  z-index: -1;
}

/* ================= FOOTER COPYRIGHT ================= */
.footer_bottom_sec {
  background: #030c1f;
  text-align: center;
  padding: 12px 10px;
  margin-top: 25px;
}

.footer_bottom_sec p {
  margin: 0;
  font-size: 13px;
  color: #b8c0d4;
}

.footer_bottom_sec a {
  color: #ff6a2c;
  text-decoration: none;
  font-weight: 600;
}

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

/* =======NEW APPLICANT PAGE CSS START========= */
/* .new_applicants_form_box{
width:900px;
margin:auto;
background:#d3d7de;
padding:15px;
font-family:Arial;
font-size:14px;
} */

.new_applicants_form_box .form_title{
text-align:center;
background:#23376d;
color:#fff;
padding:10px;
font-size:18px;
margin-bottom:20px;
border-radius:4px;
}

.new_applicants_form_box .note_box{
background:#f6f6f6;
border-left:4px solid #ff4d4f;
padding:15px;
margin-bottom:25px;
font-size:14px;
}

.new_applicants_form_box .form_group{
margin-bottom:10px;
}

.new_applicants_form_box label{
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
    color: #23376d;
    font-size: 14px;
    text-transform: capitalize;
}

.new_applicants_form_box input,
.new_applicants_form_box select,
.new_applicants_form_box textarea{
width:100%;
/* padding:8px; */
padding:4px;
border:1px solid #d9d9d9;
border-radius:4px;
}

.new_applicants_form_box input:focus{
      box-shadow: none !important;
      border-color: #23376d;
}
.new_applicants_form_box textarea:focus{
      box-shadow: none !important;
      border-color: #23376d;
}
.new_applicants_form_box select:focus{
      box-shadow: none !important;
      border-color: #23376d;
}
.new_applicants_form_box input:focus-visible {
    outline: 1px;
    box-shadow: none !important;
}
.new_applicants_form_box textarea{
height:80px;
}
.new_applicants_form_box .required{
color:#ff0505de;
font-weight:bold;
margin-left:3px;
}

.submit_btn{
background:#f15a29;
color:#fff;
padding:10px 30px;
border:none;
border-radius:4px;
font-weight:600;
}

.submit_btn:hover{
background:#df4a19;
}
/* =======NEW APPLICANT PAGE CSS END========= */

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .divider {
    display: none;
  }

  .footer_link_box {
    margin-top: 25px;
  }
}



/* ================= FOOTER sec End ================= */
