/* =============================================
   REDESIGNED FEATURE CARDS
   ============================================= */

/* Card Container */
.feature-card-wrapper {
    height: 320px;
    margin-bottom: 30px;
}

.feature-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    overflow: hidden;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Card Icon */
.card-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    z-index: 2;
}

.card-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.feature-card:hover .card-icon i {
    transform: scale(1.2);
}

.feature-card:hover .icon-bg {
    transform: rotate(0deg) scale(1.1);
}

/* Card Content */
.card-content {
    flex: 1;
    width: 100%;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Card Footer */
.card-footer {
    margin-top: 20px;
    width: 100%;
}

.hint-text {
    font-size: 12px;
    color: #888;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hint-text:before {
    content: "→";
    font-size: 14px;
    animation: slideHint 2s infinite;
}

/* Card Corner */
.card-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.corner-number {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.feature-card:hover .card-corner {
    opacity: 0.5;
}

/* Explore Overlay */
.explore-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-dark));
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.feature-card:hover .explore-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
    z-index: 2;
}

.overlay-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.overlay-content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* Explore Button */
.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.explore-btn:hover {
    background: white;
    color: var(--card-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.explore-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(5px);
}

/* Overlay Particles */
.overlay-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.overlay-particles span {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: floatParticle 6s linear infinite;
}

.overlay-particles span:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.overlay-particles span:nth-child(2) {
    top: 65%;
    left: 85%;
    animation-delay: 2s;
}

.overlay-particles span:nth-child(3) {
    top: 85%;
    left: 45%;
    animation-delay: 4s;
}

.feature-card:hover .overlay-particles span {
    opacity: 0.3;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover .card-glow {
    opacity: 0.4;
    animation: glowPulse 2s infinite;
}

/* Individual Card Colors */
.manuscript-card {
    --card-color: #488a0b;
    --card-color-dark: #f57c00;
    --glow-color: rgba(139, 69, 19, 0.3);
}

.manuscript-card .icon-bg {
    background: linear-gradient(135deg, #86aa05, #0b4d16);
}

.research-card {
    --card-color: #488a0b;
    --card-color-dark: #f57c00;
    --glow-color: rgba(13, 71, 161, 0.3);
}

.research-card .icon-bg {
    background: linear-gradient(135deg, #ccec16, #30ec29);
}

.hospital-card {
    --card-color: #488a0b;
    --card-color-dark: #f57c00;
    --glow-color: rgba(198, 40, 40, 0.3);
}

.hospital-card .icon-bg {
    background: linear-gradient(135deg, #28c628, #0e8f2e);
}

.recognition-card {
    --card-color: #488a0b;
    --card-color-dark: #f57c00;
    --glow-color: rgba(255, 152, 0, 0.3);
}

.recognition-card .icon-bg {
    background: linear-gradient(135deg, #75ddeb, #47cc59);
}

/* Animations */
@keyframes slideHint {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-80px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .feature-card-wrapper {
        height: 300px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .card-icon i {
        font-size: 28px;
    }

    .card-content h3 {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .feature-card-wrapper {
        height: 280px;
        margin-bottom: 25px;
    }

    .feature-card {
        padding: 22px 18px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .card-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .card-content p {
        font-size: 13px;
    }

    .overlay-content h4 {
        font-size: 16px;
    }

    .overlay-content p {
        font-size: 13px;
    }

    .explore-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .feature-card-wrapper {
        height: 260px;
        margin-bottom: 20px;
    }

    .feature-cards-row {
        margin: 0 -10px;
    }

    .col-sm-6 {
        padding: 0 10px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .card-icon i {
        font-size: 26px;
    }

    .card-content h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .card-content p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .overlay-content p {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .feature-card-wrapper {
        height: 240px;
        max-width: 320px;
        margin: 0 auto 20px;
    }

    .feature-card {
        padding: 18px 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .card-icon i {
        font-size: 24px;
    }

    .card-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    .overlay-content h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .overlay-content p {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .explore-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .overlay-particles span {
        font-size: 20px;
    }
}

/* Ensure consistent alignment */
.row.feature-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.feature-card-wrapper {
    display: flex;
    flex-direction: column;
}

/* Section Spacing */
.sec_padding_100 {
    padding: 100px 0;
}

/* Fix for mobile hover */
@media (hover: none) and (pointer: coarse) {
    .feature-card {
        transform: none !important;
    }

    .explore-overlay {
        display: none;
    }

    .explore-btn {
        display: inline-flex !important;
        margin-top: 15px;
        background: var(--card-color);
        color: white;
        padding: 10px 25px;
    }
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .feature-card {
        cursor: default;
    }
}

/* =============================================
   VISION & MISSION ANIMATIONS
   ============================================= */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.15);
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 768px) {

    /* Vision & Mission Responsive */
    .vision-card,
    .mission-card {
        padding: 30px 20px;
    }
}

/* =============================================
   NEWSLETTER FORM FIXED STYLES
   ============================================= */
.newsletter_section_home_one {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    overflow: hidden;
}

.newsletter_innar_box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter_innar_box h3 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.newsletter_form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter_form .form-group {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter_form input[type="email"] {
    flex: 1;
    height: 56px;
    padding: 15px 25px;
    border: none;
    /* border-radius: 50px 0 0 50px; */
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.newsletter_form input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.button-style-two {
    height: 56px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #1a5c1e, #2e7d32);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.button-style-two:hover {
    background: linear-gradient(135deg, #2e7d32, #1a5c1e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-style-two i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.button-style-two:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter_form .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter_form input[type="email"] {
        width: 100%;
        border-radius: 50px;
    }

    .button-style-two {
        width: 100%;
        border-radius: 50px;
        border-left: none;
    }

    .newsletter_innar_box h3 {
        font-size: 24px;
    }
}

/* Keyframe Animations */
@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(0, 119, 204, 0.3);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(0, 119, 204, 0.5);
    }
}

@keyframes rotateRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateRingReverse {
    0% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

@keyframes borderSlide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes btnGlowSlide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Research section styles */

/* =============================================
   HERO SECTION - Redesigned
   ============================================= */
.research-hero-section {
    /* min-height: 85vh; */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1929 0%, #1a2b3c 100%);
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Animated Background Pattern */
.animated-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(46, 125, 50, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite alternate;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, -50px) scale(1.1);
    }
}

/* Hero Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.4;
    filter: brightness(0.7) contrast(1.2);
    animation: gentleZoom 30s ease-in-out infinite alternate;
}

@keyframes gentleZoom {
    0% {
        transform: scale(1.05) rotate(0.5deg);
    }

    100% {
        transform: scale(1.1) rotate(-0.5deg);
    }
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 25, 41, 0.9) 0%,
            rgba(26, 43, 60, 0.8) 50%,
            rgba(46, 125, 50, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Particle Effect */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #4caf50 50%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, #2e7d32 50%, transparent 100%),
        radial-gradient(2px 2px at 60% 20%, #8bc34a 50%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, #66bb6a 50%, transparent 100%),
        radial-gradient(2px 2px at 30% 80%, #4caf50 50%, transparent 100%);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-100px) translateX(50px);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 120px 0 80px;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
    margin-bottom: 40px;
    opacity: 0;
    animation: slideDown 0.8s ease-out 0.2s forwards;
}

.breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.breadcrumb-link:hover {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.breadcrumb-icon {
    font-size: 16px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.breadcrumb-current {
    color: #4caf50;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Hero Title */
.hero-title-container {
    margin-bottom: 60px;
    opacity: 0;
    animation: slideDown 0.8s ease-out 0.4s forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 1s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.6s;
}

.title-line:nth-child(2) {
    animation-delay: 0.8s;
}

.title-line.highlight {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.3), transparent);
    border-radius: 4px;
    z-index: -1;
    opacity: 0;
    animation: highlightUnderline 1s ease-out 1.4s forwards;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightUnderline {
    to {
        opacity: 1;
        transform: scaleX(1);
    }

    from {
        opacity: 0;
        transform: scaleX(0);
    }
}

/* Hero Subtitle */
.hero-subtitle-wrapper {
    margin: 30px 0;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.subtitle-word {
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.6s ease-out forwards;
}

.subtitle-divider {
    color: #4caf50;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 500px;
    opacity: 0;
    animation: slideDown 0.8s ease-out 1.2s forwards;
}

.divider-line {
    flex: 1;
    height: 2px;
    position: relative;
    overflow: hidden;
}

.divider-line.left {
    background: linear-gradient(90deg, transparent, #4caf50);
    animation: lineDrawLeft 1s ease-out 1.4s forwards;
    transform: scaleX(0);
    transform-origin: right;
}

.divider-line.right {
    background: linear-gradient(90deg, #4caf50, transparent);
    animation: lineDrawRight 1s ease-out 1.4s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes lineDrawLeft {
    to {
        transform: scaleX(1);
    }
}

@keyframes lineDrawRight {
    to {
        transform: scaleX(1);
    }
}

.divider-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
    font-size: 20px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.6s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #4caf50, transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #4caf50;
    border-radius: 1px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(60px);
        opacity: 0;
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    font-size: 32px;
    opacity: 0.2;
    animation: shapeFloat 20s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
}

.shape-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    top: 25%;
    right: 15%;
    animation-delay: 4s;
}

.shape-3 {
    bottom: 35%;
    left: 20%;
    animation-delay: 8s;
}

.shape-4 {
    bottom: 25%;
    right: 20%;
    animation-delay: 12s;
}

.shape-5 {
    top: 65%;
    left: 85%;
    animation-delay: 16s;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.2;
    }

    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.2);
        opacity: 0.4;
    }

    50% {
        transform: translateY(0) rotate(180deg) scale(1);
        opacity: 0.2;
    }

    75% {
        transform: translateY(40px) rotate(270deg) scale(0.8);
        opacity: 0.1;
    }
}

/* =============================================
   META SEARCH SECTION - Redesigned
   ============================================= */
.meta-search-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.meta-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.section-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-main {
    display: inline-block;
    opacity: 0;
    animation: slideUpWord 0.6s ease-out forwards;
}

.title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 10px;
    opacity: 0;
    animation: slideUpWord 0.6s ease-out 0.2s forwards;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

/* Search Interface */
.search-interface {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(46, 125, 50, 0.1);
    margin-bottom: 60px;
    transform: translateY(30px);
    opacity: 0;
    animation: cardReveal 0.8s ease-out 0.6s forwards;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Bar */
.search-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: statReveal 0.6s ease-out forwards;
}

.stats-item:nth-child(1) {
    animation-delay: 0.8s;
}

.stats-item:nth-child(2) {
    animation-delay: 1s;
}

.stats-item:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes statReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-icon {
    font-size: 24px;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stats-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b3c;
}

.stats-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Search Form */
.search-form-container {
    margin-bottom: 30px;
}

.meta-search-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Search Input */
.search-input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #4caf50;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 60px;
    font-size: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: white;
    color: #1a2b3c;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow:
        0 4px 20px rgba(76, 175, 80, 0.15),
        0 0 0 4px rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.input-suggestions {
    position: absolute;
    bottom: -30px;
    left: 0;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.suggestion {
    color: #4caf50;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 4px;
}

.suggestion:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

/* Filters Row */
.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a2b3c;
}

.label-icon {
    color: #4caf50;
    font-size: 16px;
}

.select-wrapper {
    position: relative;
}

.filter-select {
    width: 100%;
    padding: 15px 45px 15px 20px;
    font-size: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    background: white;
    color: #1a2b3c;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.filter-select:focus+.select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #4caf50;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.filter-tag {
    padding: 6px 12px;
    font-size: 12px;
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.filter-tag:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
    border-color: rgba(76, 175, 80, 0.3);
}

/* Action Buttons */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.search-button {
    position: relative;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.search-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.search-button:active {
    transform: translateY(-1px);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonShine {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

.advanced-button {
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    color: #666;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.advanced-button:hover {
    color: #4caf50;
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.05);
    transform: translateY(-2px);
}

/* Form Footer */
.form-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    color: #666;
}

.note-icon {
    color: #4caf50;
    font-size: 16px;
}

.note-text {
    opacity: 0.8;
}

/* Search Tips */
.search-tips {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    margin-top: 30px;
}

.tips-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1a2b3c;
    margin-bottom: 15px;
}

.tips-title i {
    color: #4caf50;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.tip-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* AI Features */
.ai-features {
    margin-top: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: featureReveal 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 1.4s;
}

.feature-card:nth-child(2) {
    animation-delay: 1.6s;
}

.feature-card:nth-child(3) {
    animation-delay: 1.8s;
}

@keyframes featureReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(76, 175, 80, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(76, 175, 80, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #2e7d32;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a2b3c;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* =============================================
   ANIMATION UTILITIES
   ============================================= */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpWord {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1200px) {
    .filters-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .research-hero-section {
        min-height: 70vh;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-divider {
        gap: 15px;
    }

    .search-stats {
        flex-direction: column;
        gap: 20px;
    }

    .filters-row {
        grid-template-columns: 1fr;
    }

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

    .search-button,
    .advanced-button {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .search-interface {
        padding: 30px 20px;
    }

    .search-input {
        padding: 16px 50px 16px 50px;
    }

    .input-suggestions {
        position: static;
        margin-top: 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .search-button {
        padding: 16px 30px;
    }
}

/* Loading Animation for Form */
@keyframes loadingShimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: loadingShimmer 1.5s infinite;
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .floating-shapes,
    .scroll-indicator,
    .hero-particles,
    .animated-bg-pattern,
    .button-shine {
        display: none !important;
    }

    .hero-bg-image {
        opacity: 0.1;
    }

    .search-button {
        box-shadow: none !important;
    }
}

/* divisions styles */

/* Home Page Specific Styles */
.feature-card {
    background: #c8e6c9 !important;
    /* Medium green background */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dna-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    /* Slightly increased opacity for better visibility on green */
    pointer-events: none;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../../images/shape/dna.svg');
    background-repeat: repeat-y;
    background-size: 30% auto;
    /* Reduced size */
    background-position: center;
    animation: moveDNA 20s linear infinite;
}

@keyframes moveDNA {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100%;
    }
}

/* Officials section particles and hover styles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.15);
    z-index: 0;
}

.p1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: float_particle 15s infinite linear;
}

.p2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation: float_particle 20s infinite linear reverse;
}

.p3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 20%;
    animation: float_particle 12s infinite linear;
}

.p4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 10%;
    animation: float_particle 18s infinite linear reverse;
}

.p5 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    animation: float_particle 25s infinite linear;
}

@keyframes float_particle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(0, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.official_block:hover {
    transform: translateY(-10px);
}

.official_block:hover .image-glow {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
}

.image-glow {
    transition: all 0.5s ease;
}

/* Palm Leaf Manuscript Card Specific Styles */
.manuscript-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.manuscript-card .card-content {
    position: relative;
    z-index: 2;
}

.manuscript-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(139, 107, 70, 0.7) 0%,
            rgba(101, 77, 46, 0.8) 50%,
            rgba(160, 120, 80, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.manuscript-card:hover::before {
    opacity: 0.8;
}

.manuscript-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Card hover effects */
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
}

.vision-card:hover .image-overlay {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

/* Make sure text is readable over background */
.vision-card h4,
.vision-card blockquote,
.vision-card>div>div {
    position: relative;
    z-index: 1;
}

.mission-card h4,
.mission-card p,
.mission-card .vm-icon {
    position: relative;
    z-index: 2;
}

/* =============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================= */

/* Governance Section Styles */
.governance-section {
    position: relative;
    background-color: #f9fbf9;
    padding-bottom: 100px;
}

.governance-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.governance-text-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #4caf50;
    position: relative;
    z-index: 1;
}

.animate-float {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.molecular-bg {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234caf50' fill-opacity='0.15' fill-rule='evenodd'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/svg%3E");
    animation: moveBackground 60s linear infinite;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}

.governance-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.governance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4caf50, #81c784);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: rgba(76, 175, 80, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #2e7d32;
}

.governance-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.leadership-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leadership-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #2c3e50;
}

.leadership-list li:last-child {
    border-bottom: none;
}

.leadership-list li::before {
    content: '•';
    color: #4caf50;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== DNA Structure Styles ===== */
.dna-structures {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.dna-container {
    position: absolute;
    width: 200px;
    height: 400px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: dnaFloat 20s ease-in-out infinite;
}

.dna-right {
    left: auto;
    right: 10%;
    animation: dnaFloatReverse 25s ease-in-out infinite;
}

.dna-strand {
    position: absolute;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(76, 175, 80, 0.1) 0%,
            rgba(76, 175, 80, 0.3) 20%,
            rgba(76, 175, 80, 0.5) 50%,
            rgba(76, 175, 80, 0.3) 80%,
            rgba(76, 175, 80, 0.1) 100%);
    border-radius: 3px;
    animation: strandTwist 8s linear infinite;
}

.dna-1 {
    left: 0;
    transform: rotate(0deg);
}

.dna-2 {
    left: 50px;
    transform: rotate(180deg);
    animation-delay: -4s;
}

.dna-3 {
    left: 0;
    transform: rotate(90deg);
    animation-duration: 10s;
}

.dna-4 {
    left: 50px;
    transform: rotate(270deg);
    animation-duration: 10s;
    animation-delay: -5s;
}

.nucleotide {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4caf50, #81c784);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
    left: -7px;
    animation: nucleotideGlow 3s ease-in-out infinite;
}

.dna-1 .nucleotide:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.dna-1 .nucleotide:nth-child(2) {
    top: 30%;
    animation-delay: 0.5s;
}

.dna-1 .nucleotide:nth-child(3) {
    top: 50%;
    animation-delay: 1s;
}

.dna-1 .nucleotide:nth-child(4) {
    top: 70%;
    animation-delay: 1.5s;
}

.dna-1 .nucleotide:nth-child(5) {
    top: 90%;
    animation-delay: 2s;
}

.dna-1 .nucleotide:nth-child(6) {
    top: 110%;
    animation-delay: 2.5s;
}

.dna-2 .nucleotide:nth-child(1) {
    top: 10%;
    animation-delay: 0.25s;
}

.dna-2 .nucleotide:nth-child(2) {
    top: 30%;
    animation-delay: 0.75s;
}

.dna-2 .nucleotide:nth-child(3) {
    top: 50%;
    animation-delay: 1.25s;
}

.dna-2 .nucleotide:nth-child(4) {
    top: 70%;
    animation-delay: 1.75s;
}

.dna-2 .nucleotide:nth-child(5) {
    top: 90%;
    animation-delay: 2.25s;
}

.dna-2 .nucleotide:nth-child(6) {
    top: 110%;
    animation-delay: 2.75s;
}

.dna-3 .nucleotide:nth-child(1) {
    top: 10%;
    animation-delay: 0.1s;
}

.dna-3 .nucleotide:nth-child(2) {
    top: 30%;
    animation-delay: 0.6s;
}

.dna-3 .nucleotide:nth-child(3) {
    top: 50%;
    animation-delay: 1.1s;
}

.dna-3 .nucleotide:nth-child(4) {
    top: 70%;
    animation-delay: 1.6s;
}

.dna-3 .nucleotide:nth-child(5) {
    top: 90%;
    animation-delay: 2.1s;
}

.dna-3 .nucleotide:nth-child(6) {
    top: 110%;
    animation-delay: 2.6s;
}

.dna-4 .nucleotide:nth-child(1) {
    top: 10%;
    animation-delay: 0.3s;
}

.dna-4 .nucleotide:nth-child(2) {
    top: 30%;
    animation-delay: 0.8s;
}

.dna-4 .nucleotide:nth-child(3) {
    top: 50%;
    animation-delay: 1.3s;
}

.dna-4 .nucleotide:nth-child(4) {
    top: 70%;
    animation-delay: 1.8s;
}

.dna-4 .nucleotide:nth-child(5) {
    top: 90%;
    animation-delay: 2.3s;
}

.dna-4 .nucleotide:nth-child(6) {
    top: 110%;
    animation-delay: 2.8s;
}

/* DNA Animations */
@keyframes dnaFloat {

    0%,
    100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-45%) translateX(10px) rotate(5deg);
    }

    50% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }

    75% {
        transform: translateY(-55%) translateX(-10px) rotate(-5deg);
    }
}

@keyframes dnaFloatReverse {

    0%,
    100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-55%) translateX(-10px) rotate(-5deg);
    }

    50% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }

    75% {
        transform: translateY(-45%) translateX(10px) rotate(5deg);
    }
}

@keyframes strandTwist {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes nucleotideGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(76, 175, 80, 0.8);
        transform: scale(1.2);
    }
}

/* Responsive DNA */
@media (max-width: 768px) {
    .dna-container {
        width: 150px;
        height: 300px;
        left: 5%;
    }

    .dna-right {
        right: 5%;
    }

    .dna-strand {
        width: 4px;
    }

    .nucleotide {
        width: 15px;
        height: 15px;
        left: -5.5px;
    }
}

@media (max-width: 576px) {
    .dna-container {
        width: 100px;
        height: 200px;
        left: 2%;
    }

    .dna-right {
        right: 2%;
    }

    .dna-strand {
        width: 3px;
    }

    .nucleotide {
        width: 12px;
        height: 12px;
        left: -4.5px;
    }
}

/* ===== Vision & Mandate Section ===== */
.vision-mandate-section {
    padding: 80px 0;
    position: relative;
}

.vision-mandate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent);
}

.vision-mandate-content {
    margin-top: 40px;
}

/* Mandate Card */
.mandate-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.mandate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.mandate-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.mandate-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(129, 199, 132, 0.08));
    border-radius: 20px;
    animation: iconBgPulse 3s ease-in-out infinite;
}

.mandate-icon {
    position: relative;
    font-size: 40px;
    z-index: 2;
    display: block;
    margin: 20px auto;
    animation: iconFloat 3s ease-in-out infinite;
}

.mandate-content {
    position: relative;
    z-index: 2;
}

.mandate-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
}

.mandate-description {
    color: #34495e;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.mandate-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mandate-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
}

.feature-dot {
    color: #4caf50;
    font-size: 24px;
    font-weight: bold;
}

.mandate-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mandate-card:hover .mandate-glow {
    opacity: 1;
}

/* Aim Section */

/* ===== Bento Grid Styles ===== */
.way-forward-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px) auto auto;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background: #f8f9fa;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    /* padding-bottom: 30px; */
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.bento-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Grid Assignments */
.foundation {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    color: #1b5e20;
}

.hospital {
    grid-column: span 2;
    background: #e3f2fd;
    color: #0d47a1;
}

.manuscript {
    grid-column: span 1;
    background: #fff8e1;
    color: #ff6f00;
}

.nursery {
    grid-column: span 1;
    background: #f1f8e9;
    color: #33691e;
}

.network {
    grid-column: span 4;
    background: #f3e5f5;
    color: #4a148c;
    min-height: 150px;
}

.vision {
    grid-column: span 4;
    background: #202C38;
    /* Branding Dark */
    color: #fff;
    text-align: center;
}

.vision .bento-content {
    padding-bottom: 60px;
    /* Increased from default 30px */
}

/* Specific styling for items */
.foundation .bento-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.foundation h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: inherit;
}

.foundation p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.bento-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: inherit;
}

.bento-item p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.85;
    color: inherit;
    margin: 0;
}

.bento-icon-small {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Network Flex Layout */
.flex-row-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.bento-visual-icons {
    font-size: 40px;
    display: flex;
    gap: 20px;
    opacity: 0.8;
}

/* Vision styling */
.vision .quote-icon {
    font-size: 40px;
    color: #4caf50;
    margin-bottom: 10px;
    opacity: 0.6;
}

.vision-text {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.bento-decoration-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-rows: auto;
    }

    .foundation {
        grid-column: span 4;
        order: 1;
    }

    .hospital {
        grid-column: span 4;
        order: 2;
    }

    .manuscript {
        grid-column: span 2;
        order: 3;
    }

    .nursery {
        grid-column: span 2;
        order: 4;
    }

    .network {
        grid-column: span 4;
        order: 5;
    }

    .vision {
        order: 6;
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .manuscript,
    .nursery {
        grid-column: span 1;
    }

    .flex-row-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}



.aim-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 30px;
    padding-left: 20px;
    position: relative;
}

.aim-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(to bottom, #4caf50, #81c784);
    border-radius: 3px;
}

.aim-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aim-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aim-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.aim-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(76, 175, 80, 0.1);
    line-height: 1;
    min-width: 40px;
    transition: all 0.3s ease;
}

.aim-item:hover .aim-number {
    color: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
}

.aim-content {
    flex: 1;
}

.aim-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.aim-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.aim-icon {
    font-size: 32px;
    opacity: 0.3;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.aim-item:hover .aim-icon {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Responsive Design for Vision & Mandate */
@media (max-width: 992px) {
    .vision-mandate-section {
        padding: 60px 0;
    }

    .mandate-card {
        padding: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mandate-card {
        padding: 25px 20px;
    }

    .mandate-title,
    .aim-title {
        font-size: 1.5rem;
    }

    .aim-item {
        padding: 20px;
    }

    .aim-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .mandate-icon-container {
        width: 70px;
        height: 70px;
    }

    .mandate-icon {
        font-size: 32px;
        margin: 19px auto;
    }

    .aim-item {
        flex-direction: column;
        gap: 15px;
    }

    .aim-number {
        font-size: 1.8rem;
    }
}

/* ===== Redesigned About Section ===== */
.about-content-redesigned {
    background: linear-gradient(135deg, #ffffff 0%, #f9fcf9 100%);
    position: relative;
    overflow: hidden;
}

.about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header Redesigned */
.section-header-redesigned {
    margin-bottom: 50px;
    text-align: center;
}

.section-header-redesigned.left-align {
    text-align: left;
}

.section-icon-redesigned {
    font-size: 56px;
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.section-title-redesigned {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.highlight-text-redesigned {
    color: #2e7d32;
    position: relative;
}

.highlight-text-redesigned::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #81c784);
    opacity: 0.3;
}

.section-divider-redesigned {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #81c784);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.section-divider-redesigned.left-align {
    margin: 0 0 30px;
}

/* Genesis Section */
.genesis-section {
    padding: 60px 0;
    position: relative;
}

.genesis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent);
}

.genesis-content-redesigned {
    margin-top: 40px;
}

.genesis-text {
    color: #34495e;
    line-height: 1.8;
    font-size: 1.1rem;
}

.genesis-text p {
    margin-bottom: 25px;
    text-align: justify;
}

.genesis-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.visual-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(129, 199, 132, 0.05));
    border-radius: 15px;
    flex-shrink: 0;
}

.visual-content h4 {
    font-size: 1.1rem;
    color: #2e7d32;
    margin-bottom: 5px;
    font-weight: 600;
}

.visual-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.visual-desc {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent);
}

.intro-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.intro-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.intro-image-wrapper:hover .intro-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.intro-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #2e7d32;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.2s;
}

.intro-image-wrapper:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

.caption-icon {
    font-size: 18px;
}

.intro-content {
    padding-left: 40px;
}

.intro-text {
    color: #34495e;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.intro-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.feature-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(129, 199, 132, 0.05));
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title-redesigned {
        font-size: 2.5rem;
    }

    .intro-content {
        padding-left: 30px;
    }
}

@media (max-width: 992px) {
    .section-title-redesigned {
        font-size: 2.2rem;
    }

    .intro-image {
        height: 400px;
    }

    .intro-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .genesis-text p {
        text-align: left;
    }

    .intro-text p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section-title-redesigned {
        font-size: 2rem;
    }

    .genesis-section,
    .intro-section {
        padding: 40px 0;
    }

    .visual-card {
        padding: 20px;
    }

    .visual-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 12px 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .section-title-redesigned {
        font-size: 1.8rem;
    }

    .section-icon-redesigned {
        font-size: 48px;
    }

    .genesis-visual {
        margin-top: 30px;
    }

    .intro-image {
        height: 300px;
    }

    .genesis-text,
    .intro-text {
        font-size: 1rem;
    }
}

/* Animation Classes */
.animated-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animated-delay-1 {
    animation-delay: 0.2s;
}

.animated-delay-2 {
    animation-delay: 0.4s;
}

.animated-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Hero Background Section ===== */
.about-hero-section {
    position: relative;
    min-height: 500px;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    animation: kenBurns 30s infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(27, 58, 75, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb a {
    color: #4caf50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #81c784;
    transform: translateY(-2px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    100% {
        text-shadow: 0 2px 20px rgba(76, 175, 80, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    width: 100%;
    max-width: 400px;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4caf50, transparent);
    min-width: 60px;
}

.divider-icon {
    font-size: 24px;
    color: #4caf50;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.custom-float-item {
    position: absolute;
    font-size: 24px;
    opacity: 0.2;
    animation: floatElement 6s infinite ease-in-out;
}

.custom-float-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.custom-float-item:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: 1s;
}

.custom-float-item:nth-child(3) {
    top: 40%;
    left: 90%;
    animation-delay: 2s;
}

.custom-float-item:nth-child(4) {
    top: 80%;
    left: 15%;
    animation-delay: 3s;
}

.custom-float-item:nth-child(5) {
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ===== Collaboration, Accreditation & Sustainability Section ===== */
.collab-accreditation-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8faf8 100%);
    position: relative;
    overflow: hidden;
}

.collab-accreditation-section .section-header {
    position: relative;
}

.collab-accreditation-section .section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #81c784);
    border-radius: 2px;
}

/* Collaboration Section */
.collaboration-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    margin-bottom: 80px;
}

.collab-visual {
    position: relative;
    height: 400px;
}

.network-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
    animation: pulseCenter 3s ease-in-out infinite;
}

@keyframes pulseCenter {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.center-icon {
    font-size: 32px;
    margin-bottom: 5px;
}

.network-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.3), transparent);
    transform-origin: left center;
    transform: rotate(var(--angle));
    opacity: 0;
    animation: connectorDraw 1s ease-out forwards;
    animation-delay: var(--delay);
}

@keyframes connectorDraw {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 120px;
        opacity: 1;
    }
}

.network-node {
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.2);
    transform: rotate(var(--angle)) translate(120px) rotate(calc(-1 * var(--angle)));
    opacity: 0;
    animation: nodeAppear 0.5s ease-out forwards;
    animation-delay: var(--delay);
    transition: all 0.3s ease;
}

@keyframes nodeAppear {
    from {
        opacity: 0;
        transform: rotate(var(--angle)) translate(60px) rotate(calc(-1 * var(--angle)));
    }

    to {
        opacity: 1;
        transform: rotate(var(--angle)) translate(120px) rotate(calc(-1 * var(--angle)));
    }
}

.network-node:hover {
    transform: rotate(var(--angle)) translate(120px) rotate(calc(-1 * var(--angle))) scale(1.1);
    border-color: #4caf50;
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.2);
    z-index: 20;
}

.node-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.node-label {
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
    text-align: center;
}

.collab-content .section-header {
    text-align: left;
}

.section-divider-left {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #81c784);
    border-radius: 2px;
    margin: 10px 0 30px;
}

.collab-description {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.collab-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.partner-category h4 {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f5e9;
}

.partner-category ul {
    list-style: none;
    padding: 0;
}

.partner-category li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.partner-category li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Accreditation & Sustainability Grid */
.accred-sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 1100px) {
    .accred-sustainability-grid {
        grid-template-columns: 1fr;
    }
}

/* Accreditation Card */
.accred-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.accred-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46, 125, 50, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.accred-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.accred-icon img {
    width: 60px;
    height: 60px;
}

.accred-badge {
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.accred-body {
    padding: 20px 30px;
}

.accred-title {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.accred-description {
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 25px;
}

.accred-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .accred-benefits {
        grid-template-columns: 1fr;
    }
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.benefit-icon {
    color: #4caf50;
    font-size: 18px;
}

.accred-footer {
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.accred-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.status-text {
    color: #2e7d32;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Sustainability Card */
.sustainability-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.sustainability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46, 125, 50, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.sustainability-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sustainability-icon img {
    width: 60px;
    height: 60px;
}

.sustainability-badge {
    background: linear-gradient(135deg, #4caf50, #81c784);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sustainability-body {
    padding: 20px 30px;
}

.sustainability-title {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: 700;
}

.sustainability-description {
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 25px;
}

.funding-sources h4 {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f5e9;
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .source-grid {
        grid-template-columns: 1fr;
    }
}

.source-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.source-icon {
    font-size: 28px;
    color: #4caf50;
    flex-shrink: 0;
}

.source-content h5 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.source-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.sustainability-footer {
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(76, 175, 80, 0.2);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    background: #4caf50;
    border-color: #4caf50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}

.timeline-text {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    max-width: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .collaboration-section {
        padding: 40px 30px;
    }

    .network-visual {
        width: 250px;
        height: 250px;
    }

    .network-node {
        transform: rotate(var(--angle)) translate(90px) rotate(calc(-1 * var(--angle)));
    }

    .accred-sustainability-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .collaboration-section {
        padding: 30px 20px;
    }

    .collab-visual {
        height: 300px;
        margin-bottom: 40px;
    }

    .network-visual {
        width: 200px;
        height: 200px;
    }

    .network-node {
        width: 60px;
        height: 60px;
        transform: rotate(var(--angle)) translate(70px) rotate(calc(-1 * var(--angle)));
    }

    .node-icon {
        font-size: 18px;
    }

    .node-label {
        font-size: 10px;
    }

    .collab-partners-grid {
        grid-template-columns: 1fr;
    }

    .accred-sustainability-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .collab-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .timeline {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .timeline-text {
        text-align: left;
        max-width: none;
    }
}

/* ===== Governance & Administration Section ===== */
.governance-section {
    background: linear-gradient(135deg, #f8faf8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.governance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent);
}

.governance-structure {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .governance-structure {
        padding: 40px 30px;
    }
}

.governance-description {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Committees Grid */
.committees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 576px) {
    .committees-grid {
        grid-template-columns: 1fr;
    }
}

.committee-card {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(129, 199, 132, 0.02));
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.committee-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(129, 199, 132, 0.05));
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.1);
}

.committee-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.committee-content h4 {
    font-size: 1rem;
    color: #2e7d32;
    margin-bottom: 8px;
    font-weight: 600;
}

.committee-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Hierarchy Chart */
.hierarchy-chart {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hierarchy-level {
    position: relative;
    z-index: 2;
}

.level-title {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.hierarchy-node {
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 2px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hierarchy-node:hover {
    transform: scale(1.05);
    border-color: #4caf50;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.15);
}

.hierarchy-node.main-node {
    border-width: 3px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), white);
    max-width: 200px;
    margin: 0 auto;
}

.hierarchy-node .node-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hierarchy-node .node-content h5 {
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.hierarchy-node .node-content p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Level 2 - Supporting Committees */
.hierarchy-nodes-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .hierarchy-nodes-row {
        flex-wrap: wrap;
    }
}

/* Level 3 - Administrative Leadership */
.hierarchy-nodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .hierarchy-nodes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hierarchy-nodes-grid {
        grid-template-columns: 1fr;
    }
}

/* Hierarchy Connectors */
.hierarchy-connector {
    height: 40px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.3), transparent);
    margin: 0 auto;
    position: relative;
}

.hierarchy-connector::before,
.hierarchy-connector::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
}

.hierarchy-connector::before {
    top: 0;
}

.hierarchy-connector::after {
    bottom: 0;
}

/* Initial Phase Section */
.initial-phase-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .initial-phase-section {
        padding: 40px 30px;
    }
}

/* Phase Features */
.phase-description {
    color: #34495e;
    line-height: 1.8;
}

.phase-features {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-text strong {
    color: #2e7d32;
    font-weight: 600;
}

.network-connectivity {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(129, 199, 132, 0.02));
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    margin-top: 25px;
}

.network-connectivity h5 {
    font-size: 1rem;
    color: #2e7d32;
    margin-bottom: 10px;
    font-weight: 600;
}

.network-connectivity p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {

    .governance-structure,
    .initial-phase-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {

    .governance-structure,
    .initial-phase-section {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hierarchy-nodes-row {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}

/* =============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================= */

/* Hero Section Styles */
.contact-hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/generated/ayurveda_herbs_kerala_1767180000000.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    animation: parallax 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(76, 175, 80, 0.2));
    z-index: -1;
    animation: overlayPulse 4s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-breadcrumb li {
    margin: 0 10px;
    position: relative;
}

.hero-breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb li.current {
    color: #4caf50;
    font-weight: 600;
}

.hero-breadcrumb li:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: -15px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
}

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4caf50, transparent);
}

.divider-icon {
    font-size: 24px;
    animation: spin 4s linear infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: floatElement 6s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.float-element:nth-child(3) {
    bottom: 40%;
    left: 20%;
    animation-delay: 2s;
}

.float-element:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.float-element:nth-child(5) {
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

/* Contact Card Hover Effects */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.contact-icon {
    animation: bounce 2s infinite;
}

/* Form Input Focus Effects */
.contact_form input:focus,
.contact_form textarea:focus {
    border-color: #4caf50 !important;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2) !important;
    outline: none;
}

/* Button Hover Effects */
.button-style-two:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4) !important;
    background: linear-gradient(135deg, #4caf50, #2e7d32) !important;
}

/* Animations */
@keyframes parallax {
    0% {
        transform: scale(1.1) translateY(-10px);
    }

    100% {
        transform: scale(1) translateY(10px);
    }
}

@keyframes overlayPulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.5;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .contact_info_item {
        margin-bottom: 30px;
    }


    .hero-breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-breadcrumb li {
        margin: 5px 10px;
    }
}

/* =============================================
   DIVISIONS PAGE SPECIFIC STYLES
   ============================================= */

/* Hero Background Section */
.divisions-hero-section {
    position: relative;
    min-height: 500px;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
    overflow: hidden;
}

.divisions-hero-section .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/generated/ayurveda_research_lab_kerala_1767180000000.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    animation: kenBurns 30s infinite alternate;
}

.divisions-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(27, 58, 75, 0.8) 100%);
}

.divisions-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.divisions-hero-section .hero-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.divisions-hero-section .hero-breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
}

.divisions-hero-section .hero-breadcrumb a {
    color: #4caf50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.divisions-hero-section .hero-breadcrumb a:hover {
    color: #81c784;
    transform: translateY(-2px);
}

.divisions-hero-section .hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.divisions-hero-section .title.centred {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 🔑 THIS fixes the divider */
    width: 100%;
    margin: 0 auto;
}

.divisions-hero-section .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.divisions-hero-section .hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.divisions-hero-section .divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4caf50, transparent);
}

.divisions-hero-section .divider-icon {
    font-size: 24px;
    color: #4caf50;
    animation: pulse 2s infinite;
}

.divisions-hero-section .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.divisions-hero-section .float-element {
    position: absolute;
    font-size: 24px;
    opacity: 0.2;
    animation: float 6s infinite ease-in-out;
}

.divisions-hero-section .float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.divisions-hero-section .float-element:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: 1s;
}

.divisions-hero-section .float-element:nth-child(3) {
    top: 40%;
    left: 90%;
    animation-delay: 2s;
}

.divisions-hero-section .float-element:nth-child(4) {
    top: 80%;
    left: 15%;
    animation-delay: 3s;
}

.divisions-hero-section .float-element:nth-child(5) {
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.departments-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.dept-bio-bg {
    background-image: url('../../images/generated/lab_science_research_kerala_1767180000001.png');
}

.dept-plants-bg {
    background-image: url('../../images/generated/ayurveda_herbs_kerala_1767180000000.png');
}

.dept-drugs-bg {
    background-image: url('../../images/generated/medicine_lab_research_kerala_1767180000002.png');
}

.dept-clinical-bg {
    background-image: url('../../images/generated/hero_hospital_kerala_1767180578554.png');
}

.dept-heritage-bg {
    background-image: url('../../images/generated/campus_archive_kerala_1767180919891.png');
}

.dept-ict-bg {
    background-image: url('../../images/generated/digital_lab_technology_kerala_1767180000003.png');
}

.department-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: all 0.4s ease;
}

.dept-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(27, 58, 75, 0.9) 100%);
    z-index: 1;
}

.dept-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
}

.dept-header {
    text-align: center;
    margin-bottom: 40px;
}

.dept-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

.dept-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dept-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.dept-stats .stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dept-stats .stat strong {
    font-size: 1.5rem;
    margin-right: 5px;
    color: #4caf50;
}

/* Division Cards */
.division-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.division-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2);
    background: white;
}

.division-card.large {
    grid-column: span 2;
}

.division-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2e7d32;
    transition: all 0.3s ease;
}

.division-card:hover .division-icon {
    transform: scale(1.2) rotate(5deg);
}

.division-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.division-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    color: #2e7d32;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.division-card:hover .tag {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border-color: rgba(76, 175, 80, 0.3);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1b3a4b 0%, #0d1b2a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: #4caf50;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 10px;
}

.stat-icon {
    font-size: 36px;
    margin-top: 15px;
    opacity: 0.7;
}

/* Collaboration Section */
.collaboration-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.collaboration-section .overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(27, 58, 75, 0.85) 100%);
}

.collaboration-section .container {
    position: relative;
    z-index: 2;
}

.collaboration-section .section_header_enhanced {
    color: white;
}

.collaboration-section .section-subtitle {
    color: #81c784;
}

.collaboration-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.clients_slide_item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.clients_carousel .owl-stage-outer {
    padding-top: 15px;
    margin-top: -15px;
}

.clients_slide_item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: #4caf50;
}

.partner-info {
    margin-top: 15px;
}

.partner-info h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.partner-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Knowledge Partners Section */
.knowledge-partners-section {
    position: relative;
    background-image: url('../../images/generated/digital_archive_kerala_1767180000005.png');
    background-size: cover;
    background-position: center;
}

.knowledge-partners-section .overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.knowledge-partners-section .container {
    position: relative;
    z-index: 2;
}

.knowledge-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.partner-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.partner-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #2e7d32;
}

.partner-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.partner-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-content h3 a:hover {
    color: #2e7d32;
}

.partner-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Enhanced Section Headers */
.section_header_enhanced {
    text-align: center;
    margin-bottom: 60px;
}

.header-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.section-subtitle {
    color: #4caf50;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-title .highlight-text {
    color: #4caf50;
    position: relative;
}

.section-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, transparent);
}

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

.section-divider {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, #4caf50, #81c784);
    margin: 30px auto 0;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .divisions-hero-section .hero-title {
        font-size: 2.5rem;
    }

    .divisions-hero-section .hero-subtitle {
        font-size: 1.2rem;
    }

    .dept-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dept-stats {
        flex-direction: column;
        gap: 15px;
    }

    .dept-stats .stat {
        padding: 8px 20px;
    }

    .division-card.large {
        grid-column: span 1;
    }

    .knowledge-partners-grid {
        grid-template-columns: 1fr;
    }

    .dept-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .division-card {
        padding: 20px 15px;
    }

    .division-content h4 {
        font-size: 1.1rem;
    }

    .division-desc {
        font-size: 0.9rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   HOME PAGE CONSOLIDATED STYLES
   ============================================= */

/* --- Banner Section --- */
.banner-home-custom {
    position: relative;
    overflow: hidden;
    background: none;
    padding-top: 350px !important;
}

.banner-video-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.banner-overlay-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.banner-title-custom {
    color: #fff;
    font-size: 48px;
}

/* --- About Section --- */
.about-section-custom {
    padding-top: 40px;
    margin-top: 30px;
    padding-bottom: 60px !important;
}

.text-justify {
    text-align: justify;
}

/* --- Vision & Mission Section --- */
.vision-mission-custom {
    padding: 30px 0;
    margin: 0 0 20px 0 !important;
}

.vm-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.vm-card-base {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card-custom {
    background: linear-gradient(rgba(248, 249, 250, 0.85), rgba(233, 236, 239, 0.85)), var(--vision-bg) center center / cover;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.mission-card-custom {
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.vm-content-overlay {
    position: relative;
    z-index: 1;
}

.vm-title-vision {
    color: #2e7d32;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.vm-title-mission {
    color: #0d47a1;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.vm-quote-custom {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    padding: 15px;
    margin: 0;
    border-left: none;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.vm-glow-custom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
}

.vm-glow-vision {
    background: linear-gradient(90deg, #2e7d32, #4caf50, #81c784);
}

.vm-glow-mission {
    background: linear-gradient(90deg, #0d47a1, #2196f3);
}

.vm-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(233, 236, 239, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.mission-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.mission-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(248, 249, 250, 0.85), rgba(233, 236, 239, 0.85));
    z-index: 1;
}

/* --- Officials Section --- */
.officials-section-custom {
    background: #e8f5e9;
    position: relative;
    overflow: hidden;
}

.officials-container-custom {
    position: relative;
    z-index: 1;
}

.guiding-force-title {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding-top: 20px;
}

.guiding-force-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
    border-radius: 2px;
}

.official-block-custom {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.official-image-box-custom {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.official-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.official-image-glow-green {
    background: radial-gradient(circle, rgba(46, 125, 50, 0.2) 0%, transparent 70%);
}

.official-image-glow-blue {
    background: radial-gradient(circle, rgba(13, 71, 161, 0.2) 0%, transparent 70%);
}

.official-image-custom {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    width: 100%;
    height: auto;
    border: 3px solid #fff;
}

.official-name-custom {
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

.official-designation-custom {
    color: #555;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.6);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Research/Services Section --- */
.services-section-custom {
    position: relative;
    overflow: hidden;
    background: none;
}

.services-video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.services-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.services-overlay-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.services-container-custom {
    position: relative;
    z-index: 2;
}

/* --- WHO News Section --- */
.who-news-section-custom {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
}

.who-dna-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.who-dna-strand {
    position: absolute;
    width: 15%;
    height: 100%;
    background-repeat: repeat-y;
    background-size: contain;
}

.dna-strand-left-custom {
    left: 5%;
    animation: moveDNA 30s linear infinite;
}

.dna-strand-right-custom {
    right: 5%;
    animation: moveDNA 25s linear infinite reverse;
}

.who-bg-pattern-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.who-floating-custom {
    position: absolute;
    z-index: 0;
}

.who-floating-1-custom {
    top: 20%;
    left: 10%;
    font-size: 24px;
    color: rgba(46, 125, 50, 0.1);
    animation: float1 6s ease-in-out infinite;
}

.who-floating-2-custom {
    top: 60%;
    right: 15%;
    font-size: 20px;
    color: rgba(46, 125, 50, 0.1);
    animation: float2 8s ease-in-out infinite;
}

.who-floating-3-custom {
    bottom: 20%;
    left: 20%;
    font-size: 18px;
    color: rgba(46, 125, 50, 0.1);
    animation: float3 7s ease-in-out infinite;
}

.who-container-custom {
    position: relative;
    z-index: 1;
}

.who-title-custom {
    color: #1b5e20;
    font-weight: 700;
    font-size: 36px;
    padding-top: 20px;
}

.who-subtitle-custom {
    color: #2e7d32;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.who-news-card-custom {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.card-who-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.who-card-who .card-who-glow {
    background: radial-gradient(circle at center, rgba(0, 119, 204, 0.1) 0%, transparent 70%);
}

.who-card-niti .card-who-glow {
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
}

.who-card-mcc .card-who-glow {
    background: radial-gradient(circle at center, rgba(0, 150, 136, 0.1) 0%, transparent 70%);
}

.who-card-ccras .card-who-glow {
    background: radial-gradient(circle at center, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
}

.who-news-card-custom:hover {
    transform: translateY(-10px);
}

.who-news-card-custom:hover .card-who-glow {
    opacity: 1;
}

.who-logo-container-custom {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    position: relative;
}

.who-icon-wrapper-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    position: relative;
}

.who-icon-custom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-icon-img-custom {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 150, 136, 0.2));
}

.who-icon-img-multiply {
    mix-blend-mode: multiply;
}

.icon-ring-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: rotateRing 10s linear infinite;
    opacity: 0.3;
}

.ring-who {
    border: 2px solid #0077cc;
}

.ring-niti {
    border: 2px solid #ff6b00;
}

.ring-mcc {
    border: 2px solid #009688;
}

.ring-ccras {
    border: 2px solid #2e7d32;
}

.who-content-custom {
    position: relative;
    z-index: 2;
}

.who-card-title-who {
    color: #0d47a1;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 28px;
}

.who-card-title-niti {
    color: #e65100;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 28px;
}

.who-card-title-mcc {
    color: #00695c;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 28px;
}

.who-card-title-ccras {
    color: #1b5e20;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 28px;
}

.who-card-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.who-card-subtitle-who {
    color: #0077cc;
}

.who-card-subtitle-niti {
    color: #ff6b00;
}

.who-card-subtitle-mcc {
    color: #009688;
}

.who-card-subtitle-ccras {
    color: #2e7d32;
}

.who-description-custom {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 80px;
}

.who-link-btn-custom {
    display: inline-flex;
    align-items: center;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.who-btn-who {
    background: linear-gradient(135deg, #05830c, #096d2a);
    box-shadow: 0 10px 20px rgba(5, 131, 12, 0.3);
}

.who-btn-niti {
    background: linear-gradient(135deg, #ff6b00, #e65100);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.who-btn-mcc {
    background: linear-gradient(135deg, #009688, #00695c);
    box-shadow: 0 10px 20px rgba(0, 150, 136, 0.3);
}

.who-btn-ccras {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.who-link-btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.button-style-one-custom i:first-child {
    margin-right: 12px;
}

.button-style-one-custom i:last-child {
    margin-left: 12px;
}

.dna-strand-bg-var {
    background-image: var(--dna-bg);
}

.feature-title-custom {
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-p-custom {
    color: #34495e;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.who-link-btn-custom i {
    margin-left: 10px;
}

.who-news-card-custom.hovered {
    transform: translateY(-10px);
}

.who-news-card-custom.hovered .card-glow {
    opacity: 1;
}

.who-link-btn-custom.hovered {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}