/* Fonts are loaded via Google Fonts CDN in header.blade.php */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}

body {
    background: #f8fbf9;
}

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #000000d4;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

/* SCROLL ACTIVE */
.site-header.sticky {
    background: rgba(10, 50, 35, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* OPTIONAL: slightly compact header on scroll */
.site-header.sticky .header-container {
    padding: 14px 5%;
}

.header-container {
    margin: auto;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 160px;
    max-height: fit-content;
}

.logo img {
    width: 100%;
    height: 100%;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.nav a.active {
    color: #7ee0a3;
    position: relative;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #7ee0a3;
    border-radius: 2px;
}

.nav a:hover {
    color: #7ee0a3;
}

.nav-btn {
    padding: 8px 18px;
    border: 2px solid #7ee0a3;
    border-radius: 20px;
    color: #7ee0a3;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url("../images/bg.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(12, 60, 36, 0.88),
        rgba(12, 60, 36, 0.65),
        rgba(12, 60, 36, 0.15)
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

/* LEFT */
.hero-name {
    color: #cfe9d8;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.4rem;
    color: #fff;
    margin: 15px 0;
    line-height: 1.2;
}

#typing-text {
    color: #7ee0a3;
    border-right: 2px solid #7ee0a3;
    padding-right: 5px;
    white-space: nowrap;
    animation: blinkCursor 0.8s steps(1) infinite;
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

.hero-role {
    color: #e4f3eb;
    font-size: 18px;
    margin-bottom: 25px;
}

/* Icons */
.hero-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-icons span {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #7ee0a3;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.primary {
    background: #2f7d4a;
    color: #fff;
}

.outline {
    border: 2px solid #7ee0a3;
    color: #7ee0a3;
}

/* RIGHT */
/* RIGHT IMAGE CONTAINER */
.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    height: 500px;
}

/* CIRCULAR FRAME */
.hero-image-circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    padding: 14px;
    box-shadow:
        inset 0 0 0 6px rgba(126, 224, 163, 0.35),
        0 30px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    animation: heroZoom 8s ease-in-out infinite;
}

/* IMAGE INSIDE CIRCLE */
.hero-image-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
}

/* KEYFRAMES */
@keyframes heroZoom {
    0% {
        transform: scale(1.08);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* CURVE */
.hero-curve {
    position: absolute;
    bottom: -2px;
    width: 100%;
    z-index: 3;
}

.hero-curve svg {
    width: 100%;
    display: block;
}

/* about style */
.about-section {
    position: relative;
    padding: 0px 20px 70px;
    background: url("../images/aboutbg2.webp") center/cover no-repeat;
    overflow: hidden;
}

/* ASYMMETRIC CURVE – RIGHT SIDE DOMINANT */
.about-section::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30%;
    left: 0px;
    width: 160%;
    height: 80px;
    background: linear-gradient(
        to top left,
        #ffffff 65%,
        rgba(255, 255, 255, 0.95) 85%,
        rgba(255, 255, 255, 0.8) 100%
    );
    border-top-left-radius: 100% 100%;
    border-top-right-radius: 30% 70%;
}

.about-container {
    padding: 40px 2%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.about-left h2 {
    font-size: 32px;
    color: #1f4d3a;
    padding: 10px 0px;
    width: fit-content;
    margin-bottom: 30px;
}

.about-left h2 span {
    color: #0ea75f;
}

.exp {
    color: #555;
    margin-bottom: 20px;
    margin-top: 10px;
}

.about-img img {
    width: 100%;
    border-radius: 18px;
    max-height: 420px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.about-img::before {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: 1;
    background: linear-gradient(120deg, #4caf50, #8bc34a, #cddc39, #4caf50);
    background-size: 300% 300%;
    filter: blur(30px);
    opacity: 0.2;
    animation: bgMove 8s linear infinite;
}

/* RIGHT */
.about-right h3 {
    font-size: 26px;
    color: #1f4d3a;
    border-bottom: 1px solid #a5a5a5;
    padding: 10px 0px;
}

.about-right h3 span {
    color: #0ea75f;
}

.desc {
    margin: 0px 0 0px;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #a5a5a5;
    padding: 10px 0px;
}

.expertise-cards {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 3.5px 3.5px;
    text-align: center;
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2f6b4f, #4c9b72);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin: auto;
    margin-bottom: 12px;
}

.card h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #1f3d2b;
}

.card p {
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE */
@media only screen and (max-width: 576px) {
    .gallery-box {
        margin-bottom: 20px;
    }

    .gallery-box img {
        width: 100%;
        height: auto;
    }

    .gallery-content {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }

    .gallery-content i {
        font-size: 18px;
    }

    .gallery-modal-content {
        max-width: 95%;
        max-height: 80%;
        margin-top: 60px;
    }

    .gallery-close {
        font-size: 28px;
        top: 15px;
        right: 20px;
    }
}

/* ============================= */
/* 🖥️ Large Screens (1200px+) */
/* ============================= */

@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0px 2%;
    }
    .expertise-cards {
        flex-direction: row;
        gap: 20px;
        margin-top: 20px;
    }
    .card {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }

    .about-img img {
        max-height: none;
    }
}

@media (max-width: 1024px) {
    .expertise-cards {
        flex-direction: row;
        gap: 20px;
        margin-top: 20px;
    }
    .card {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }

    .about-img img {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .expertise-cards {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    .card {
        flex: 1 1 100%;
        padding: 18px;
    }
    .card h4 {
        font-size: 15px;
    }
    .card p {
        font-size: 13px;
    }
    .icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .about-img img {
        max-height: none;
    }
}

@media (max-width: 576px) {
    .expertise-cards {
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
    }
    .card {
        flex: 1 1 100%;
        padding: 15px;
        border-radius: 12px;
    }
    .card h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .card p {
        font-size: 12px;
        line-height: 1.4;
    }
    .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 992px) {
    .key-expertise-card {
        transform: none !important;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(10, 50, 35, 0.98);
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 100%;
        border-radius: 12px;
        display: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-icons,
    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        margin-top: 40px;
    }

    .hero-image-circle {
        width: 300px;
        height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        margin: auto;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* INITIAL STATE (hidden) */
.reveal-pop {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.9s ease-out;
}

/* ACTIVE STATE */
.reveal-pop.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* INITIAL STATE */
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.9s ease-out;
}

/* ACTIVE STATE */
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* INITIAL STATE */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.9s ease-out;
}

/* ACTIVE STATE */
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* ================= EXPERTISE Section ================= */

.expertise-section {
    padding: 0px 20px 70px;
    background-image: url("../images/aboutbg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.expertise-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px; /* curve depth – isse kam/zyada kar sakte ho */
    background: #ffffff; /* next section ka background color */
    height: 80px;
    border-top-left-radius: 100% 60px;
    border-top-right-radius: 100% 60px;
}

.section-title {
    font-size: 32px;
    color: #1f3d2b;
    margin-bottom: 50px;
    text-align: center;
}

.section-title span {
    color: #0ea75f;
}

.experties-container {
    padding: 40px 2%;
}

.expertise-cards-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BEGIN CARD DESIGN */
.HERO_CARD {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive: Large Screens (1920px+) */
@media (min-width: 1920px) {
    .expertise-cards-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .HERO_CARD {
        width: 100%;
        height: 400px;
    }
}

/* Responsive: Large Screens (1280px - 1919px) */
@media (min-width: 1280px) and (max-width: 1919px) {
    .expertise-cards-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .HERO_CARD {
        width: 100%;
    }
}

/* Responsive: Medium Screens (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .expertise-cards-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .HERO_CARD {
        width: 100%;
        height: 400px;
    }

    .HERO_DESCRIPTION {
        left: 120px;
    }
}

/* Responsive: Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .experties-container {
        padding: 30px 2%;
    }

    .expertise-cards-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .HERO_CARD {
        width: 100%;
        height: 400px;
    }

    .HERO_LOGO {
        height: 70px;
        width: 70px;
        bottom: 25%;
        left: 20px;
    }

    .HERO_DESCRIPTION {
        left: 110px !important;
        bottom: 22% !important;
    }

    .HERO_DESCRIPTION p {
        font-size: 18px;
        margin-bottom: 5px;
        padding: 8px 0px;
        line-height: 1.4;
        border-bottom: 1px solid rgba(165, 165, 165, 0.7);
    }
}

/* Responsive: Small Tablets (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .experties-container {
        padding: 25px 3%;
    }

    .expertise-cards-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .HERO_CARD {
        width: 100%;
        height: 400px;
    }

    .HERO_LOGO {
        height: 60px;
        width: 60px;
        bottom: 22%;
        left: 15px;
    }

    .HERO_DESCRIPTION {
        left: 90px !important;
        bottom: 20% !important;
    }

    .HERO_DESCRIPTION p {
        font-size: 16px;
        margin-bottom: 5px;
        padding: 6px 0px;
        line-height: 1.3;
        border-bottom: 1px solid rgba(165, 165, 165, 0.6);
    }
}

/* Responsive: Mobile (below 480px) */
@media (max-width: 479px) {
    .experties-container {
        padding: 20px 5%;
    }

    .expertise-cards-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .HERO_CARD {
        width: 100%;
        height: 400px;
    }

    .HERO_LOGO {
        height: 55px;
        width: 55px;
        bottom: 20%;
        left: 12px;
    }

    .HERO_DESCRIPTION {
        left: 10px !important;
        bottom: 18% !important;
    }

    .HERO_DESCRIPTION p {
        font-size: 15px;
        margin-bottom: 4px;
        padding: 5px 0px;
        line-height: 1.25;
        border-bottom: 1px solid rgba(165, 165, 165, 0.5);
    }

    .HERO_BTN {
        right: 20px !important;
        bottom: 5% !important;
        font-size: 1.2rem !important;
        padding: 4px 8px !important;
    }

    .HERO_DATE {
        left: 12px !important;
        bottom: 8% !important;
        font-size: 14px !important;
    }
}

.HERO_PROFILE_IMG {
    height: 100%;
    width: 100%;
}

.HERO_DESCRIPTION_BG {
    background-image: linear-gradient(0deg, #000000, #1f4d3a);
    border-radius: 30px;
    position: absolute;
    top: 60%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
}

/* second card variation */
.SECOND_HERO .HERO_DESCRIPTION_BG {
    background-image: linear-gradient(0deg, #000000, #1f4d3a);
}

.HERO_LOGO {
    height: 80px;
    width: 80px;
    border-radius: 20px;
    background-color: #fff;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
}

.HERO_LOGO img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.HERO_DESCRIPTION {
    position: absolute;
    color: #fff;
    left: 150px;
    bottom: 26%;
}

.HERO_DESCRIPTION p {
    font-size: 22px;
    margin-bottom: 6px;
    border-bottom: 1px solid #a5a5a5;
    padding: 10px 0px;
}

.HERO_BTN {
    position: absolute;
    color: #fff;
    right: 30px;
    bottom: 7%;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1.5rem;
}

.HERO_BTN a {
    color: #fff;
}

.HERO_DATE {
    position: absolute;
    color: #fff;
    left: 30px;
    bottom: 10%;
}

.HERO_DATE p {
    font-size: 16px;
    opacity: 0.9;
}

/* awards style */
.awards-section {
    position: relative;
    padding: 20px 20px 50px;
    background:
        linear-gradient(
            135deg,
            rgba(200, 180, 255, 0.25),
            rgba(160, 140, 230, 0.1)
        ),
        url("../images/aboutbg.webp") center / cover no-repeat;
}

.awards-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.awards-header h2 {
    font-size: 36px;
    color: #1f4d3a;
    margin-bottom: 10px;
}

.awards-header h2 span {
    color: #0ea75f;
}

.award-card .read-more {
    position: absolute;
    bottom: 12px;
    right: 20px;
}

.award-card .read-more i {
    font-size: 1.4rem;
    color: #1f4d3a;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.awards-header p {
    font-size: 15px;
    color: #444;
}

/* GRID */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.award-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 20px 25px 10px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    will-change: transform;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.award-card:nth-child(1) {
    animation-delay: 0s;
}
.award-card:nth-child(2) {
    animation-delay: 0.4s;
}
.award-card:nth-child(3) {
    animation-delay: 0.8s;
}
.award-card:nth-child(4) {
    animation-delay: 1.2s;
}

.award-card:hover {
    transform: translateY(-12px) scale(1.02);
    animation-play-state: paused;
}

/* ICON */
.award-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1f4d3a, #2f7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon i {
    color: #ffffff;
    font-size: 24px;
}

/* TEXT */
.award-card h3 {
    font-size: 18px;
    color: #1f4d3a;
    margin-bottom: 10px;
}

.award-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.award-year {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgb(31 77 58);
    color: #ffffff;
    font-weight: 600;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .awards-header h2 {
        font-size: 28px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* publications & achievements */
.publication-section {
    background:
        linear-gradient(183deg, rgb(200 180 255 / 70%), rgb(160 140 230 / 20%)),
        url(../images/bg2.webp) center / cover no-repeat;
    padding: 30px 20px 50px;
    position: relative;
}

.pub-wave {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.pub-wave svg {
    display: block;
    width: 100%;
    height: 80px; /* little curve */
}

.container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.pub-left h3 {
    font-size: 28px;
    color: #1f4d3a;
    font-size: 28px;
    color: #1f4d3a;
    border-bottom: 1px solid #a5a5a5;
    padding: 10px 0px;
}

.sub-text {
    margin: 0px 0 10px;
    color: #444;
    border-bottom: 1px solid #a5a5a5;
    padding: 10px 0px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stats h2 {
    color: #1f4d3a;
    font-size: 32px;
}

.stats span {
    font-size: 14px;
    color: #555;
}

.stats > div {
    position: relative;
    padding-right: 30px;
}

/* Right side vertical line (last item ko chhod kar) */
.stats > div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #cfcfcf;
}

.btn-view {
    display: inline-block;
    background: #1f4d3a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px;
}

.contact-info p {
    margin: 6px 0;
    border-bottom: 1px solid lightgray;
    padding: 10px 0px;
    width: 60%;
    color: #1f3d2b;
    font-weight: 500;
}

.contact-info i {
    padding: 10px;
    border-radius: 50px;
    color: #1f4d3a;
    font-size: 14px;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons span {
    width: 40px;
    height: 40px;
    background: #1f4d3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons span:hover {
    background-color: #0ea75f;
}

.social-icons i {
    color: #fff;
    font-size: 20px;
}

/* RIGHT FORM */
.pub-right-wrap {
    position: relative;
}

.pub-right-bg {
    background:
        linear-gradient(140deg, rgb(16 39 26 / 30%), rgb(13 51 15 / 26%)),
        url(../images/contact-bg.webp);
    padding: 35px 40px 80px;
    border-radius: 18px;
    color: #fff;
}

.pub-right {
    position: relative;
    background: rgb(255 255 255 / 44%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    margin-top: -50px; /* overlap effect */
    margin-left: 25px;
    margin-right: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.pub-right:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
}

.pub-right:hover label {
    color: #ffffff;
}

.pub-right-bg h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.pub-right-bg p {
    font-size: 14px;
    opacity: 0.9;
}

.pub-right .row {
    display: flex;
    gap: 15px;
}

.pub-right input,
.pub-right textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.pub-right textarea {
    margin: 15px 0;
    height: 100px;
}

.pub-right button {
    background: #1f4d3a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
}

.pub-right:hover button {
    background-color: #0ea75f;
}

/* captcha */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.captcha-row label {
    font-size: 14px;
    white-space: nowrap;
    color: #1f4d3a;
    font-weight: 500;
}

.captcha-row input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 15px;
    }

    .pub-right .row {
        flex-direction: column;
    }

    .contact-info p {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    /* .captcha-row {
    flex-direction: column;
    align-items: flex-start;
  } */
}

@media (max-width: 576px) {
    .container {
        grid-template-columns: 1fr;
    }

    .captcha-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* footer style */
.site-footer {
    position: relative;
    background:
        linear-gradient(360deg, rgb(3 30 14), rgb(3 36 5 / 75%)),
        url(../images/bg5.webp);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
    font-family: "Poppins", sans-serif;
    padding-top: 50px;
}

.footer-bottom a {
    text-decoration: none;
    font-size: inherit;
    color: wheat;
}

.footer-wave {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* MAIN GRID */
.footer-container {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* COLUMN */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e9f5ec;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.6;
    color: #e9f5ec;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #b6e2c6;
}

.footer-col i {
    margin-right: 10px;
    color: #b6e2c6;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social-icons i {
    margin-right: 0px;
    font-size: 20px;
    color: #ffffff;
}

.footer-social-icons span {
    width: 40px;
    height: 40px;
    background: #1f4d3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .footer-social-icons {
        justify-content: center;
    }

    .footer-social-icons i {
        margin-left: 6px;
    }
}

.footer-social-icons span:hover {
    background-color: #0ea75f;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.25);
    font-size: 13px;
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hixu {
        margin: 0 auto;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-col i {
        margin-right: 6px;
    }

    .footer-col ul {
        gap: 2rem;
    }
}

/* about page style */
#about-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url("../images/bg2.webp") center/cover no-repeat;
    padding: 120px 0px;
    color: #fff;
}

#hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 60, 30, 0.55);
}

#hero-text h1 {
    font-size: 3rem;
    margin: 15px 0;
    opacity: 0.9;
    text-align: center;
}

#hero-text span {
    color: #0ea75f;
}

#hero-image img {
    width: 100%;
    border-radius: 20px;
}

#hero-curve {
    position: absolute;
    bottom: -1px;
    width: 100%;
}

#hero-curve path {
    fill: #f5f9f6;
}

/* SUMMARY */
#about-summary {
    padding: 40px 2%;
    background: url("../images/aboutbg2.webp") center/cover no-repeat;
    position: relative;
}

#summary-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

#summary-image {
    position: relative;
    display: inline-block;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    height: auto;
}

#summary-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    position: relative;
    z-index: 2;
    transition: 0.3s ease-in-out;
    max-height: 520px;
    object-fit: contain;
}

#summary-image img:hover {
    transform: scale(1.08);
}

/* BACKGROUND ANIMATION LAYER */
#summary-image::before {
    content: "";
    position: absolute;
    inset: -10px; /* thoda bahar tak effect */
    z-index: 1;

    background: linear-gradient(120deg, #4caf50, #8bc34a, #cddc39, #4caf50);

    background-size: 300% 300%;
    filter: blur(30px);
    opacity: 0.2;

    animation: bgMove 8s linear infinite;
}

/* ANIMATION */
@keyframes bgMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

#summary-text h2 {
    font-size: 32px;
    color: #1f3d2b;
    border-bottom: 1px solid #a5a5a5;
    padding: 10px 0px;
}

#summary-text p {
    padding: 5px 0px;
    color: #555;
    line-height: 1.8;
}

#summary-text span {
    color: #0ea75f;
}

/* EDUCATION */
#education-section {
    padding: 80px 2%;
    background: url("../images/bg2.webp") center/cover no-repeat;
    position: relative;
}

#education-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#education-curve path {
    fill: #f5f9f6; /* previous section background color */
}

#education-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1f3d2b;
}

#education-title span {
    color: #0ea75f;
}

#education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#edu-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    color: #555;
}

#edu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: #1f3d2be0;
    color: #ffffff;
}

#edu-card h4 {
    font-size: 18px;
    color: #1f4d3a;
}

#edu-card:hover h4,
#edu-card:hover p,
#edu-card:hover span,
#edu-card:hover {
    color: #ffffff;
}

#edu-card span {
    color: #1f4d3a;
    font-weight: 500;
    font-size: 18px;
}

/* EXPERTISE */
#expertise-section {
    background:
        linear-gradient(183deg, rgb(200 180 255 / 70%), rgb(160 140 230 / 20%)),
        url(../images/bg2.webp) center / cover no-repeat;
    padding: 80px 2%;
    position: relative;
    overflow: hidden;
}

/* GREEN CURVED STRIP */
.expertise-bottom-curve {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
    fill: #ffffff;
}

#expertise-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 160px;
    background: #ffffff;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

#expertise-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1f3d2b;
}

#expertise-title span {
    color: #0ea75f;
}

