@media screen and (min-width:991px){
    .navmenu{
        margin-right: -230px;
    }
}

.mbbs-benefits-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mbbs-benefits-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.mbbs-benefits-list li::before {
  content: "\f26e"; /* Bootstrap check-circle */
  font-family: "Bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 16px;
  color: #3783b4;
}


.uni-details-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.uni-details-table th,
.uni-details-table td {
    border: 1px solid #3783b4;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.uni-details-table thead th {
    background: #3783b4;
    color: #fff;
    font-weight: 600;
    border: 1px solid #eee;
}

.uni-details-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.uni-details-table tbody tr:hover {
    background: #eef4ff;
    transition: 0.3s ease;
}

.faq-premium-section {
    background: #f8f9fc;
}

.faq-premium-section h4 {
    font-weight: 600;
    color: #111;
}

/* Accordion Item */
.faq-premium-section .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.faq-premium-section .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Question Button */
.faq-premium-section .accordion-button {
    background: #ffffff;
    font-weight: 500;
    padding: 18px 22px;
    color: #111;
    border: none;
    box-shadow: none;
    transition: 0.3s ease;
}

/* Active Question */
.faq-premium-section .accordion-button:not(.collapsed) {
    background: #3783b4;
    color: #fff;
}

/* Remove default arrow background */
.faq-premium-section .accordion-button::after {
    filter: brightness(0.3);
    transition: 0.3s ease;
}

.faq-premium-section .accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

/* Answer Body */
.faq-premium-section .accordion-body {
    background: #fff;
    padding: 20px 22px;
    line-height: 1.7;
    color: #555;
    border-top: 1px solid #eee;
}

/* List Styling */
.faq-premium-section .accordion-body ul {
    padding-left: 20px;
}

.faq-premium-section .accordion-body ul li {
    margin-bottom: 8px;
}

/* Smooth animation */
.faq-premium-section .accordion-collapse {
    transition: all 0.3s ease;
}


.submit-btn {

        padding: 12px;
        background: #275b87;
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        margin-top: 12px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(216, 150, 101, 0.3);
    }

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .submit-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(216, 150, 101, 0.4);
    }

    .submit-btn:hover::before {
        left: 100%;
    }

    .submit-btn:hover::after {
        opacity: 1;
    }
/* Mobile */
@media (max-width: 768px) {
    .faq-premium-section .accordion-button {
        font-size: 14px;
        padding: 15px 18px;
    }
}
