* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* 🔷 TOPBAR */
.topbar {
    background: #003049;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 8px 40px;
    font-size: 14px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 5px;
}

/* 🔷 NAVBAR */
.navbar-nav .nav-link {
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
}

/* Dropdown animation */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 🔷 HERO */
.hero {
    background: linear-gradient(135deg, #088395, #0a9396);
    color: #fff;
    padding: 80px 0;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.hero .welcome {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero .tag {
    font-weight: 500;
    margin-top: 10px;
}

.hero .issn {
    margin-top: 10px;
    font-size: 18px;
}

.hero-btns {
    margin-top: 20px;
    display: flex;
    gap:20px;
flex-wrap: wrap;
}

.hero-btns .btn {
    margin-right: 10px;
    border-radius: 30px;
    padding: 10px 20px;
}

/* Image */
.hero-img {
    max-width: 300px;
}

/* 🔷 FOOTER */
.footer {
    background: #003049;
    color: #fff;
    padding: 20px 0;
}

.footer span {
    color: #ffb703;
}
/* About */
/* 🔷 ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.section-subtitle {
    color: #088395;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.about-section p {
    color: #555;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

.about-list i {
    color: #0d6efd;
    margin-right: 8px;
}

/* Image */
.about-img {
    max-width: 100%;
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        text-align: center;
    }

    .about-img {
        margin-bottom: 30px;
    }
}
/* Articles */
/* 🔷 CALL FOR ARTICLES */
.call-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #003049, #0a9396);
    color: #fff;
}

/* Text */
.call-section .section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.call-section p {
    line-height: 1.7;
    color: #e6e6e6;
}

/* List */
.call-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.call-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.call-list i {
    margin-right: 8px;
    color: #ffd166;
}

/* Buttons */
.call-btns {
    margin-top: 20px;
}

.call-btns .btn {
    margin-right: 10px;
    border-radius: 30px;
    padding: 10px 20px;
}

/* Image */
.call-img {
    max-width: 380px;
}

/* Responsive */
@media (max-width: 991px) {
    .call-section {
        text-align: center;
    }

    .call-img {
        margin-top: 30px;
    }
}
/* footer */
/* 🔥 MAIN FOOTER */
.main-footer {
    background: linear-gradient(135deg, #0b2e3c, #123c4a);
    color: #fff;
    padding: 60px 0 30px;
}

/* Top Section */
.footer-top {
    margin-bottom: 40px;
}

/* Logo */
.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Text */
.main-footer p {
    font-size: 14px;
    color: #d1d1d1;
}

/* Headings */
.main-footer h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Links */
.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 8px;
}

.main-footer ul li a {
    color: #d1d1d1;
    text-decoration: none;
    transition: 0.3s;
}

.main-footer ul li a:hover {
    color: #00bcd4;
    padding-left: 5px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: #ffffff20;
    color: #fff;
    padding: 8px 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #00bcd4;
}

/* Newsletter */
.newsletter {
    border-top: 1px solid #ffffff30;
    padding-top: 30px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.newsletter-form button {
    background: #00b894;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Bottom Info */
.footer-bottom {
    border-top: 1px solid #ffffff30;
    padding-top: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box i {
    background:transparent;
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .info-box {
        margin-bottom: 20px;
    }
}
/* _______________________________________*/
/* About Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.about-hero {
    background: linear-gradient(135deg, #003049, #0a9396);
    color: #fff;
    padding: 80px 0;
}

.about-hero h1 {
    font-size: 40px;
    font-weight: 700;
}

/* ABOUT */
/* 🔷 ABOUT SECTION */
.about-content {
    padding: 80px 0;
}

/* 🔥 Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #003049, #0a9396);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.7;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* 🔷 Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-weight: 700;
    color: #003049;
}

.underline {
    width: 80px;
    height: 4px;
    background: #0a9396;
    margin: 10px auto;
    border-radius: 2px;
}

/* 🔷 TEXT CONTENT */
.about-text p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 15px;
    text-align: justify;
    font-size: 15px;
}

/* 🔥 Subtle Animation */
.about-text p:hover {
    color: #000;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-box {
        font-size: 14px;
    }

    .about-text p {
        font-size: 14px;
    }
}

/* 🔷 MISSION SECTION */
.mission-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Section Title */
.section-title {
    font-weight: 700;
}

.section-subtitle {
    color: #0d6efd;
    font-weight: 600;
}

/* 🔥 CARD DESIGN */
.mission-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

/* Gradient top border */
.mission-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #003049, #0a9396);
}

/* ICON */
.mission-box .icon {
    font-size: 35px;
    color: #0d6efd;
    margin-bottom: 15px;
}

/* TEXT */
.mission-box h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.mission-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* HOVER EFFECT */
.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Icon animation */
.mission-box:hover .icon {
    transform: scale(1.2);
    color: #0a9396;
    transition: 0.3s;
}

/* 🔥 FEATURES SECTION */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #003049, #0a9396);
    position: relative;
}