#expertise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#expertise-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    color: #555;
}

#expertise-card h4 {
    font-size: 18px;
    color: #1f4d3a;
    margin-bottom: 1rem;
}

#expertise-card i {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1f4d3a, #2f7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

#expertise-card:hover i {
    background: #0ea75f;
    font-size: 20px;
}

#expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: #1f3d2be0;
    color: #ffffff;
}

#expertise-card:hover h4 {
    color: #ffffff;
}

/* TIMELINE */
#timeline-section {
    padding: 40px 2% 90px;
    position: relative;
    background:
        linear-gradient(135deg, rgb(200 180 255 / 90%), rgb(160 140 230 / 19%)),
        url(../images/bg2.webp) center / cover no-repeat;
}

#timeline-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1f3d2b;
    position: relative;
    padding: 22px 30px;
}

#timeline-item.has-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: start;
    gap: 10px;
}

/* Left text group */
#timeline-item.has-detail > span {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1f3d2b;
}

/* Right detail box */
.timeline-detail {
    grid-column: 2;
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.85);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.timeline-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: #1f3d2be0;
}

.timeline-detail:hover h4,
.timeline-detail:hover p {
    color: #ffffff;
}

/* Image */
.timeline-detail img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* Text */
.timeline-detail h4 {
    margin: 0 0 6px;
    color: #1f3d2b;
    font-size: 16px;
}

