* {
    margin: 0;
    padding: 0px px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.gst-section {
    padding: 0px 0;
    /* background: linear-gradient(to bottom, #f8faff, #eef2f9); */
}

.container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
}

/* TOP FEATURES */
.top-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 50px;

    /* SAME BACKGROUND FEEL */
    background: linear-gradient(90deg, #f1f3fb, #eef1f9);

    border-radius: 16px;
    overflow: hidden;
    /* important for dividers */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.top-item {
    background: transparent;
    padding: 28px 10px;
    text-align: center;
    font-weight: 600;
    /* color: #0b2c5f; */
    color: black;
    position: relative;
}

/* MAIN GRID */
.gst-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}


/* BOX */
.gst-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.gst-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0b2c5f;
}

.gst-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}



/* WORK GRID */
.mt {
    margin-top: 30px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 25px;
}

.work-item {
    background: linear-gradient(180deg, #ffffff, #f1f4fb);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: black;
    margin-bottom: 6px;
}

.work-item p {
    font-size: 14px;
    color: #555;
}

/* RIGHT GRID */
.right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.right-item {

    background: linear-gradient(90deg, #f1f3fb, #eef1f9);
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    color: black;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gst-grid {
        grid-template-columns: 1fr;
    }

    .top-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: 1fr;
    }
}


/* ICON STYLE */
.top-item i {
    display: block;
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 12px;
}

/* LIST ICON */
.gst-box ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #1f2937;
}

.gst-box ul li i {
    color: #22c55e;
    font-size: 18px;
}

/* WORK CARD ICON */
.work-item i {
    font-size: 34px;
    color: #1e3a8a;
    /* color: black; */
    margin-bottom: 12px;
}

/* RIGHT CARD ICON */
.right-item i {
    display: block;
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 6px;
}






.floating-group {
    position: relative;
    margin-bottom: 15px;
}

.floating-group input,
.floating-group select {
    width: 100%;
    padding: 8px 10px;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    height: 35px;
    background: none;
    transition: border-color 0.3s;
}

.floating-group label {
    position: absolute;
    left: 12px;
    top: 8px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
    background: white;
    padding: 0 4px;
    pointer-events: none;
}

.floating-group input:focus+label,
.floating-group input:not(:placeholder-shown)+label,
.floating-group select:focus+label,
.floating-group select:valid+label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    color: #f9a825;
}


.top-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(11, 44, 95, 0.15);
}


.gst-box.big {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.gst-box.big h3 {
    font-size: 26px;
    color: #0b2c5f;
    margin-bottom: 18px;
    font-weight: 700;
}


.gst-box.small {
    background: linear-gradient(180deg, #ffffff, #f3f6fd);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gst-box.small h3 {
    font-size: 22px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}



.hero-rating {
  font-size: 16px;
  margin-top: 10px;
}

.hero-rating .rating-value {
  font-size: 20px;
  font-weight: 700;
  color: #ffc107;
}

.hero-rating .stars i {
  color: #ffc107;
  margin-right: 2px;
}

.hero-rating .rating-text {
  font-size: 14px;
  opacity: 0.9;
  color: black;
}


.sticky-book-btn {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  display: none;
}

/* sirf mobile pe */
@media (min-width: 769px) {
  .sticky-book-btn {
    display: none !important;
  }
}