/* Optional overlay glow */
.features-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    top: -50px;
    left: -50px;
    border-radius: 50%;
}

/* Section title */
.section-title {
    font-weight: 700;
}

/* 🔷 CARD */
.feature-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ICON */
.feature-box .icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #ffd166;
}

/* TEXT */
.feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #e0e0e0;
}

/* HOVER EFFECT */
.feature-box:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .feature-box {
        padding: 20px;
    }
}
/* FOOTER */
.footer {
    background: #003049;
    color: #fff;
    padding: 20px;
}
/* 🔷 TABLE SECTION */
.journal-table-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Table Styling */
.journal-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Header (Left column) */
.journal-table th {
    width: 30%;
    background: #003049;
    color: #fff;
    padding: 15px;
    font-weight: 500;
}

/* Data */
.journal-table td {
    padding: 15px;
    color: #333;
}

/* Row border */
.journal-table tr {
    border-bottom: 1px solid #F45B26;
}

/* Links */
.journal-table a {
    color: #0d6efd;
    text-decoration: none;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .journal-table th,
    .journal-table td {
        font-size: 14px;
        padding: 10px;
    }
}
/* _____________________________________________ */
/* Purpose Page */
/* HERO */
.hero_p{
background:linear-gradient(135deg,#003049,#0a9396);
color:#fff;text-align:center;padding:80px 0
}

/* PURPOSE TEXT */
.purpose-text{
line-height:1.9;color:#444;text-align:justify
}

/* HIGHLIGHT */
.highlight{
background:#f8f9fa;
border-left:5px solid #0a9396;
padding:20px;border-radius:8px;
margin-bottom:30px
}

/* CARDS */
/* 🔥 SECTION BACKGROUND */
.purpose-section {
    background: linear-gradient(135deg, #003049, #0a9396);
    padding: 80px 0;
    color: #fff;
}

/* TITLE */
.section-title {
    font-weight: 700;
}

.section-subtitle {
    color: #ffd166;
    font-weight: 600;
}

/* 🔥 CARD DESIGN */
.purpose-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ICON CIRCLE */
.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: 0.4s;
}

.icon-box i {
    font-size: 28px;
    color: #ffd166;
}

/* TEXT */
.purpose-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.purpose-card p {
    font-size: 14px;
    color: #e0e0e0;
}

/* 🔥 HOVER EFFECT */
.purpose-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255,255,255,0.15);
}

/* ICON ANIMATION */
.purpose-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
    .purpose-card {
        padding: 20px;
    }
}
/* 🔥 WRAPPER */
.circle-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🔥 SVG BASE */
.circle-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* 🔥 OUTER ROTATION */
.outer {
    animation: rotateClock 14s linear infinite;
}

/* 🔥 INNER ROTATION (REVERSE) */
.inner {
    animation: rotateAnti 10s linear infinite;
}

/* 🔥 TEXT STYLE */
.circle-svg text {
    fill: #ffd166;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 6px rgba(255, 209, 102, 0.6));
}

/* 🔥 CENTER IMAGE (PERFECT FIX) */
.center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* ALWAYS CENTER */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🔥 IMAGE STYLE */
.center-img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    
    /* smooth floating */
    animation: floatY 3s ease-in-out infinite;
}

/* 🔥 FLOAT ANIMATION (NO CENTER BREAK) */
@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* 🔥 ROTATION CLOCKWISE */
@keyframes rotateClock {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 🔥 ROTATION ANTICLOCKWISE */
@keyframes rotateAnti {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* 🔥 HOVER SPEED EFFECT */
.circle-wrapper:hover .outer {
    animation-duration: 6s;
}
.circle-wrapper:hover .inner {
    animation-duration: 4s;
}

/* 🔥 OPTIONAL GLOW RING (PREMIUM LOOK) */
.circle-wrapper::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,209,102,0.3), transparent);
    z-index: 1;
    animation: pulseGlow 3s infinite;
}

/* 🔥 PULSE GLOW */
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
    .circle-wrapper {
        width: 220px;
        height: 220px;
    }

    .center-img img {
        width: 70px;
        height: 70px;
    }

    .circle-svg text {
        font-size: 10px;
    }
}
/* =========================
CONTACT SECTION
========================= */

.contact-section{
padding:80px 0;
background:linear-gradient(135deg,#f4f9fb,#eef7ff);
position:relative;
overflow:hidden;
}

/* TITLE */

.section-subtitle{
color:#0a9396;
font-weight:600;
letter-spacing:1px;
margin-bottom:10px;
}

.section-title{
font-size:42px;
font-weight:700;
color:#003049;
margin-bottom:15px;
}

.contact-tagline{
max-width:700px;
margin:auto;
color:#555;
line-height:1.8;
}

/* LEFT INFO BOX */

.contact-info-box{
height:100%;
background:linear-gradient(135deg,#003049,#005f73);
padding:40px;
border-radius:20px;
color:#fff;
position:relative;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.contact-info-box::before{
content:'';
position:absolute;
top:-50px;
right:-50px;
width:180px;
height:180px;
background:rgba(255,255,255,0.08);
border-radius:50%;
}

.contact-info-box h3{
font-size:30px;
font-weight:700;
margin-bottom:35px;
}

/* CONTACT ITEM */

.contact-item{
display:flex;
gap:20px;
margin-bottom:30px;
align-items:flex-start;
}

.contact-item .icon{
width:55px;
height:55px;
background:#0a9396;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:20px;
flex-shrink:0;
transition:0.4s;
}

.contact-item:hover .icon{
transform:rotate(360deg) scale(1.1);
background:#ee9b00;
}

.contact-item h6{
font-weight:600;
margin-bottom:5px;
font-size:18px;
}

.contact-item p{
margin:0;
font-size:15px;
line-height:1.7;
}

.contact-item a{
color:#fff;
text-decoration:none;
}

/* SOCIAL */

.social-contact{
margin-top:30px;
display:flex;
gap:15px;
}

.social-contact a{
width:45px;
height:45px;
background:rgba(255,255,255,0.1);
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
color:#fff;
font-size:18px;
transition:0.4s;
text-decoration:none;
}

.social-contact a:hover{
background:#ee9b00;
transform:translateY(-5px);
}

/* FORM BOX */

.contact-form-box{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
height:100%;
}

/* FORM */

.contact-form-box .form-control{
height:55px;
border-radius:12px;
border:1px solid #ddd;
padding-left:15px;
font-size:15px;
box-shadow:none;
transition:0.3s;
}

.contact-form-box textarea.form-control{
height:auto;
padding-top:15px;
}

.contact-form-box .form-control:focus{
border-color:#0a9396;
box-shadow:0 0 10px rgba(10,147,150,0.15);
}

/* BUTTON */

.contact-btn{
background:linear-gradient(135deg,#0a9396,#005f73);
color:#fff;
border:none;
padding:14px 35px;
border-radius:50px;
font-weight:600;
font-size:16px;
transition:0.4s;
display:inline-flex;
align-items:center;
gap:10px;
}

.contact-btn:hover{
background:linear-gradient(135deg,#ee9b00,#ca6702);
transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

.contact-section{
padding:60px 0;
}

.section-title{
font-size:32px;
}

.contact-info-box,
.contact-form-box{
padding:30px;
}

}