.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item {
    position: relative;
}

.slider-bg {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center center;
    object-fit: contain; 
}

.slider-img {
    width: 100%;
    height: 80vh;
    object-fit: contain;  /* full image visible */
}

/* Dark Overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 1;
}

/* Fixed Content */
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 85%;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .slider-content h2 {
        font-size: 20px;
    }

    .slider-content h4 {
        font-size: 14px;
    }
}




.sticky-top
    {
        top: 0;
        z-index: 1030; /* Keep it above other elements */
        transition: all 0.3s ease-in-out;
    }
    
    .demo-form {
      max-width: 600px;
      margin: 5px auto;
      background: #fff;
      padding: 10px;
      border-radius: 15px;
      /*box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
    }
    .demo-form h3 {
      font-weight: 600;
      margin-bottom: 20px;
      color: #212529;
    }
    
    /*.demo_btn {*/
    /*    transition: color 0.3s ease;*/
    /*}*/
    .demo_btn:hover strong {
        color: #ffffff !important; /* Bootstrap light text */
        font-weight: normal !important;
    }
    .test_class{
        margin-right:0px !important;
    }
    .test_class2{
        margin-right:0px !important;
    }
    
    
    
    /* Highlighted Offer Styles */
    .highlight-offer {
        background: #f7e393;           
        color: #000;    
        font-weight: 600;
        padding: 5px 15px;
        border-radius: 25px;
        font-size: 14px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        transition: transform 0.3s ease;
    }
    
    .highlight-offer i {
        color: #ff6600;               /* icon color */
    }
    
    .highlight-offer:hover {
        transform: scale(1.05);       /* subtle hover effect */
    }
    
    /*################*/
    /* Topbar */
.topbar {
    background: #0b1d3a;
    color: #ffffff;
    font-size: 14px;
}

.top-info span {
    margin-right: 15px;
}

.top-info a {
    color: #ffffff;
    text-decoration: none;
}

.top-info i {
    margin-right: 5px;
    color: #0d6efd;
}

.top-offer {
    color: #ffc107;
    font-weight: 600;
    text-decoration: none;
}

.top-offer i {
    margin-right: 6px;
}

/* Logo */
.logo-img {
    width: 55px;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #0d6efd;
}

/* Navbar */
.navbar .nav-link {
    font-weight: 500;
    padding: 10px 14px;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #0d6efd;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    padding: 10px;
}

.dropdown-item {
    font-size: 14.5px;
    padding: 8px 14px;
}
.btn-close-danger {
    filter: invert(23%) sepia(96%) saturate(7463%) hue-rotate(356deg) brightness(92%) contrast(118%);
}

@media (max-width: 767px) {

  /* remove bootstrap scroll wrapper issue */
  .invoice-wrapper {
    overflow-x: visible !important;
  }

  .invoice-table,
  .invoice-table tbody,
  .invoice-table tr,
  .invoice-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .invoice-table tbody tr {
    border: 1px solid #dee2e6;
    margin-bottom: 14px;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
  }

  .invoice-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
  }

  .invoice-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #555;
    width: 40%;
    flex-shrink: 0;
  }

  .invoice-table tbody td input {
    width: 100%;
    max-width: 55%;
  }

  .invoice-table tbody td.amount {
    font-weight: 600;
    text-align: right;
  }

  .invoice-table tbody td:last-child {
    justify-content: flex-end;
  }
}



#gstSidebar {
    position: fixed;
    right: -10px;
    top: 40%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    width:89px;
}

/* Hand Emoji */
.hand-indicator {
    position: absolute;
    right: 60px;
    top: 135px;
    font-size: 28px;
    animation: handMove 1.4s infinite ease-in-out;
    pointer-events: none;
}

/* Hand Animation */
@keyframes handMove {
    0% {
        transform: translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 0.3;
    }
}

/* Button styling (optional enhancement) */
#gstSidebar button {
    border-radius: 50%;
    padding: 12px;
    font-size: 20px;
    transition: transform 0.2s ease;
}

#gstSidebar button:hover {
    transform: scale(1.1);
}
