* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: #1d2e55;
    overflow-x: hidden;
    min-height: 100vh;
}

/* =========================
   BACKGROUND
========================= */

canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 10000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 48px;
    width: 100%;

    background-color: #ffffff !important;
    background-image: none !important;

    border-bottom: 1px solid #e6edf8;

    box-shadow: 0 4px 18px rgba(40,70,140,0.05);

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: -1;
}


.brand {
    display: flex;
    align-items: center;
    position: relative;
}

.brand a {
    display: flex;
    align-items: center;
    position: relative;
}

.brand a::before {
    display: none;
}

.brand img {
    width: 140px;
    position: relative;
    z-index: 2;
    filter:
        drop-shadow(0 0 12px rgba(130,180,255,0.20))
        drop-shadow(0 0 28px rgba(100,150,255,0.14));
    transition: transform 0.35s ease;
}

.brand img:hover {
    transform: scale(1.04);
}

nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

nav a {
    position: relative;
    text-decoration: none;
    color: #31529d;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

nav a:hover {
    color: #1b3f95;
}

nav a:not(.portal-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2e5cff, #7ea8ff);
    transition: width 0.3s ease;
}

nav a:not(.portal-btn):hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 420px;

    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(22px);

    border: 1px solid rgba(140,180,255,0.14);
    border-radius: 24px;

    box-shadow: 0 25px 60px rgba(60,100,180,0.12);

    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 500;
    padding: 14px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding: 16px 18px;
    border-radius: 16px;

    text-decoration: none;
    transition: 0.25s ease;
}

.dropdown-item:hover {
    background: rgba(80,120,220,0.06);
    transform: translateX(4px);
}

.drop-title {
    font-size: 15px;
    font-weight: 800;
    color: #1f3f8f;
    letter-spacing: 0.5px;
}

.drop-desc {
    font-size: 13px;
    color: #6881b5;
    line-height: 1.4;
}

.portal-btn {
    padding: 13px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2d5df5, #4b7dff);
    color: white !important;
    font-weight: 700;
    box-shadow: 0 14px 36px rgba(45,93,245,0.22);
    transition: 0.3s ease;
}

.portal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(45,93,245,0.30);
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 82vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 28px 50px;
    position: relative;
    z-index: 2;

    background: transparent;
    backdrop-filter: none;
    border: none;
}

.hero-content {
    max-width: 1150px;
}

.hero-badge,
.section-badge {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(140,180,255,0.16);
    color: #2853b8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 12px 35px rgba(70,110,180,0.08);
}

.hero h1 {
    font-size: 68px;
    margin: 24px 0 0;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;

    color: #18336d;

    font-family:
        "Segoe UI",
        "Trebuchet MS",
        Arial,
        sans-serif;

    text-shadow:
        0 0 10px rgba(120,170,255,0.12),
        0 0 24px rgba(120,170,255,0.08);

    position: relative;
}

.hero h1::after {
    content: "";
    display: block;
    width: 180px;
    height: 2px;
    margin: 18px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(80,130,255,0.7),
        transparent
    );

    border-radius: 999px;
}

.hero-subtitle {
    margin-top: 28px;
    font-size: 28px;
    line-height: 1.55;
    color: #4b69a8;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons,
.plazmir-actions,
.pdf-buttons {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary,
.enter-btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary,
.enter-btn {
    background: linear-gradient(135deg, #2d5df5, #4d7eff);
    color: white;
    box-shadow: 0 15px 40px rgba(45,93,245,0.22);
}

.btn-primary:hover,
.enter-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(45,93,245,0.32);
}

.btn-secondary {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(150,190,255,0.18);
    color: #28418c;
    box-shadow: 0 10px 30px rgba(60,90,160,0.06);
}

.btn-secondary:hover {
    transform: translateY(-4px);
}

/* =========================
   BANDS LAYOUT
========================= */

.section-band {
    width: 100%;
    padding: 45px 0;
    position: relative;
    z-index: 2;

    background: transparent;
    backdrop-filter: none;
    border: none;
}

.band-inner {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 36px;
}

.intro-section,
.features-section,
.impact-section,
.publication-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.intro-card,
.feature-card,
.impact-card,
.pdf-card,
.gate-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(100,140,220,0.18);
    border-radius: 28px;
    backdrop-filter: blur(10px);

    box-shadow:
        0 20px 60px rgba(50,80,150,0.12),
        0 8px 24px rgba(80,120,220,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);

    transition: 0.3s ease;
}

.intro-card,
.feature-card,
.impact-card,
.publication-card {
    padding: 36px;
}

.intro-card h2,
.feature-card h2,
.publication-card h3 {
    color: #16336d;
    font-weight: 800;
}

.intro-card p,
.feature-card p,
.publication-card p,
.impact-card p {
    color: #3d568d;
    line-height: 1.8;
    font-weight: 500;
}

.impact-card {
    text-align: center;
}

.impact-card h2 {
    font-size: 52px;
    margin: 0;
    color: #1c3f94;
}

/* =========================
   TECHNOLOGY PAGES
========================= */

.plazmir-hero {
    min-height: 84vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 120px 60px 70px;
    position: relative;
    z-index: 2;
}

.plazmir-left h1 {
    font-size: 82px;
    margin: 20px 0;
    color: #1b2d63;
}

.plazmir-subtitle {
    font-size: 24px;
    line-height: 1.65;
    color: #4d67a5;
}

.plazmir-image {
    width: 100%;
    max-width: 700px;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(50,90,170,0.18);
}

/* =========================
   PDF / RESEARCH
========================= */

.pdf-section {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 70px 36px 0;
    position: relative;
    z-index: 2;
}

.research-section {
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 36px 0;
    position: relative;
    z-index: 2;
}

.pdf-card {
    padding: 54px;
    text-align: center;
}

.research-section h2 {
    text-align: center;
    font-size: 46px;
    color: #20386f;
    margin-bottom: 24px;
}

/* =========================
   PARTNER BLOCK
========================= */

.partner-block,
.india-block {
    padding: 0 36px 90px;
    position: relative;
    z-index: 2;
}

/* =========================================
   BIOGAS / MONOLITH LOCAL SPACING FIX
   (only these pages)
========================================= */

.impact-section + .partner-block {
    margin-top: 28px;
}

.partner-inner,
.india-inner {
    max-width: 1150px;
    margin: auto;
    padding: 70px;
    border-radius: 32px;
    text-align: center;

    background: rgba(255,255,255,0.58);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(140,180,255,0.12);

    box-shadow:
        0 20px 60px rgba(60,100,180,0.06);

    color: #1d2e55;
}


.partner-inner h2,
.india-inner h2 {
    font-size: 42px;
    margin-top: 0;
}

.partner-inner p,
.india-inner p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 850px;
    margin: 20px auto 36px;
}

/* =========================
   GATE
========================= */

.gate-page {
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
}

.gate-card {
    max-width: 920px;
    width: 100%;
    padding: 60px;
    text-align: center;
}

.gate-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gate-logo {
    width: 180px;
    margin-bottom: 20px;
}

.gate-badge {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(80,120,220,0.08);
    color: #2f56c4;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.gate-card h1 {
    font-size: 52px;
    color: #1f3472;
}

.gate-card p {
    font-size: 20px;
    line-height: 1.7;
    color: #50689e;
}

.gate-features {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    padding: 22px;
    border-radius: 18px;
    background: rgba(80,120,220,0.08);
    color: #23428a;
    font-weight: 700;
}

/* =========================
   THALAMUS IN LIFE
========================= */

.life-section {
    max-width: 1320px;
    margin: 90px auto 120px;
    padding: 0 36px;
    position: relative;
    z-index: 2;
}

.life-header {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 60px;
}

.life-header h2 {
    font-size: 56px;
    margin: 24px 0 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #1b356f;

    text-shadow:
        0 0 16px rgba(120,170,255,0.10);
}

.life-header p {
    font-size: 22px;
    line-height: 1.75;
    color: #5370aa;
}

/* GRID */

.life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

/* CARD */

.life-card {
    position: relative;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;

    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(140,180,255,0.16);

    backdrop-filter: blur(16px);

    box-shadow:
        0 25px 60px rgba(60,100,180,0.08),
        inset 0 1px 0 rgba(255,255,255,0.5);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.life-card:hover {
    transform: translateY(-10px) scale(1.015);

    box-shadow:
        0 35px 80px rgba(60,100,180,0.14),
        0 0 30px rgba(120,170,255,0.08);
}

.life-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition:
        transform 0.65s ease,
        filter 0.65s ease;
}

.life-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.82);
}

/* OVERLAY */

.life-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 34px 28px;

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(15,30,70,0.30) 35%,
            rgba(15,30,70,0.82) 100%
        );

    color: white;
}

.life-overlay h3 {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.life-overlay p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.90);
}

/* VIDEO BLOCK */

.life-video-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: center;

    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(140,180,255,0.16);
    border-radius: 34px;

    padding: 22px;

    backdrop-filter: blur(8px);

    box-shadow:
        0 25px 70px rgba(60,100,180,0.10);
}

.life-video-text h3 {
    font-size: 32px;
    margin: 0 0 20px;
    color: #1d3874;
    line-height: 1.2;
}

.life-video-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #5871a6;
}

.life-video-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.life-video-frame {
    border-radius: 24px;
    overflow: hidden;
    max-width: 640px;
    margin: 0 auto;

    box-shadow:
        0 18px 45px rgba(50,90,170,0.12);
}

.life-video-frame img {
    width: 100%;
    display: block;
    border-radius: 24px;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.impact-preview-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.impact-preview-link::after {
    content: "▶ VIEW IMPACT STORIES";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    padding: 16px 28px;
    border-radius: 999px;

    background: rgba(20,40,90,0.75);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;

    box-shadow:
        0 15px 35px rgba(30,60,140,0.20);

    transition: 0.35s ease;
}

.impact-preview-link:hover img {
    transform: scale(1.04);
    filter: brightness(0.85);
}

.impact-preview-link:hover::after {
    transform: translate(-50%, -50%) scale(1.08);
}

/* PREMIUM LIGHT FX */

.life-section::before {
    content: "";
    position: absolute;
    inset: -100px;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(120,170,255,0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgba(90,150,255,0.06),
            transparent 35%
        );

    pointer-events: none;
    z-index: -1;
}

/* =========================
   LIFE RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .life-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .life-video-block {
        grid-template-columns: 1fr;
    }

    .life-video-text {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .life-header h2 {
        font-size: 42px;
    }

    .life-header p {
        font-size: 18px;
    }

    .life-card {
        height: 360px;
    }

    .life-overlay h3 {
        font-size: 22px;
    }

    .life-video-text h3 {
        font-size: 32px;
    }

    .life-video-text p {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .life-section {
        padding: 0 20px;
        margin-bottom: 90px;
    }

    .life-grid {
        grid-template-columns: 1fr;
    }

    .life-header h2 {
        font-size: 32px;
    }

    .life-header p {
        font-size: 16px;
        line-height: 1.65;
    }

    .life-card {
        height: 300px;
    }

    .life-overlay {
        padding: 22px;
    }

    .life-overlay h3 {
        font-size: 20px;
    }

    .life-overlay p {
        font-size: 14px;
    }

    .life-video-block {
        padding: 22px;
        border-radius: 24px;
    }

    .life-video-text h3 {
        font-size: 26px;
    }

    .life-video-text p {
        font-size: 15px;
    }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .plazmir-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plazmir-image {
        margin: auto;
    }

    .intro-section,
    .features-section,
    .impact-section,
    .publication-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 18px 22px;
        flex-direction: column;
        gap: 20px;
    }

    nav {
        justify-content: center;
        gap: 14px;
        width: 100%;
    }

    nav a {
        font-size: 14px;
    }

    .dropdown {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        width: 100%;
        margin-top: 10px;
        padding: 10px;
        box-shadow: none;
        background: rgba(255,255,255,0.65);
        border-radius: 18px;
        display: none;
        backdrop-filter: blur(12px);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 14px 16px;
    }

    .drop-title {
        font-size: 14px;
    }

    .drop-desc {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .plazmir-left h1 {
        font-size: 54px;
    }

    .plazmir-subtitle {
        font-size: 20px;
    }

    .gate-card {
        padding: 38px;
    }

    .gate-card h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .intro-section,
    .features-section,
    .impact-section,
    .publication-grid,
    .gate-features {
        grid-template-columns: 1fr;
    }

    .about-visual-grid {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .about-image-card img {
        height: 240px;
    }

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons,
    .plazmir-actions,
    .pdf-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .enter-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .plazmir-hero {
        padding: 80px 20px 50px;
    }

    .partner-inner,
    .india-inner,
    .pdf-card,
    .gate-card {
        padding: 28px;
    }

    .partner-inner h2,
    .india-inner h2,
    .research-section h2 {
        font-size: 30px;
    }

    .gate-logo {
        width: 130px;
    }

    .gate-card h1 {
        font-size: 32px;
    }

    .gate-card p {
        font-size: 17px;
    }
}

@keyframes logoPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.65;
    }
}

.about-visual-grid {
    max-width: 1450px;
    margin: 0 auto 70px;
    padding: 0 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.about-image-card {
    background: rgba(255,255,255,0.72);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(140,180,255,0.14);
    box-shadow: 0 22px 50px rgba(70,100,170,0.08);
}

.about-image-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.about-image-card:hover img {
    transform: scale(1.05);
}

/* =========================
   TECHNOLOGY CARDS IMAGES
========================= */

.tech-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 28px 28px 0 0;
    transition: transform 0.45s ease;
}

/* =========================
   PUBLICATION CARDS
========================= */

.publication-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.publication-card {
    background: rgba(255,255,255,0.96);

    border: 1px solid rgba(100,140,220,0.16);

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(50,80,150,0.10),
        0 8px 24px rgba(80,120,220,0.06);

    transition: 0.35s ease;

    display: flex;
    flex-direction: column;

    min-height: 520px;
}

.publication-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 70px rgba(50,80,150,0.16);
}

.publication-image {
    width: 100%;
    height: 220px;

    object-fit: cover;

    display: block;

    transition: transform 0.45s ease;
}

.publication-card:hover .publication-image {
    transform: scale(1.04);
}

.publication-content {
    padding: 30px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.publication-content h3 {
    margin: 0 0 18px;

    font-size: 30px;
    line-height: 1.2;

    color: #16336d;

    font-weight: 800;
}

.publication-content p {
    margin: 0;

    font-size: 18px;
    line-height: 1.75;

    color: #3d568d;

    font-weight: 500;
}

/* MOBILE */

@media (max-width: 640px) {
    .tech-card-image {
        height: 200px;
    }

    .publication-card p {
        min-height: auto;
    }

    .publication-card h3 {
        font-size: 24px;
    }
}

/* =========================
   IMPACT PAGE
========================= */

.impact-page {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 80px 30px;
    position: relative;
    z-index: 2;
}

.impact-page-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.impact-page-header h1 {
    font-size: 58px;
    color: #1b356f;
    margin: 24px 0;
}

.impact-page-header p {
    font-size: 22px;
    line-height: 1.7;
    color: #5871a6;
}

.impact-video-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(50,90,170,0.14);
}

.impact-video-wrapper video {
    width: 100%;
    display: block;
}

/* MOBILE */

@media (max-width: 640px) {
    .impact-page-header h1 {
        font-size: 34px;
    }

    .impact-page-header p {
        font-size: 16px;
    }
}

/* =========================
   ABOUT UNIFIED CARDS
========================= */

.about-unified-grid {
    max-width: 1450px;
    margin: 0 auto 80px;
    padding: 0 36px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;

    position: relative;
    z-index: 2;
}

.about-unified-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(100,140,220,0.16);
    border-radius: 30px;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(50,80,150,0.10),
        0 8px 24px rgba(80,120,220,0.06);

    transition: 0.35s ease;
}

.about-unified-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 28px 70px rgba(50,80,150,0.16);
}

.about-unified-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.about-card-content {
    padding: 34px;
}

.about-card-content h2 {
    margin-top: 0;
    margin-bottom: 20px;

    font-size: 34px;
    font-weight: 800;
    color: #16336d;
}

.about-card-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #3d568d;
    font-weight: 500;
}

/* MOBILE */

@media (max-width: 1200px) {
    .about-unified-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-unified-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .about-unified-card img {
        height: 240px;
    }

    .about-card-content h2 {
        font-size: 28px;
    }

    .about-card-content p {
        font-size: 16px;
    }
}

/* =========================================
   ABOUT PAGE FIX — unified cards
========================================= */

.about-unified-grid {
    max-width: 1450px;
    margin: 0 auto 80px;
    padding: 0 36px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;

    position: relative;
    z-index: 2;
}

.about-unified-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(100,140,220,0.16);
    border-radius: 30px;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(50,80,150,0.10),
        0 8px 24px rgba(80,120,220,0.06);

    transition: 0.35s ease;

    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-unified-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 28px 70px rgba(50,80,150,0.16);
}

.about-unified-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.about-card-content {
    padding: 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.about-card-content h2 {
    margin: 0 0 18px;
    font-size: 30px;
    font-weight: 800;
    color: #16336d;
    line-height: 1.2;
}

.about-card-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #3d568d;
    font-weight: 500;
}

/* отключаем старые отдельные блоки about */
.about-visual-grid,
.intro-section {
    display: none !important;
}

/* responsive */
@media (max-width: 1200px) {
    .about-unified-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-unified-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .about-unified-card img {
        height: 240px;
    }

    .about-card-content h2 {
        font-size: 26px;
    }

    .about-card-content p {
        font-size: 16px;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    min-height: 45vh;
    padding-bottom: 30px;
}

.flash-box {
    background: rgba(59,130,246,0.14);
    border: 1px solid rgba(59,130,246,0.30);
    color: #16336d;
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(60,100,180,0.08);
}

.contact-form-wrap {
    max-width: 920px;
    margin: auto;

    background: rgba(255,255,255,0.72);

    border: 1px solid rgba(140,180,255,0.16);

    border-radius: 30px;

    padding: 55px;

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 60px rgba(50,80,150,0.10),
        0 8px 24px rgba(80,120,220,0.06);
}

.contact-form-wrap h2 {
    text-align: center;
    color: #16336d;
    font-size: 42px;
    margin-top: 0;
}

.contact-form-wrap p {
    text-align: center;
    color: #4b69a8;
    font-size: 18px;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 16px 18px;

    border-radius: 16px;

    border: 1px solid rgba(140,180,255,0.16);

    background: rgba(255,255,255,0.92);

    color: #1d2e55;

    font-size: 16px;

    font-family: inherit;

    outline: none;

    transition: 0.3s ease;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7d91bb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4d7eff;
    box-shadow:
        0 0 0 4px rgba(77,126,255,0.10);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form button {
    margin-top: 12px;
    align-self: center;
    min-width: 260px;
}

.honeypot {
    display: none !important;
}

/* MOBILE */

@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 30px;
    }

    .contact-form-wrap h2 {
        font-size: 30px;
    }

    .contact-form-wrap p {
        font-size: 16px;
    }

    .contact-form button {
        width: 100%;
        min-width: auto;
    }
}

/* =========================
   PARTNERS PAGE
========================= */

.partner-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.partner-model-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(100,140,220,0.16);
    border-radius: 30px;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(50,80,150,0.10),
        0 8px 24px rgba(80,120,220,0.06);

    transition: 0.35s ease;
}

.partner-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(50,80,150,0.16);
}

.partner-model-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.partner-model-content {
    padding: 32px;
}

.partner-model-content h2 {
    margin: 0 0 18px;
    color: #16336d;
    font-size: 28px;
    line-height: 1.2;
}

.partner-model-content p {
    margin: 0;
    color: #3d568d;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
}

.partners-ecosystem-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 45px;
}

.partners-ecosystem-header h2 {
    font-size: 48px;
    color: #16336d;
    margin: 22px 0 20px;
}

.partners-ecosystem-header p {
    font-size: 20px;
    line-height: 1.75;
    color: #4b69a8;
}

.partner-category {
    margin-bottom: 50px;
}

.partner-category h3 {
    font-size: 30px;
    color: #16336d;
    margin-bottom: 22px;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.partner-logo-card {
    min-height: 170px;
    padding: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    text-decoration: none;

    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(100,140,220,0.16);
    border-radius: 24px;

    box-shadow:
        0 16px 42px rgba(50,80,150,0.08);

    transition: 0.3s ease;
}

.partner-logo-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 60px rgba(50,80,150,0.14);
}

.partner-logo-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
}

.partner-logo-card span {
    font-size: 15px;
    font-weight: 700;
    color: #31529d;
    text-align: center;
}

/* MOBILE PARTNERS */

@media (max-width: 1200px) {
    .partner-model-grid,
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .partner-model-grid,
    .partner-logo-grid {
        grid-template-columns: 1fr;
    }

    .partners-ecosystem-header h2 {
        font-size: 34px;
    }

    .partner-category h3 {
        font-size: 24px;
    }
}

/* =========================================================
   PARTNERS PAGE
========================================================= */

.partner-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.partner-model-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(180,200,255,0.45);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow:
        0 20px 50px rgba(28, 71, 153, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.35s ease;
}

.partner-model-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 28px 70px rgba(29,78,216,0.18),
        inset 0 1px 0 rgba(255,255,255,1);
}

.partner-model-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.partner-model-content {
    padding: 28px;
}

.partner-model-content h2 {
    font-size: 30px;
    color: #16336d;
    margin-bottom: 16px;
    font-weight: 800;
}

.partner-model-content p {
    font-size: 17px;
    line-height: 1.75;
    color: #4b69a8;
}

/* ecosystem */

.partners-ecosystem-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-ecosystem-header h2 {
    font-size: 52px;
    color: #16336d;
    margin-top: 18px;
    margin-bottom: 20px;
    font-weight: 900;
}

.partners-ecosystem-header p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #4b69a8;
}

/* categories */

.partner-category {
    margin-bottom: 70px;
}

.partner-category h3 {
    font-size: 42px;
    color: #16336d;
    margin-bottom: 30px;
    font-weight: 900;
}

/* logo grid */

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* cards */

.partner-logo-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(180,200,255,0.4);
    border-radius: 24px;
    padding: 22px;
    min-height: 290px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    backdrop-filter: blur(10px);

    box-shadow:
        0 16px 45px rgba(28, 71, 153, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.95);

    transition: all 0.35s ease;
}

.partner-logo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 28px 80px rgba(29,78,216,0.20),
        inset 0 1px 0 rgba(255,255,255,1);
}

/* BIG logos */

.partner-logo-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    display: block;
    margin-bottom: 22px;
}

/* company name */

.partner-logo-card span {
    font-size: 20px;
    font-weight: 800;
    color: #16336d;
    text-align: center;
    line-height: 1.35;
}

/* hidden partners */

.partners-collapsed .extra-partner {
    display: none;
}

/* toggle */

.partners-toggle {
    margin-top: 28px;
    padding: 14px 28px;
    border: none;
    border-radius: 14px;

    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;

    font-size: 16px;
    font-weight: 700;
    cursor: pointer;

    transition: all 0.3s ease;
}

.partners-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(37,99,235,0.35);
}

/* responsive */

@media (max-width: 1200px) {
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .partner-model-grid {
        grid-template-columns: 1fr;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-ecosystem-header h2 {
        font-size: 40px;
    }

    .partner-category h3 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .partner-logo-grid {
        grid-template-columns: 1fr;
    }

    .partner-logo-card {
        min-height: 250px;
    }

    .partner-logo-card img {
        height: 130px;
    }

    .partners-ecosystem-header h2 {
        font-size: 32px;
    }
}

/* =========================================================
   MOBILE SURGICAL FIX — HOME + NAVBAR ONLY
   SAFE PATCH
========================================================= */

@media (max-width: 1200px) {

    .navbar {
        padding: 18px 30px;
        gap: 20px;
        flex-wrap: wrap;
    }

    nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .portal-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero {
        padding-top: 180px;
        min-height: auto;
    }

    .hero-content {
        max-width: 900px;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero-subtitle {
        font-size: 22px;
    }
}


/* TABLET */

@media (max-width: 992px) {

    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .brand img {
        height: 70px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 15px;
    }

    .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
        min-width: 320px;
    }

    .hero {
        padding-top: 220px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-buttons a {
        width: 280px;
        text-align: center;
    }

    .intro-section,
    .impact-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .life-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .life-video-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .life-video-text {
        text-align: center;
    }
}


/* MOBILE */

@media (max-width: 768px) {

    #network {
        display: none;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    /* NAVBAR */

    .navbar {
        padding: 0;
        gap: 0;
    }

    /* FIX LOGO PROPORTIONS */

    .brand img {
        width: 180px;
        height: auto;
        max-width: 100%;
    }

    /* MENU BUTTONS */

    nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    nav a,
    .dropdown-trigger {
        width: 100%;
        max-width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;

        padding: 14px 16px;

        font-size: 18px;
        font-weight: 700;

        border-radius: 14px;

        background: rgba(255,255,255,0.82);
        border: 1px solid rgba(140,180,255,0.20);

        box-shadow:
            0 8px 20px rgba(60,100,180,0.06);

        text-align: center;
    }

    nav a::after {
        display: none;
    }

    /* PORTAL BUTTON */

    .portal-btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        font-size: 18px;
        text-align: center;
    }

    /* DROPDOWN */

    .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        box-shadow: none;
        border-radius: 16px;
    }

    /* HERO */

    .hero {
        padding-top: 40px;
        padding-left: 18px;
        padding-right: 18px;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-badge,
    .section-badge {
        font-size: 12px;
        padding: 8px 14px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 44px;
        line-height: 1.1;
        letter-spacing: 3px;
        max-width: 100%;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 320px;
    }

    /* CONTENT */

    .intro-card,
    .impact-card {
        padding: 28px 22px;
        width: 100%;
        max-width: 100%;
    }

    .intro-card h2,
    .life-header h2 {
        font-size: 30px;
        word-break: break-word;
    }

    .impact-card h2 {
        font-size: 42px;
    }

    .life-section {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        max-width: 100%;
    }

    .life-overlay h3 {
        font-size: 22px;
    }

    .life-overlay p {
        font-size: 15px;
    }

    .life-video-text h3 {
        font-size: 30px;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .hero {
        padding-top: 200px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        width: 100%;
        text-align: center;
    }

    .hero-buttons a {
        max-width: 100%;
    }

    .intro-card h2,
    .life-header h2,
    .life-video-text h3 {
        font-size: 26px;
    }

    .impact-card h2 {
        font-size: 34px;
    }
}

/* ===============================
   MOBILE BURGER MENU
=============================== */

.mobile-menu-toggle {
    display: none;
    background: white;
    border: 1px solid rgba(120,160,255,0.18);
    border-radius: 12px;
    font-size: 28px;
    padding: 8px 14px;
    cursor: pointer;
    color: #234a9f;
    box-shadow: 0 10px 20px rgba(80,120,220,0.08);
}

@media (max-width: 768px) {

    .navbar {
        position: sticky;
        top: 0;

        flex-direction: row;
        justify-content: center;
        align-items: center;

        padding: 14px 16px;
    }


    .brand {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .brand a {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .brand img {
        width: 160px;
        height: auto;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav {
        display: none !important;
        position: absolute;
        top: 92px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        border-top: 1px solid rgba(120,160,255,0.12);
        z-index: 9999;
    }

    nav.mobile-open {
        display: flex !important;
    }

    nav a,
    .dropdown-trigger,
    .portal-btn {
        width: 100%;
        max-width: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        margin-top: 8px;
    }

    .hero {
        padding-top: 40px;
    }
}

/* =========================================
   TECHNOLOGIES MOBILE FIX
   SAFE SURGICAL PATCH
========================================= */

@media (max-width: 1200px) {
    .publication-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {

    .research-section {
        padding: 20px 16px 50px;
        margin: 0 auto;
    }

    .research-section h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .publication-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .publication-card {
        min-height: auto;
        border-radius: 24px;
    }

    .tech-card-image {
        height: 220px;
        border-radius: 24px 24px 0 0;
    }

    .publication-content {
        padding: 22px;
    }

    .publication-content h3 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .publication-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .publication-content .btn-primary {
        width: 100%;
        max-width: none;
        margin-top: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .research-section h2 {
        font-size: 26px;
    }

    .tech-card-image {
        height: 190px;
    }

    .publication-content {
        padding: 18px;
    }

    .publication-content h3 {
        font-size: 21px;
    }

    .publication-content p {
        font-size: 14px;
    }
}

/* =========================================
   PARTNERS MOBILE FIX
   SAFE SURGICAL PATCH
========================================= */

@media (max-width: 1200px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    /* HERO */

    .partners-hero {
        min-height: auto !important;
        padding: 35px 16px 30px !important;
    }

    .partners-hero h1 {
        font-size: 34px !important;
        line-height: 1.15;
        letter-spacing: 2px;
    }

    .partners-hero .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 18px;
    }

    .partners-hero .hero-buttons {
        margin-top: 22px;
    }

    .partners-hero .btn-primary {
        width: 100%;
        max-width: none;
    }

    /* TOP MODEL CARDS */

    .partner-model-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-model-card img {
        height: 200px;
    }

    .partner-model-content {
        padding: 22px;
    }

    .partner-model-content h2 {
        font-size: 24px;
    }

    .partner-model-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    /* ECOSYSTEM HEADER */

    .partners-ecosystem-header h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .partners-ecosystem-header p {
        font-size: 15px;
        line-height: 1.65;
        padding: 0 10px;
    }

    /* CATEGORY TITLES */

    .partner-category h3 {
        font-size: 24px;
        line-height: 1.25;
        text-align: center;
    }

    /* LOGO GRID */

    .partner-logo-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .partner-logo-card {
        min-height: auto;
        padding: 20px;
    }

    .partner-logo-card img {
        height: 110px;
        margin-bottom: 16px;
    }

    .partner-logo-card span {
        font-size: 16px;
        line-height: 1.4;
        word-break: break-word;
    }

    /* SHOW MORE BUTTON */

    .partners-toggle {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    /* GLOBAL DEPLOYMENT */

    .pdf-card h2 {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .pdf-card p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }

    /* FINAL BLOCK */

    .india-inner {
        padding: 28px;
    }

    .india-inner h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .india-inner p {
        font-size: 15px;
        line-height: 1.65;
    }

    .india-inner .btn-primary {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {

    .partners-hero h1 {
        font-size: 28px !important;
    }

    .partner-logo-card img {
        height: 90px;
    }

    .partner-logo-card span {
        font-size: 15px;
    }

    .pdf-card h2 {
        font-size: 26px !important;
    }

    .india-inner h2 {
        font-size: 24px;
    }
}

/* =========================================
   CONTACT PAGE CORPORATE FULL WIDTH
========================================= */

/* HERO */

.contact-hero {
    min-height: 30vh !important;
    padding: 35px 20px 15px !important;
}

.contact-hero h1 {
    font-size: 58px;
    letter-spacing: 5px;
}

.contact-hero .hero-subtitle {
    max-width: 1100px;
    font-size: 22px;
    line-height: 1.65;
}

/* MAIN WIDTH EXPANSION */

.contact-hero + .section-band .band-inner {
    max-width: 96% !important;
    padding: 0 !important;
}

.india-block {
    padding-left: 2% !important;
    padding-right: 2% !important;
    padding-bottom: 90px;
}

/* CONTACT INFO CARDS */

.contact-hero + .section-band .publication-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.contact-hero + .section-band .publication-card {
    min-height: auto;
    border-radius: 28px;
}

.contact-hero + .section-band .publication-content {
    padding: 34px;
}

.contact-hero + .section-band .publication-content h3 {
    font-size: 28px;
}

.contact-hero + .section-band .publication-content p {
    font-size: 17px;
    line-height: 1.8;
}

/* FORM WRAP — FULL WIDTH */

.contact-form-wrap {
    width: 100% !important;
    max-width: 1600px !important;

    padding: 75px !important;

    border-radius: 34px;

    background: rgba(255,255,255,0.84);

    border: 1px solid rgba(140,180,255,0.22);

    box-shadow:
        0 30px 80px rgba(50,80,150,0.12),
        0 10px 30px rgba(80,120,220,0.08);
}

/* TITLES */

.contact-form-wrap h2 {
    font-size: 50px;
    margin-bottom: 18px;
}

.contact-form-wrap p {
    font-size: 20px;
    margin-bottom: 42px;
}

/* FORM */

.contact-form {
    gap: 24px;
}

/* TWO COLUMN LAYOUT */

@media (min-width: 900px) {
    .contact-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-form textarea,
    .contact-form button,
    .contact-form .honeypot {
        grid-column: span 2;
    }
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
    padding: 20px 22px;
    font-size: 17px;
    border-radius: 18px;
}

.contact-form textarea {
    min-height: 340px;
    resize: vertical;
}

/* BUTTON */

.contact-form button {
    margin-top: 10px;
    min-width: 340px;
    justify-self: center;
    padding: 20px 36px;
    font-size: 17px;
}

/* FLASH */

.flash-box {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 35px;
    font-size: 17px;
}

/* MOBILE */

@media (max-width: 768px) {

    .contact-hero {
        min-height: auto !important;
        padding: 28px 16px 18px !important;
    }

    .contact-hero h1 {
        font-size: 34px !important;
        letter-spacing: 2px;
    }

    .contact-hero .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .contact-hero + .section-band .band-inner {
        max-width: 100% !important;
        padding: 0 14px !important;
    }

    .contact-hero + .section-band .publication-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .india-block {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .contact-form-wrap {
        padding: 28px !important;
        max-width: 100% !important;
        border-radius: 24px;
    }

    .contact-form-wrap h2 {
        font-size: 30px;
    }

    .contact-form-wrap p {
        font-size: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 16px 16px;
    }

    .contact-form textarea {
        min-height: 220px;
    }

    .contact-form button {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 28px !important;
    }

    .contact-form-wrap h2 {
        font-size: 26px;
    }
}