.navbar {
    background-color: #007f00;
    /* Dark Green */
    padding: 1rem;
    height: 90px;
    
}



.navbar-brand {
    font-weight: bold;
    text-transform: uppercase;
    color: white !important;
    font-size: 1.3rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ffd700 !important;
    /* Gold on hover */
}

/* Apply Button Styling */
.btn-apply {
    background-color: #ffd700;
    color: black !important;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.btn-apply:hover {
    background-color: #e6c300;
}

/* Navbar-toggler (for mobile) */
.navbar-toggler {
    border: none;
    outline: none;
    transition: transform 0.4s ease-in-out;
}

/* Rotation Animation for Toggle */
.navbar-toggler.active {
    transform: rotate(90deg);
}

/* Offcanvas Menu Styling */
.offcanvas {
    width: 60%;
    background: rgba(46, 125, 50, 0.95);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;

    transform: translateX(100%);
}

/* Show Offcanvas Menu */
.offcanvas.show {
    transform: translateX(0%);

}


@media (max-width: 992px) {
        
    .navbar-brand,
    .tagline {
        font-size: 16px;
        text-wrap: wrap;
        width: 80%;
    }

    #tagline {
        font-size: 12px;
        text-wrap: wrap;
        width: 80%;

    }
    .responsive{
        padding: 20px;
      }}
      @media (min-width: 770px) and (max-width: 1080px) {
        .responsive{
            padding: 20px;
            margin-top:20px;
          }
         
          .outerVideo{
            padding: 20px;
       }
       #tagline {
        font-size: 12px;
        text-wrap: wrap;
        width: 70%;
        height: 20px;
        margin-left: -10px;
    }
    
   .static_btn{
    font-size: 12px;
    }
    .navbar-brand,
    .tagline {
        font-size: 12px;
        text-wrap: wrap;
        width: 80%;
        /* text-align:center; */
    
    
    }
        
        
        
        
        }
      
@media (max-width: 768px) {

    .navbar-brand,
    .tagline {
        font-size: 12px;
        text-wrap: wrap;
        width: 80%;
   margin-left: -10px;
 
    }

    #tagline {
        font-size: 12px;
        text-wrap: wrap;
        width: 80%;
        height: 20px;   
      
      
    }

    .about-us h4 {
        font-size: 14px;
        line-height: 1.6;
        color: #272323;
        text-align: justify;
    }

    .partner_img {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    }

    .stockBroking{
        background: rgba(245, 245, 245, 0.645);
    color: #043e15;
    margin-top:10px ;
    }
    .responsive{
      padding: 20px;
    }
    .footer{
        font-size:10px;
        }
      .contact{
        padding: 10px;
      }
}
@media (min-width: 990px) and (max-width: 1300px) {
    .navbar-collapse {

width: 40%;;
    }
    .navbar-collapse li {
     
        font-size: 12px;
            }
    .navbar-brand,
    .tagline {
        font-size: 11px;
        text-wrap: wrap;
        width: 60%;
   /* margin-left: -10px; */
   text-align: left;
    }

    #tagline {
        font-size: 12px;
        text-wrap: wrap;
        width: 50%;
        height: 20px;  
        text-align: left;
    }

    .about-us h4 {
        font-size: 13px;
        line-height: 1.6;
        color: #272323;
        text-align: justify;
    }
    .navbar {
        background-color: #007f00;
        /* Dark Green */
        padding: 1rem;
        height: 50px;
    }
}

#tagline {
    margin-top: -8px;
    color: white;
    font-weight: bolder;
    text-align: center;
    height: 20px;
    margin-left:-30px;

    word-spacing: 9px;
}
.stockBroking{
    background: rgba(245, 245, 245, 0.645);
color: #043e15;
}

.setImage {
background: linear-gradient(rgba(60, 111, 60, 0.5), rgba(42, 71, 42, 0.5)), 
        url('../bull.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;

height: 100vh; /* Ensure full screen */
}
 html ::selection{
background-color: greenyellow;
color:rgb(3, 42, 17);
 }
 .nav-link {
    position: relative;
    color: white !important;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

/* Underline Animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px; /* Adjust this to control distance from text */
    width: 0%;
    height: 2px;
    background-color: #ffd700; /* Gold color */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Expand underline on hover */
.nav-link:hover::after {
    width: 100%;
    left: 0;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}