@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

body{
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
}
body.hidden-scrolling{
	overflow-y: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/*header*/
.header{
	
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 15px;
}
.header-main{
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
}
.header .logo{
	padding: 0 15px;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 14px;
	color: #000000;
	text-decoration: none;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #000;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #e91e63;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}

.mainspace {
    padding-top: 4.25rem;
    padding-bottom: 3.75rem;
}
.well{
  min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    background: radial-gradient(186.57% 137.63% at 68.48% 100%, rgba(249, 213, 198, 0) 0%, #f9d5c6 100%);
}
.well1{
  min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    background: radial-gradient(186.57% 137.63% at 68.48% 100%, rgba(249, 213, 198, 0) 0%, #aeb0c8 100%);
}
.well2{
  min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    background: radial-gradient(186.57% 137.63% at 68.48% 100%, rgba(249, 213, 198, 0) 0%, #9bc7eb 100%);
}
.well3{
  min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
background: radial-gradient(186.57% 137.63% at 68.48% 100%, rgba(249, 213, 198, 0) 0%, #e1d491 100%);
}

.box {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    
    background: #fff;
}

.homebox{
  min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
		background-color: #016fd0;
		color: #fff;
}

.box{
  min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
		background-color: #fff;
}
.box-bg{
	width: 100%;
    height: auto;
    
    background: #fff url(../images/bg1.png) center no-repeat;
    
}


.hover-box {
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.view-more-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: red;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
  text-decoration: none;
}

.hover-box:hover .view-more-btn {
  opacity: 1;
  bottom: 150px;
  text-decoration: none;
  color: #fff;
}

.enquiry-card {
      max-width: 400px;
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 0 10px rgb(64 59 59 / 34%);
      margin: auto;
    }

    .tabs {
      display: flex;
      border-bottom: 2px solid #eee;
      margin-bottom: 15px;
    }

    .tab {
      padding: 10px 20px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      cursor: pointer;
      background: #f5f5f5;
      color: #333;
      font-weight: 500;
    }

    .tab.active {
      background: #f4b97f;
      color: #000;
    }

    h4 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .form-group {
      position: relative;
      margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      border: none;
      border-bottom: 1px solid #ccc;
      padding: 8px 0;
      font-size: 14px;
      outline: none;
      background: transparent;
    }

    .form-group a.send-otp {
      position: absolute;
      right: 0;
      top: 8px;
      font-size: 13px;
      color: #9e8bc7;
      text-decoration: none;
    }

    .form-check {
      margin-bottom: 15px;
    }

    .form-check input {
      margin-right: 8px;
    }

    .form-check label {
      font-size: 13px;
    }

    .disclaimer {
      font-size: 11px;
      color: #555;
      margin-bottom: 15px;
    }

    .btn-send {
      display: inline-block;
      background: #fff;
      color: #5b4dc0;
      border: 1px solid #ccc;
      padding: 8px 20px;
      border-radius: 20px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-send:hover {
      background: #f0f0f0;
    }

    .app {
    width: 100%;
    height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: #212121 url(../images/app-bg-img.jpg) no-repeat center center fixed;
    background-size: cover;
}

.flink {
	color: #fff;
	text-decoration: none;
}
.flink:hover {
	color: #c6c6c6;
	text-decoration: none;
}
/* Floating Ask EVA image */
.ask-eva {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px; /* Adjust as needed */
  height: auto;
  z-index: 1000;
  cursor: pointer;
}

.icon-barsoc {
    position: fixed;
    top: 60%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2000;
}
.icon-bar a {
  display: block;
  text-align: center;
  padding: 4px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.icon-barsoc a {
  display: block;
  text-align: center;
  padding: 4px;
  transition: all 0.3s ease;
  color: white;
  font-size: 30px;
}
.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}
.phone {
  background: #093;
  color: white;
}
.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.social-icons a {
  text-decoration: none;
  color: white;
  padding: 12px;
  margin: 2px 0;
  text-align: center;
  font-size: 18px;
  transition: background 0.3s;
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0077b5; }
.youtube { background: #e4405f; }

.social-icons a:hover {
  opacity: 0.8;
}

.homeslider {
    width: 100%;
    height: auto;
    padding-top: 3rem;
   
    background: #212121 url(../images/slider-bg.png)  ;
    background-size: cover;
}/* Ensure proper positioning of dropdowns */
.menu-item {
  position: relative;
}

/* First-level dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 200px;
  z-index: 1000;
}

/* Show dropdown on hover (desktop) */
.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Sub-submenu (nested inside .sub-menu) */
.nav-menu .sub-menu .menu-item-has-children > .sub-menu {
  top: 0;
  left: 100%;
  display: none;
  position: absolute;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Show sub-submenu on hover */
.sub-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Submenu links styling */
.sub-menu .menu-item a {
  display: block;
  padding: 10px 20px;
  color: #111;
  font-weight: normal;
  text-decoration: none;
  white-space: nowrap;
}

.sub-menu .menu-item a:hover {
  background-color: #f9f9f9;
  color: #e91e63; /* same pink hover color */
}


.card-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .card {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      width: 100%;
      overflow: hidden;
      border: 1px solid #0a1b4d;
    }

    .card-header {
      background: linear-gradient(135deg, #003366, #005b99);
      color: white;
      padding: 20px;
      font-size: 2.25rem;
      font-weight: bold;
    }

    .card-body {
      padding: 20px;
    }

    .section-title {
      color: #666;
      font-size: 1.75rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .description {
      font-size: 1.95rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .loan-details {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .loan-details li {
      display: flex;
      align-items: start;
      margin-bottom: 12px;
      font-size: 18px;
    }

    .loan-details li::before {
      content: '✔️';
      margin-right: 10px;
      font-size: 1rem;
      line-height: 1.5;
    }

    .accordion {
  background-color: #e4f0f9;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 10px;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

 
    .header h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }
    .header p {
      font-size: 16px;
      color: #b0c4de;
    }
    .cards {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .card {
      flex: 1;
      min-width: 280px;
      background-color: #0a1b4d;
      padding: 20px;
      border-radius: 10px;
      color: #fff;
    }
    .card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }
    .card h3::before {
      content: "📌";
      margin-right: 8px;
    }
    .card ul {
      list-style: none;
      padding: 0;
    }
    .card ul li {
      margin-bottom: 8px;
      font-size: 15px;
      position: relative;
      padding-left: 18px;
    }
    .card ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #1dd1a1;
    }
    .tip {
      margin-top: 40px;
      background-color: #1b5de6;
      padding: 15px 20px;
      border-radius: 8px;
      font-size: 15px;
    }
    .tip strong {
      color: #fff;
    }
    @media (max-width: 768px) {
      .cards {
        flex-direction: column;
      }
    }