* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

:root {
    --dark-text: #111827;
    --light-text: #ffffff;
    --accent-primary: #FF8C42;
    --accent-secondary: #FFB84D;
    --background-muted: #E5E7EB;
}

body {
 background-color: #E5E7EB;
font-family: "Poppins", sans-serif !important;
color: var(--dark-text);
font-size: 16px;
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
font-family: "Raleway", sans-serif;
 }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    margin: 0 auto;
    right: 0;
    height: 78px;
    max-width: 1240px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #FFCD40, #FFA943);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.25);
}

.menu-toggle span {
    position: relative;
    width: 20px;
    height: 2px;
    background: #1f1f1f;
    display: inline-block;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #1f1f1f;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span::before {
    top: -6px;
}

.menu-toggle span::after {
    top: 6px;
}

.menu-toggle.active span {
    background: transparent;
}

.menu-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FF8C42, #FFB84D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    transition: max-height 0.3s ease;
}

.nav-menu a {
    text-decoration: none;
    color: #414651;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FF8C42;
}

.nav-menu a.active {
    color: #FF8C42;
    font-weight: 700;
}
.logout-btn {
    color: #181D27;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    padding: 8px 14px;
    width: 106px;
    height: 36px;
    background: linear-gradient(90deg, #FFCD40 0%, #FFA943 100%);
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
    border-radius: 8px;
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 140, 66, 0.3);
}

/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 70px);
    background-image: url(../images/banner-image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
/*            width:1440px;*/
    height: 722px;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
/*    backdrop-filter: blur(2px);*/
}

.content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1180px;
    width: 100%;
}

.profile-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.profile-icon {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speech-bubble {
    width: 80px;
    height: 80px;
    background-color: #4A90E2;
    border-radius: 50% 50% 50% 0;
    border: 3px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-picture {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.welcome-heading {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
}

.description-text {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
}

.description-text.secondary {
    font-size: 18px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    color: #181D27;
    border: none;
    width: 192.85px;
    height: 62px;
    background: linear-gradient(90deg, #FFCD40 0%, #FFA943 100%);
    border-radius: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, #FFCD40, #FFA943) 1;
    border-image-slice: 1;
    box-sizing: border-box;
    width: 192.85px;
    height: 62px;
    border-radius: 8px;
    border: 1px solid #FFCD40;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 140, 66, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.2);
}

/* About Section Styles */
.about-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
/*            max-width: 1400px;*/
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 40px;
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
}

.about-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.about-description {
    font-size:16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/*.feature-icon.orange {
    background-color: #FF8C42;
}

.feature-icon.teal {
    background-color: #4ECDC4;
}

.feature-icon.purple {
    background-color: #9B59B6;
}*/

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.4rem;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
}

.about-images {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 1rem;
    align-items: start;
    margin:auto;
}

.about-image {
    width: 284px;
    margin-top: 40px;
    height: 470px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-image.lab {
    aspect-ratio: 4/3;
}

.about-image.auditorium {
    aspect-ratio: 3/4;
}

/* Journals Section Styles */
.journals-section {
    padding: 5rem 2rem;
    background-color: #FFCD4033;
/*            max-width: 1400px;*/
    margin: 0 auto;
}

.journals-heading {
    font-size:32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1rem;
}

.journals-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.journal-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.journal-header {
    display: flex;
    align-items: flex-start;
}

.journal-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-shrink: 0;
}

.journal-icon svg {
    width: 100%;
    height: 100%;
    fill: #9B59B6;
}

.journal-title-wrapper {
    flex: 1;
}

.journal-acronym {
    font-size: 1.5rem;
    font-weight: 700;
    color: #280F58;
    margin-bottom: 0.25rem;
}

.journal-full-title {
    font-size: 20px;
    color: #3C3C3C;
    line-height: 1.4;
    margin-left: 0px;
    width: 100%;
    max-width: 310px;
}

.journal-image-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.journal-image {
    width: 100%;
    height: 435px;
    object-fit: cover;
    display: block;
    padding: 20px 0 0;
    border-radius: 8px;
  
}


.journal-arrow-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 10;
}

.journal-arrow-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.journal-arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: #111827;
}

/* Credentials Section Styles */
.credentials-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
/*            max-width: 1400px;*/
    margin: 0 auto;
}

