p{
    font-size:18px;
   
    
}
h1{
    font-weight:revert;
    
}
sup {
    
    font-size: .5em;
}

/* Video Banner */
    .video-banner {
      position: relative;
      overflow: hidden;
      height: 100vh;
    }

    .video-banner video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .video-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      padding-top: 20%;
    }

    /* Navbar Hover Animation */
    .navbar-nav .nav-link {
      position: relative;
      color: #000;
      transition: 0.3s;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: green;
      transition: 0.5s;
    }

    .navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}
    
    .custom-btn {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  color: #000;
  background: #9dd8f6;
  border-radius: 0px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.custom-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #007bff;
  z-index: -1;
  transition: width 0.4s ease;
}

.custom-btn:hover::before {
  width: 100%;
}

.custom-btn:hover {
  color: #fff;
}
.sticky-top{
    position:fixed;
    width:100%;
}

.curved-img{
    /*border-radius:20px;*/
    width:100%;
}

.custom-prev, .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}
.custom-prev { left: -50px; }
.custom-next { right: -50px; }

.swiper-pagination { display: none; }
.swiper-button-disabled {
  opacity: 0.5 !important; /* Light fade effect */
  pointer-events: none;  /* Prevent clicking when truly disabled */
}

.custom-prev.swiper-button-lock,
.custom-next.swiper-button-lock {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}



.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 18px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.invest-banner {
  position: relative;
  background-image: url('../img/Home-Enquiry-Bg.webp'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  height: 600px;  /* Adjust as needed */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.invest-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 20px;
  width: 100%;
  color: #fff;
}

.invest-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.custom-btn1 {
  background-color: #9dd8f6;
  color: #000;
  padding: 10px 25px;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.custom-btn1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #198754;
  z-index: -1;
  transition: width 0.4s ease;
}

.custom-btn1:hover::before {
  width: 100%;
}

.custom-btn1:hover {
  color: #fff;
}

.grad {

  
  background-image: linear-gradient(#0b2f40,60%, #abbece);
}
.blue-bg{
    background-color:#e8f1ff;
}
.card,.card img{
    border-radius:0;
}
.card-body-height{
    height:170px;
}
.card-body-height2{
    height:170px;
}
.bg-info{
    background:#9dd8f6 !important;
}
.social-media ul li, .footer-menu ul li{
    list-style:none;
}
.social-media ul li a{
    color:#fff;
    margin-right:20px;
}
.footer-menu ul li a{
    color:#212529;
    text-decoration:none;
}
.footer{
    background-color:#fff;
    color:#212529;
}
.menus{
    display:flex;
    justify-content:end;
}

.banner-title{
    font-size:3rem;
    margin-top:2%;
}
.app-item li{
        font-size:18px;
      margin-top:10px;
    }
    .app-item li span{
       font-weight:700;
    margin-right: 5px;
}
    
  .box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px; /* optional */
}

.box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.box-img {
  overflow: hidden;
}

.box-img img {
  transition: transform 0.4s ease;
}

.box:hover .box-img img {
  transform: scale(1.1);
}
  
    .box-content{
        background:#88cdec;
        height:160px;
    }

@media (min-width: 1500px) {
    .h1, h1 {
        font-size: 3.2rem;
    }
    h2 {
        font-size: 2.8rem;
        font-weight:revert;
    }
    .card-body-height{
    height:180px;
}
}


.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}






@media only screen and (max-width: 992px) {
    .card-body-height {
    height: auto;
}
    .banner-title{
    font-size:1.5rem;
    margin-top:2%;
}
    .box-content{
        background:#88cdec;
        height:175px;
    }
    
form{
    width:90%;
}

h2{
    padding-top:2%;
}
.menus{
    display:flex;
    justify-content:start !important;
}
ul{
    padding-left:0;
}
.video-content{
    margin-top:50%;
}
.custom-next{
    right:8px;
}
.custom-prev{
    left:8px;
}
}

/*@media only screen and (max-width: 992px) {*/
/* .menus{*/
/*    display:flex !important;*/
/*    justify-content:start !important;*/
/*}*/
}