.timeline-detail p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

#timeline-title span {
    color: #0ea75f;
}

#timeline {
    max-width: 1200px;
    margin: auto;
    border-left: 3px solid #7bbf8a;
}

#timeline-item {
    padding: 20px 30px;
    position: relative;
}

#timeline-item::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 28px;
    width: 16px;
    height: 16px;
    background: #2f6f4f;
    border-radius: 50%;
}

/* CURVE COMMON */
.section-curve {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.section-curve path {
    fill: #f4f9f6; /* page background color */
}

/* TOP CURVE */
.curve-top {
    top: 0;
}

/* BOTTOM CURVE */
.curve-bottom {
    bottom: 0;
}

/* Content above curve */
#timeline-title,
#timeline {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    #timeline-item.has-detail {
        grid-template-columns: 1fr;
    }

    .timeline-detail {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    #timeline-item.has-detail {
        display: contents;
    }

    .timeline-detail {
        margin-top: 15px;
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 15px;
        margin-left: 15px;
    }

    #timeline-item.has-detail > span {
        margin-left: 1rem;
    }

    .timeline-detail img {
        width: 100%;
        height: auto;
    }
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    #summary-container {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    #summary-image img {
        max-height: none;
    }
}

@media (max-width: 992px) {
    #hero-container,
    #summary-container,
    #education-grid,
    #expertise-cards {
        grid-template-columns: 1fr;
    }

    #hero-text h1 {
        font-size: 2.3rem;
    }
}

/* Experties style */
#experties-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url("../images/bg3.webp") center / cover no-repeat;

    padding: 120px 0px;
    color: #fff;
}

/* CURVE COMMON */
.section-curve {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.section-curve path {
    fill: #f4f9f6; /* page background color */
}

/* TOP CURVE */
.curve-top {
    top: 0;
}

/* BOTTOM CURVE */
.curve-bottom {
    bottom: 0;
}

#EXPERTISE-RESEARCH-PAGE {
    padding: 75px 2% 100px;
    background:
        linear-gradient(183deg, rgb(200 180 255 / 70%), rgb(160 140 230 / 20%)),
        url(../images/bg2.webp) center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* TITLE */
#PAGE-TITLE {
    text-align: center;
    font-size: 2.4rem;
    color: #1f4d3a;
    margin-bottom: 40px;
}

#PAGE-TITLE span {
    color: #0ea75f;
}

/* TABS */
#TAB-BUTTONS {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.TAB {
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    background: #000f32;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
    border: 1px solid #1f4d3a;
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
}

.TAB.active,
.TAB:hover {
    background: #1f3d2be0;
    color: #fff;
}

/* CONTENT */
#TAB-CONTENT {
    max-width: 1100px;
    margin: auto;
}

.TAB-PANEL {
    display: none;
}

.TAB-PANEL.active {
    display: block;
}

/* GRID */
.TAB-GRID {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    transition: 0.5s;
}

.TAB-GRID:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
    color: #ffffff;
}

.TAB-GRID:hover h3,
.TAB-GRID:hover ul li {
    color: #ffffff;
}

.TAB-GRID img {
    width: 100%;
    border-radius: 15px;
    object-fit: contain;
    max-height: 350px;
    cursor: pointer;
}

.TAB-GRID h3 {
    color: #1f3d2b;
    margin-bottom: 10px;
}

.TAB-GRID ul {
    margin-bottom: 10px;
    padding: 0px 15px;
}

.TAB-GRID ul li {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    font-family: sans-serif;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .TAB-GRID {
        grid-template-columns: 1fr;
    }

    #PAGE-TITLE {
        font-size: 2rem;
    }
}

/* publication style */
#publication-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url(../images/bg.webp) center / cover no-repeat;

    padding: 120px 0px;
    color: #fff;
}

#PUBLICATIONS-PAGE {
    padding: 60px 2% 100px;
    background: url(../images/bg2.webp) center / cover no-repeat;
    font-family: "Segoe UI", sans-serif;
    position: relative;
    overflow: hidden;
}

/* HERO */
#PUBLICATIONS-HERO {
    text-align: center;
    margin-bottom: 60px;
}

#PUBLICATIONS-HERO h2 {
    font-size: 40px;
    color: #1f4d3a;
}

#PUBLICATIONS-HERO span {
    color: #0ea75f;
}

#PUBLICATIONS-HERO p {
    max-width: 720px;
    margin: 10px auto;
    color: #5f7f72;
    font-size: 16px;
}

.CONTENT-ITEM {
    position: relative;
}

/* Removed MORE_BTN button styles as per request */

/* Responsive */
@media (max-width: 768px) {
    .CONTENT-ITEM {
        padding-right: 0 !important;
    }

    .CONTENT-LIST span {
        padding: 0px !important;
    }

    /* Removed MORE_BTN rules per request */
}

@media (max-width: 576px) {
    .CONTENT-ITEM {
        padding-right: 0 !important;
    }

    .CONTENT-LIST span {
        padding: 0px !important;
    }

    /* Removed MORE_BTN rules per request */
}

/* CARDS */
.CONTENT-CARD {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    max-width: 1100px;
    margin: auto;
}

.CONTENT-CARD:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
}

.CONTENT-CARD:hover h3,
.CONTENT-CARD:hover h4,
.CONTENT-CARD:hover span {
    color: #ffffff;
}

.CONTENT-CARD h3 {
    color: #1f4d3a;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-family: sans-serif;
}

/* LIST */
.CONTENT-LIST {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.CONTENT-LIST li {
    padding: 10px 0;
    border-bottom: 1px solid #a5a5a5;
}

.CONTENT-LIST h4 {
    font-size: 16px;
    color: #000000;
    font-family: sans-serif;
}

.CONTENT-LIST span {
    font-size: 15px;
    color: #444;
    padding: 10px 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    #PUBLICATIONS-GRID {
        grid-template-columns: 1fr;
    }

    #PUBLICATIONS-STATS {
        grid-template-columns: 1fr;
    }
}

/* awards style */
#awards-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url(../images/bg5.webp) center / cover no-repeat;

    padding: 120px 0px;
    color: #fff;
}

#AWARDS-PAGE {
    padding: 60px 20px 90px;
    background: url(../images/aboutbg2.webp) center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

#AWARDS-CONTAINER {
    max-width: 1400px;
    margin: auto;
}

#AWARDS-HEADER {
    text-align: center;
    margin-bottom: 50px;
}

#AWARDS-HEADER h2 {
    font-size: 44px;
    font-weight: 700;
    color: #1f4d3a;
}

#AWARDS-HEADER span {
    color: #0ea75f;
}

#AWARDS-HEADER p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 16px;
    color: #555;
}

/* AWARD ROW */
.AWARD-ROW {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    border: 1px solid transparent;
}

.AWARD-ROW:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    border: 1px solid #1f3d2be0;
}

/* IMAGE SIDE */
.AWARD-IMAGE {
    display: flex;
    justify-content: space-between;
}

.awards-img-content-wrraper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

.awards-img-content-wrraper-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#full-grid {
    grid-column: span 2;
}

.awards-image-container img {
    border: 12px #1f3d2be0;
    border-style: ridge;
    padding: 4px;
}

.awards-image-container img {
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.AWARD-IMAGE img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: left;
}

.AWARD-YEAR {
    width: fit-content;
    height: fit-content;
    background: linear-gradient(135deg, #1f4d3a, #2f7d32);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* CONTENT SIDE */
.AWARD-CONTENT {
    flex: 1;
}

.AWARD-CONTENT h3 {
    font-size: 28px;
    color: #1f3d2b;
    margin-bottom: 6px;
}

.AWARD-CONTENT h4 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 16px;
    font-weight: 600;
}

.AWARD-CONTENT ul {
    padding: 0px 20px;
}

.AWARD-CONTENT p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.awards-highlight {
    color: #0ea75f !important;
    font-size: 1.1rem !important;
}

.AWARD-CONTENT ul li {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .awards-image-container img {
        width: 100%;
        height: 98%;
    }
}

@media (max-width: 992px) {
    .AWARD-ROW,
    .AWARD-ROW.REVERSE {
        flex-direction: column;
        gap: 20px;
    }

    .awards-image-container img {
        width: 100%;
    }

    .awards-img-content-wrraper {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    #full-grid {
        grid-column: span 1;
    }

    .awards-img-content-wrraper-2 {
        grid-template-columns: 1fr;
    }

    .AWARD-IMAGE {
        flex-direction: column-reverse;
    }

    .AWARD-CONTENT p {
        max-width: 100%;
    }

    .awards-image-container {
        order: 1;
    }
}

/* contact style */
#contact-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url(../images/aboutbg.webp) center / cover no-repeat;

    padding: 120px 0px;
    color: #fff;
}

#CONTACT-INFO {
    margin-top: 4rem;
}

#CONTACT-COLLABORATE-PAGE {
    position: relative;
    background:
        linear-gradient(183deg, rgb(200 180 255 / 70%), rgb(160 140 230 / 20%)),
        url(../images/bg2.webp) center / cover no-repeat;
    padding: 120px 8% 100px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* MAIN GRID */
#CONTACT-CONTAINER {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
}

/* LEFT INFO */
#CONTACT-INFO h2 {
    font-size: 42px;
    color: #1f4d3a;
    margin-bottom: 10px;
    text-align: center;
}

#CONTACT-INFO h2 span {
    color: #0ea75f;
}

#CONTACT-INFO #CONTACT-DESC {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
    text-align: center;
}

#COLLABORATION-POINTS {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.COLLAB-ITEM {
    background: rgb(255 255 255);
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 500;
    color: #1f4d3a;
    transition: 0.5s;
    font-size: 17px;
    font-family: sans-serif;
}

.COLLAB-ITEM:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
    color: #ffffff;
}

.COLLAB-ITEM:hover ul li {
    color: #ffffff;
}

.COLLAB-ITEM ul {
    padding: 10px 20px;
}

.COLLAB-ITEM ul li {
    color: #444;
    font-weight: normal;
    font-size: 15px;
}

#CONTACT-DETAILS p {
    margin: 6px 0;
    font-weight: 500;
}

#infocard {
    padding: 20px 20px;
    background: rgb(255 255 255);
    border-radius: 12px;
    font-weight: 500;
    color: #1f4d3a;
    margin-top: 2rem;
    margin-left: 30px;
    transition: 0.5s;
}

#infocard:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
}

#infocard:hover i,
#infocard:hover p,
#infocard:hover span {
    color: #ffffff;
}

#infocard:hover span {
    background: #0ea75f;
}

#infocard:hover i {
    font-size: 20px;
}

/* RESPONSIVE */

@media (max-width: 480px) {
    #CONTACT-INFO h2 {
        font-size: 32px;
    }

    #CONTACT-FORM-WRAPPER {
        padding: 30px 22px;
    }

    #COLLABORATION-POINTS {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .pub-right {
        padding: 40px 15px;
        margin-left: 0px;
    }

    #infocard {
        margin-left: 0px;
    }

    #COLLABORATION-POINTS {
        grid-template-columns: 1fr;
    }

    #CONTACT-CONTAINER {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* networks and collaboration style section */
#NETWORKS-COLLABORATIONS-PAGE {
    position: relative;
    padding: 80px 6% 100px;
    background:
        linear-gradient(183deg, rgb(200 180 255 / 70%), rgb(160 140 230 / 20%)),
        url(../images/aboutbg.webp) center / cover no-repeat;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* LEFT INFO */
#NETWORKS-INFO h2 {
    font-size: 42px;
    color: #1f4d3a;
    margin-bottom: 16px;
    text-align: center;
}

#NETWORKS-INFO h2 span {
    color: #0ea75f;
}

#NETWORKS-DESC {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #444;
    text-align: center;
}

/* RIGHT CARDS */
#NETWORKS-CARDS {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, 1fr);
}

.NETWORK-CARD {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    transition: 0.5s;
}

.NETWORK-CARD-2 {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    transition: 0.5s;
}

.NETWORK-CARD:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
    color: #ffffff;
}

.NETWORK-CARD-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
    color: #ffffff;
}

.NETWORK-CARD:hover h4,
.NETWORK-CARD:hover h3,
.NETWORK-CARD:hover ul li,
.NETWORK-CARD:hover p,
.NETWORK-CARD:hover h5 {
    color: #ffffff;
}

.NETWORK-CARD-2:hover h4,
.NETWORK-CARD-2:hover h3,
.NETWORK-CARD-2:hover ul li,
.NETWORK-CARD-2:hover p,
.NETWORK-CARD-2:hover h5 {
    color: #ffffff;
}