.credentials-heading {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 2rem;
}

.credentials-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /*gap: 3rem;
    max-width: 12320px;*/
    margin: 0 auto;
}

.credential-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential-badges {
    display: flex;
    height:113px
/*            gap: 1.5rem;*/
/*            flex-wrap: wrap;*/
     }

.credential-badge {
    background-color: #ffffff;
    border: 5px solid;
    border-radius: 99px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 150px;
}

.credential-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.credential-badge.orange {
    border-color: #FF8C42;
/*            padding: 35px 16px;*/
}


 .credential-divider-color{

    background: linear-gradient(to right, #FFCD40, #FFA943);
    
 
}
.credential-badge:last-child {
    margin-left: -20px;
}

.credential-badge:first-child {
    z-index: 1;
}

.credential-badge.teal {
    border-color: #4ECDC4;
}

.credential-badge.yellow {
    border-color: #FFD700;
}

.credential-badge.purple {
    border-color: #9B59B6;
}

.credential-badge-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-badge-icon svg {
    width: 100%;
    height: 100%;
}

.credential-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    text-align: center;
    flex: 1;
}

.credential-divider {
    height: 4px;
    width: 100%;
/*            border-radius: 2px;*/
}

.credential-divider.orange {
    background: #FF8C42;
}

.credential-divider.teal {
    background-color: #4ECDC4;
}

.credential-divider.yellow {
    background-color: #FFD700;
}

.credential-divider.purple {
    background-color: #9B59B6;
}

.credential-category-heading {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-top: 0;
    text-align: center;
}

