.body-main-new {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;

}



a {
    text-decoration: none;
}

.hero-main-new {
    background: linear-gradient(96deg, #c76bd5 10.47%, #3c0145 77.17%);
    color: #ffffff;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero-main-new h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;

}

.hero-main-new p {
    font-size: 1.25rem;
    /* opacity: 0.9; */
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 400;
    color: #fff;
}

.hero-main-new-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main-new {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #ffffff;
    color: #3C0145;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.contact-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: -60px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.info-card-mini {
    background: #ffffff;
    padding: 25px;
    border-radius: 0px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card-mini:hover {
    transform: translateY(-5px);
}

.info-card-mini i {
    font-size: 1.8rem;
    color: #3C0145;
    margin-bottom: 15px;
}

.info-card-mini h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #3C0145;
}

.info-card-mini p {
    color: #64748b;
    font-size: 0.95rem;
}

.container-main-new {
    max-width: 850px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.form-wrapper {
    background: #ffffff;
    border-radius: 0px;
    box-shadow: 0 15px 35px rgba(60, 1, 69, 0.08);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3C0145, #a339b3);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3C0145;
}

.form-header p {
    color: #64748b;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    background-color: #fcfcfc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3C0145;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(60, 1, 69, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #3C0145;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #2a0130;
    box-shadow: 0 5px 15px rgba(60, 1, 69, 0.2);
}

#appointmentFields {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Messages */
.message-box {
    display: none;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.success-msg {
    background-color: #ecfdf5;
    color: #10b981;
    border: 1px solid #a7f3d0;
}

.error-msg {
    background-color: #fef2f2;
    color: #ef4444;
    border: 1px solid #fecaca;
}

.bottom-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.bottom-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 0px;
    border: 1px solid #e2e8f0;
}

.bottom-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3C0145;
}

.bottom-card-two {
    background: #ffffff;
    padding: 30px;
    border-radius: 0px;
    border: 1px solid #e2e8f0;
    height: 50%;
}

.bottom-card-two h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3C0145;
}

.location-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.location-item:last-child {
    border: none;
}

.location-item strong {
    display: block;
    color: #3C0145;
}

.map-box {
    background: #f1f5f9;
    height: 100px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-main-new h1 {
        font-size: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .bottom-info {
        grid-template-columns: 1fr;
    }

    .hero-main-new-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.btn-last {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    width: 100%;
    justify-content: center;

}

.btn-primary-last {
    background-color: white;
    color: #3C0145;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* /////////////// */

:root {
    --brand-purple: #3C0145;
    --light-accent: #fdfbff;
    --text-muted: #777;
}

.research-showcase-light {
    padding: 100px 5%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.container-research-main {
    max-width: 1300px;
    margin: 0 auto;
}

.research-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.eyebrow-research {
    color: var(--brand-purple);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.research-page-title {
    font-size: 3rem;
    color: var(--brand-purple);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
}

/* --- THE MAIN GRID --- */
.research-grid-visual {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

/* --- The Research Card with image --- */
.research-item-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.research-card-inner {
    display: flex;
    flex-direction: column;
}

.research-item-card:hover {
    border-color: var(--brand-purple);
    box-shadow: 0 20px 50px rgba(60, 1, 69, 0.06);
    transform: translateY(-5px);
}

/* Image styling (Cover look) */
.research-cover-side {
    width: 100%;
    height: 180px; /* Reduced height for "cover" style */
    overflow: hidden;
}

.research-cover-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.research-item-card:hover .research-cover-side img {
    transform: scale(1.05);
}

/* Content styling */
.research-text-side {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.research-top-meta {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.pub-date {
    color: var(--brand-purple);
    font-weight: 700;
    margin-right: 15px;
}

.pub-journal {
    color: var(--text-muted);
    font-style: italic;
}

.research-item-title {
    font-size: 1.3rem;
    color: var(--brand-purple);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.research-snippet {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Link styling */
.btn-paper-link {
    color: var(--brand-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-paper-link svg {
    width: 16px;
    height: 16px;
}

.btn-paper-link:hover {
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* --- CSS-ONLY SCROLL ANIMATION --- */
@keyframes revealAcademic {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    view-timeline-name: --academic;
    view-timeline-axis: block;
    animation: revealAcademic linear both;
    animation-timeline: --academic;
    animation-range: entry 10% cover 10%;
}

@media (max-width: 768px) {
    .research-grid-visual { grid-template-columns: 1fr; }
    .research-page-title { font-size: 2.2rem; }
}