.NETWORK-CARD h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f4d3a;
}

.NETWORK-CARD-2 h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f4d3a;
}

.NETWORK-CARD h5 {
    color: #000000;
    font-size: 16px;
    font-family: sans-serif;
}

.NETWORK-CARD-2 h5 {
    color: #000000;
    font-size: 16px;
    font-family: sans-serif;
}

.NETWORK-CARD ul {
    padding: 10px 20px;
}

.NETWORK-CARD-2 ul {
    padding: 10px 20px;
}

.NETWORK-CARD ul li {
    font-size: 14.5px;
    line-height: 1.6;
    color: #444;
}

.NETWORK-CARD-2 ul li {
    font-size: 14.5px;
    line-height: 1.6;
    color: #444;
}

.NETWORK-CARD p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    #NETWORKS-CARDS {
        grid-template-columns: 1fr;
    }

    #NETWORKS-CARDS-2 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    #NETWORKS-INFO h2 {
        font-size: 32px;
    }

    .NETWORK-CARD {
        padding: 22px;
    }
}

@media (max-width: 576px) {
    .NETWORK-CARD-2 {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

/* Center and institutions section style */
/* COMMON */
.EXPERTISE-PANEL {
    display: none;
}

.EXPERTISE-PANEL.active {
    display: block;
}

#EXPERTISE-TAB-BUTTONS {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.EXPERTISE-TAB {
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    background: #000f32;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    border: 1px solid #1f4d3a;
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
}

#EXPERTISE-TAB-SYSTEM {
    max-width: 1100px;
    margin: auto;
}

.EXPERTISE-TAB:hover {
    background: #1f3d2be0;
    color: #fff;
}

.EXPERTISE-TAB.active {
    background: #1f3d2be0;
    color: #fff;
}

/* Blogs style */
#BLOG_SECTION {
    padding: 60px 20px 100px;
    position: relative;
    background:
        linear-gradient(183deg, rgb(200 180 255 / 70%), rgb(160 140 230 / 20%)),
        url(../images/aboutbg.webp) center / cover no-repeat;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

#BLOG_CONTAINER {
    width: 100%;
    padding-top: 10px;
    margin: auto;
}

#BLOG_TITLE {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e3d2f;
}

#BLOG_TITLE span {
    color: #0ea75f;
}

#BLOG_SUBTITLE {
    text-align: center;
    color: #444;
    margin-bottom: 50px;
    font-size: 15px;
}

#BLOG_GRID {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cards */
#BLOG_CARD {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

#BLOG_CARD:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: #1f3d2be0;
}

#BLOG_CARD:hover h3,
#BLOG_CARD:hover p {
    color: #ffffff;
}

#BLOG_CARD img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Content */
#BLOG_CONTENT {
    padding: 25px;
}

#BLOG_HEADING {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f4d3a;
}

#BLOG_DESC {
    font-size: 15px;
    color: #6b7d75;
    margin-bottom: 20px;
}

/* Buttons */
#VIEW_MORE {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background-color: rgb(31 77 58);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

#VIEW_MORE3:hover {
    background: linear-gradient(135deg, #256b2a, #43a047);
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
    #BLOG_GRID {
        grid-template-columns: repeat(3, 1fr);
    }

    #BLOG_TITLE {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #BLOG_GRID {
        grid-template-columns: repeat(2, 1fr);
    }

    #BLOG_SECTION {
        padding: 70px 15px 100px;
    }

    #BLOG_TITLE {
        font-size: 28px;
    }

    #BLOG_SUBTITLE {
        font-size: 15px;
    }

    #BLOG_CARD img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    #BLOG_GRID {
        grid-template-columns: 1fr;
    }

    #BLOG_SECTION {
        padding: 70px 15px 100px;
    }

    #BLOG_TITLE {
        font-size: 28px;
    }

    #BLOG_SUBTITLE {
        font-size: 15px;
    }

    #BLOG_CARD img {
        height: auto;
    }
}

/* blog page style  */
#blogs-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url(../images/aboutbg.webp) center / cover no-repeat;

    padding: 120px 0px;
    color: #fff;
}

#BLOGDETAIL_HERO_TITLE {
    font-size: 40px;
    margin-bottom: 10px;
}

#BLOGDETAIL_LATEST_TEXT {
    font-size: 15px;
    color: #444;
}

#BLOGDETAIL_PARAGRAPH {
    color: #444;
}

#BLOGDETAIL_HERO_META {
    font-size: 16px;
}

/* ARTICLE */
#BLOGDETAIL_ARTICLE_SECTION {
    padding: 80px 2% 100px;
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url(../images/aboutbg.webp) center / cover no-repeat;
    color: #fff;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

#BLOGDETAIL_CONTAINER {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    margin: auto;
    max-width: 1100px;
}

#BLOGDETAIL_FEATURE_IMAGE {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 30px;
}

#BLOGDETAIL_ARTICLE_CONTENT {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    padding: 0px 25px;
}

#BLOGDETAIL_SUBTITLE {
    margin-bottom: 10px;
    color: #1f3d2b;
    line-height: 1.1;
}

/* AUTHOR */

#BLOGDETAIL_AUTHOR_BOX {
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

#BLOGDETAIL_AUTHOR_IMAGE {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

#BLOGDETAIL_AUTHOR_NAME {
    margin: 0;
    color: #124c39;
}

#BLOGDETAIL_AUTHOR_DESC {
    margin-top: 8px;
    color: #444;
    font-family: sans-serif;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #BLOGDETAIL_AUTHOR_BOX {
        flex-direction: column;
        text-align: center;
    }

    #BLOGDETAIL_HERO_TITLE {
        font-size: 28px;
    }

    #BLOGDETAIL_ARTICLE_SECTION {
        display: grid;
        grid-template-columns: 1fr;
    }
}

#BLOGDETAIL_RIGHT_SIDEBAR {
    background: #f5f8f6;
    padding: 20px;
    border-radius: 16px;
    height: fit-content;
    max-width: 1100px;
}

#BLOGDETAIL_LATEST_HEADING {
    margin-bottom: 20px;
    color: #1f3d2b;
}

#BLOGDETAIL_LATEST_LIST {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#BLOGDETAIL_LATEST_CARD {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

#BLOGDETAIL_LATEST_IMAGE {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

#BLOGDETAIL_LATEST_CARD:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
}

#BLOGDETAIL_LATEST_CARD:hover p {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    #BLOGDETAIL_LAYOUT {
        grid-template-columns: 1fr;
    }
}

/* Appointement style */

#BOOK_APPOINTMENT_CONTAINER {
    max-width: 1100px;
    width: 100%;
    border-radius: 22px;
    color: #fff;
}

#BOOK_APPOINTMENT_HEADER {
    text-align: center;
    margin-bottom: 30px;
}

#BOOK_APPOINTMENT_TITLE {
    font-size: 36px;
    margin-bottom: 8px;
    color: #124c39;
}

#BOOK_APPOINTMENT_TITLE span {
    color: #0ea75f;
}

#BOOK_APPOINTMENT_SUBTITLE {
    max-width: 720px;
    margin: 10px auto;
    color: #5f7f72;
    font-size: 16px;
}

#BOOK_APPOINTMENT_FORM {
    background: rgb(255 255 255 / 44%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

@media (max-width: 576px) {
    .pub-right,
    #BOOK_APPOINTMENT_FORM {
        padding: 40px 25px; /* Reduced side padding from 40px to 15px */
        margin-left: 0px;
        margin-right: 0px;
    }

    .g-recaptcha {
        transform: scale(0.9); /* Scales the captcha down slightly */
        transform-origin: left top;
    }
}

#BOOK_APPOINTMENT_FORM:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
}

#BOOK_APPOINTMENT_FORM:hover #BOOK_APPOINTMENT_BUTTON {
    background-color: #0ea75f;
}

#BOOK_APPOINTMENT_ROW1,
#BOOK_APPOINTMENT_ROW2 {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

#BOOK_APPOINTMENT_FORM input,
#BOOK_MESSAGE_INPUT {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    outline: none;
}

#BOOK_MESSAGE_INPUT {
    height: 110px;
    margin-bottom: 18px;
}

#BOOK_APPOINTMENT_BUTTON {
    background: #1f4d3a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    #BOOK_APPOINTMENT_ROW1,
    #BOOK_APPOINTMENT_ROW2 {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    #BOOK_APPOINTMENT_ROW1,
    #BOOK_APPOINTMENT_ROW2 {
        flex-direction: column;
    }
}

/* Publication details */
#PUBLICATION_DETAILS_PAGE {
    padding: 80px 2% 100px;
    position: relative;
    background: url(../images/bg2.webp) center / cover no-repeat;
    color: #fff;
}

#PUBLICATION_HEADER {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;
}

#PUBLICATION_TITLE {
    font-size: 34px;
    color: #1f4d3a;
    margin-bottom: 10px;
}

#PUBLICATION_META {
    color: #6b7280;
    font-size: 15px;
}

#PUBLICATION_BODY {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: 1fr;
}

#PUBLICATION_IMAGE_WRAP {
    flex: 1;
}

#PUBLICATION_IMAGE {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

#PUBLICATION_CONTENT {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

#PUBLICATION_CONTENT:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
}

#PUBLICATION_CONTENT:hover h3,
#PUBLICATION_CONTENT:hover p {
    color: #ffffff;
}

#PUBLICATION_CONTENT:hover #PUBLICATION_DOWNLOAD_BTN {
    background-color: #256b2a;
}

#PUBLICATION_SECTION_TITLE {
    color: #1f4d3a;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

#PUBLICATION_DESCRIPTION {
    line-height: 1.7;
    color: #444;
    font-size: 16px;
    font-family: sans-serif;
}

#PUBLICATION_ACTIONS {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

#PUBLICATION_VIEW_BTN,
#PUBLICATION_DOWNLOAD_BTN {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

#PUBLICATION_DOWNLOAD_BTN {
    background: #1f4d3a;
    color: #fff;
}

/* responsive */
@media (max-width: 900px) {
    #PUBLICATION_BODY {
        flex-direction: column;
    }

    #PUBLICATION_TITLE {
        font-size: 26px;
    }
}

/* Events style */
#events-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url("../images/bg3.webp") center/cover no-repeat;
    padding: 120px 0px;
    color: #fff;
}

.event-section {
    padding: 80px 2%;
    position: relative;
    background: url(../images/bg2.webp) center / cover no-repeat;
}

.events-container {
    margin: 0 auto;
}

/* Main Content */
.events-page-title {
    font-size: 2.2rem;
    color: #1f4d3a;
    margin-bottom: 10px;
    text-align: center;
}

.events-page-title span {
    color: #0ea75f;
}

.events-page-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-section-title {
    font-size: 1.8rem;
    color: #1f4d3a;
    margin: 50px 0 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #a5a5a5;
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 10px;
}

.events-section-title i {
    color: #1f3d2b;
}

.event-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background-color: rgb(31 77 58);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* Upcoming Events Section */
.upcoming-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.upcoming-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.upcoming-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
}

.upcoming-card:hover h4,
.upcoming-card:hover span,
.upcoming-card:hover p {
    color: #ffffff;
}

.upcoming-card:hover .event-btn {
    background: #0ea75f;
}

.event-header {
    background-color: #1f4d3a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    padding: 25px;
}

.upcoming-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #124c39;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #444;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-description {
    color: #444;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.event-status {
    display: inline-block;
    background-color: #fff3cd;
    color: #856404;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Keynote Section */
.keynote-section {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.keynote-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
    background: #1f3d2be0;
}

.keynote-section:hover h3,
.keynote-section:hover p {
    color: #ffffff;
}

.keynote-section:hover .keynote-icon {
    background-color: #0ea75f;
}

.keynote-section:hover .keynote-item p {
    color: #000000;
}

.keynote-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.keynote-icon {
    background-color: #1f4d3a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.keynote-title {
    font-size: 1.8rem;
    color: #1f4d3a;
}

.keynote-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.keynote-item {
    padding: 15px;
    border-left: 3px solid #1f3d2b;
    background-color: #f8f9fa;
}

/* past events */

#PAST_EVENTS_ALT_SECTION {
    padding: 40px 20px;
    background: rgb(255 255 255 / 44%);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    margin-bottom: 50px;
}

#PAST_EVENTS_ALT_HEADER {
    text-align: center;
    margin-bottom: 60px;
}

#PAST_EVENTS_ALT_HEADER h3 {
    font-size: 1.8rem;
    color: #1f4d3a;
    padding-bottom: 10px;
    border-bottom: 2px solid #a5a5a5;
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 10px;
}

#PAST_EVENTS_ALT_HEADER p {
    color: #444;
}

#PAST_EVENTS_ALT_WRAPPER {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.PAST_EVENT_ALT_ITEM {
    display: flex;
    gap: 40px;
}

.PAST_EVENT_ALT_ITEM.reverse {
    flex-direction: row-reverse;
}

.PAST_EVENT_ALT_IMAGE {
    position: relative;
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.PAST_EVENT_ALT_IMAGE img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.PAST_EVENT_ALT_YEAR {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #1f4d3a;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
}

.PAST_EVENT_ALT_CONTENT {
    flex: 1;
}

.PAST_EVENT_ALT_CONTENT h3 {
    color: #1f4d3a;
    font-size: 26px;
    margin-bottom: 10px;
}

.PAST_EVENT_ALT_META {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.PAST_EVENT_ALT_CONTENT p {
    color: #444;
    line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .PAST_EVENT_ALT_ITEM,
    .PAST_EVENT_ALT_ITEM.reverse {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    #PAST_EVENTS_ALT_HEADER h2 {
        font-size: 26px;
    }

    .PAST_EVENT_ALT_CONTENT h3 {
        font-size: 20px;
    }

    .PAST_EVENT_ALT_META {
        flex-direction: column;
        gap: 6px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .upcoming-events {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .keynote-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .upcoming-events {
        grid-template-columns: 1fr;
    }

    .event-actions {
        flex-direction: column;
    }
}

/* Latest update section  style */
.update-section {
    padding: 60px 2% 100px;
    position: relative;
    background:
        linear-gradient(183deg, rgb(200 180 255 / 70%), rgb(160 140 230 / 20%)),
        url(../images/bg2.webp) center / cover no-repeat;
}

.update-container {
    margin: auto;
}

.row {
    display: flex;
    gap: 20px;
}

.col {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.update-title {
    text-align: center;
    margin-bottom: 20px;
    color: #1f4d3a;
    font-size: 22px;
}

.slider {
    height: 320px;
    overflow: hidden;
    cursor: grab;
    position: relative;
}

.track {
    display: flex;
    flex-direction: column;
}

/* CARD */

.Update-Card {
    background: #f1f8f4;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.Update-Card a {
    text-decoration: none;
}

/* horizontal layout */

.horizontal-card {
    display: flex;
    gap: 12px;
    padding: 10px;
}

.horizontal-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.update-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.update-heading {
    font-weight: bold;
    color: #1f4d3a;
    font-size: 16px;
    text-align: start;
}

.update-sub {
    font-size: 15px;
    color: gray;
    text-align: start;
}

/* gallery */

.gallery-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.gallery-card iframe {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.gallery-text {
    padding: 10px;
}

@media (max-width: 900px) {
    .row {
        flex-direction: column;
    }
}

/* Press Media */
/* SECTION HEADER */
#latest-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url(../images/bg.webp) center / cover no-repeat;

    padding: 120px 0px;
    color: #fff;
}

.latest-section {
    padding: 60px 2% 100px;
    background: url(../images/aboutbg.webp) center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.latest-section-header h1 {
    font-size: 36px;
    color: #0c6b4f;
    font-weight: 700;
}

.latest-section-header p {
    margin-top: 10px;
    color: #555;
}

/* FEATURED */
.featured-update {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.featured-image {
    position: relative;
    flex: 1;
}

.featured-image img {
    width: 100%;
    border-radius: 12px;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0c6b4f;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 30px;
}

.badge.small {
    position: absolute;
    top: 15px;
    left: 15px;
}

.featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #084c3a;
}

.date {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.read-btn {
    margin-top: 20px;
    display: inline-block;
    background: #0c6b4f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.read-btn:hover {
    background: #084c3a;
}

/* GRID */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.latest-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.update-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.update-card:hover {
    transform: translateY(-5px);
}

.update-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .featured-update {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: 1fr;
    }

    .section-header h1 {
        font-size: 28px;
    }
}

/* Gallery style */
#gallery-hero {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url("../images/bg.webp") center/cover no-repeat;
    padding: 120px 0px;
    color: #fff;
}

#MEDIA_GALLERY_SECTION {
    padding: 80px 2% 100px;
    background: url(../images/bg2.webp) center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

#MEDIA_GALLERY_HEADER {
    text-align: center;
    margin-bottom: 35px;
}

#MEDIA_GALLERY_TITLE {
    font-size: 34px;
    color: #1f4d3a;
}

#MEDIA_GALLERY_TITLE span {
    color: #0ea75f;
}

#MEDIA_GALLERY_SUBTITLE {
    color: #444;
}

/* FILTERS */
#MEDIA_GALLERY_FILTERS {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.MEDIA_FILTER_BTN {
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    background: #000f32;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
    border: 1px solid #1f4d3a;
    box-shadow: 0 30px 60px rgb(0 0 0 / 60%);
}

.MEDIA_FILTER_BTN.active,
.MEDIA_FILTER_BTN:hover {
    background: #1f3d2be0;
    color: #fff;
}

/* GRID */
#MEDIA_GALLERY_GRID {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.MEDIA_GALLERY_ITEM {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    position: relative;
}

.MEDIA_GALLERY_ITEM img,
.MEDIA_GALLERY_ITEM iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    object-fit: cover;
    cursor: pointer;
}

/* overlay text */
.MEDIA_OVERLAY_TEXT {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.45s ease;
    pointer-events: none;
}

/* hover show */
.MEDIA_GALLERY_ITEM:hover .MEDIA_OVERLAY_TEXT {
    opacity: 1;
}

/* text style */
.MEDIA_OVERLAY_TEXT h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: 0.4s;
}

.MEDIA_OVERLAY_TEXT p {
    color: #d7efe4;
    font-size: 14px;
    transform: translateY(20px);
    transition: 0.4s 0.1s;
}

.MEDIA_GALLERY_ITEM:hover .MEDIA_OVERLAY_TEXT h4,
.MEDIA_GALLERY_ITEM:hover .MEDIA_OVERLAY_TEXT p {
    transform: translateY(0);
}

/* zoom only for images */
.MEDIA_GALLERY_ITEM img {
    transition: 0.6s;
}

.MEDIA_GALLERY_ITEM:hover img {
    transform: scale(1.08);
}

/* responsive */
@media (max-width: 900px) {
    #MEDIA_GALLERY_GRID {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #MEDIA_GALLERY_GRID {
        grid-template-columns: 1fr;
    }
}

.adress-fixed {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
}

/* make address wrap under icon on narrower screens */
@media (max-width: 768px) {
    .adress-fixed {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .adress-fixed {
        font-size: 13px;
        gap: 3px;
    }
}

/* gallery popup */
/* FIX CLICK ISSUE (VERY IMPORTANT) */
.MEDIA_GALLERY_ITEM iframe {
    pointer-events: none;
}

/* POPUP */
#GALLERY_POPUP {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#GALLERY_POPUP.active {
    display: flex;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

/* MEDIA */
#POPUP_MEDIA_CONTAINER img,
#POPUP_MEDIA_CONTAINER iframe {
    width: 100%;
    max-height: 100vh;
    border-radius: 10px;
}

/* CLOSE */
#POPUP_CLOSE {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* NAV */
.Nav-Btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
}

.prev {
    left: -60px;
}
.next {
    right: -60px;
}

@media (max-width: 768px) {
    .prev {
        left: 10px;
    }
    .next {
        right: 10px;
    }
}

/* expetise popup */
#MEDIA-POPUP {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#MEDIA-POPUP.active {
    display: flex;
}

#MEDIA-POPUP img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
    transition: 0.3s ease;
}

/* close */
.close-popup {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

/* nav buttons */
.Nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 28px;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
}

.Prev {
    left: 20px;
}
.Next {
    right: 20px;
}

.breakhide {
    display: none;
}
@media (max-width: 576px) {
    .breakhide {
        display: block;
    }
}