.credential-category-description {
    font-size: 16px;
    line-height: 1.6;
    color: #3C3C3C;
    text-align: center;
    font-weight: 400;
}
/* Contact Section Styles */
.contact-section {
    padding: 3.5rem 6rem;
    background-color: #FDF6EC;
/*            max-width: 1400px;*/
    margin: 0 auto;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
/*            max-width: 1200px;*/
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-heading {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 40px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #CACACA;
    border-radius: 4px;
    background-color: #FFFFFF;
    font-size: 1rem;
    font-family: inherit;
    color: #8D8D8D;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FFB84D;
    box-shadow: 0 0 0 4px rgba(255, 205, 64, 0.15);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit-btn {
    background: linear-gradient(135deg, #FFCD40, #FFA943);
    color: #1F2937;
    border: none;
    padding: 0.95rem 2.5rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: center;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 173, 66, 0.35);
}

.contact-info-wrapper {
    background-color: #111111;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
/*    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);*/
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}
.contact-info-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px dotted #FFB84D;
    background-color: rgba(255, 205, 64, 0.08);
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: #FFB84D;
    fill: none;
    stroke-width: 1.8;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFCD40, #FFA943);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-text {
    font-size: 1rem;
    color: #E5E7EB;
    line-height: 1.6;
    margin: 0;
    padding-left: 0;
}

.stay-connected {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stay-connected-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFB84D;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px dotted #FFB84D;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #FFB84D;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    stroke: #FFB84D;
    fill: none;
    stroke-width: 2;
}

.social-icon:hover svg {
    stroke: #121212;
}

/* Footer Styles */
.footer {
    background-color: #111827;
    padding: 3rem 2rem 1.5rem;
    color: #ffffff;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FF8C42, #FFB84D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo-icon::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
}

.footer-tagline {
    font-size: 1rem;
    color: #9CA3AF;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 10px;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    /* border-radius: 50%; */
    /* border: 2px solid #ffffff; */
    display: flex;
    align-items: center;
    justify-content: left;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-social-icon:hover {
    background-color: #FF8C42;
    border-color: #FF8C42;
    transform: translateY(-3px);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: #E5E7EB;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-nav-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-nav-link:hover {
    color: #FF8C42;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #9CA3AF;
    margin-bottom: 0;
}

.footer-contact-text {
    font-size: 1rem;
    color: #9CA3AF;
    min-width: 365px;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
}

/* Indexing Section Styles */
.indexing-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
/*            max-width: 1200px;*/
    margin: 0 auto;
    text-align: center;
}

.indexing-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.indexing-gradient-divider {
    height: 4px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem;
    background: linear-gradient(to right, #FF8C42, #28A745);
    border-radius: 2px;
}

.indexing-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    position: relative;
}

.indexing-badge {
    background-color: #ffffff;
    border: 2px solid #FF8C42;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    min-width: 200px;
}

.indexing-badge:hover {
    transform: translateY(-5px);
}

.indexing-badge.google-scholar {
    z-index: 1;
    margin-right: -1rem;
}

.indexing-badge.road {
    z-index: 2;
    background-color: #F8F8F8;
    margin-left: -1.5rem;
}

.google-scholar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-scholar-icon svg {
    width: 100%;
    height: 100%;
}

.google-scholar-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.google-scholar-text .google {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4285F4;
}

.google-scholar-text .scholar {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.road-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #DC143C;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.road-lock {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.road-lock svg {
    width: 100%;
    height: 100%;
    fill: #DC143C;
}

.indexing-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */

@media (max-width:1360px) {
    .credential-badge {
        padding: 0.5rem 1rem;
        min-width: 140px;
    }
    .about-section {
        padding: 60px 0px;
    }
    .contact-section {
        padding: 40px 0;
    }
} 

@media (max-width:1200px) {
    .credentials-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
    .credential-badges {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        grid-template-columns: 1fr 1fr;
    }
    .about-image {
        width: 100%;
    }
    .journals-container {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem !important;
        flex-wrap: wrap;

    }


    .menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: 72px;
        right: 16px;
        width: calc(100% - 32px);
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: flex-start;
        background: #ffffff;
        border-radius: 16px;
        padding: 0;
        box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
        gap: 0;
        font-size: 0.95rem;
    }

    .nav-menu.open {
        max-height: 320px;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .welcome-heading {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .description-text {
        font-size: 1rem;
    }

    .description-text.secondary {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-heading {
        font-size: 2.2rem;
    }

    .about-tagline {
        font-size: 1.2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .journals-section {
        padding: 3rem 1.5rem;
    }

    .journals-heading {
        font-size: 2rem;
    }

    .journals-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .credentials-section {
        padding: 3rem 1.5rem;
    }

    .credentials-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .credentials-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info-wrapper {
        padding: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .indexing-section {
        padding: 3rem 1.5rem;
    }

    .indexing-heading {
        font-size: 2.2rem;
    }

    .indexing-badges-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .indexing-badge.google-scholar {
        margin-right: 0;
    }

    .indexing-badge.road {
        margin-left: 0;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2.25rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-submit-btn {
        align-self: stretch;
    }
}
.header-main {
    width: 100%;
    height: 78px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 1000;
}
.header-main .container {
    height: 78px;
    padding: 0 20px;
}
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.header {
    padding: 0 20px;
}
@media (min-width: 320px) and (max-width: 460px) {

        .feature-content h3 {
            font-size: 16px;
        }
        .contact-form-heading{
            font-size: 25px;

        }
        .feature-content p {

               font-size: 14px;
        }
}
.logout-btn--mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .header {
                display: flex;
                align-items: center;
            }

            .header .logo {
                order: 1;
            }

            .header .menu-toggle {
                order: 2;
                margin-left: auto;
            }

            .header nav {
                order: 3;
                width: 100%;
            }

            .logout-btn--desktop {
                display: none;
            }

            .header .nav-menu li {
                width: 100%;
            }

            .nav-menu .logout-menu-item {
                margin-top: 1rem;
            }

            .logout-btn--mobile {
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }