:root {
    --teal: #4cabb8;
    --navy: #1a4354;
    --teal-light: #f4fbfc;
    --border-light: #e1eff2;
}

.text-teal {
    color: var(--teal) !important;
}

.text-navy {
    color: var(--navy) !important;
}

/* ==========================================================================
   1. HERO SECTION & SWIPER SLIDER
   ========================================================================== */
#hero.testimonials {
    min-height: clamp(480px, 65vh, 620px);
    height: auto;
    padding: clamp(35px, 6vw, 60px) 0 !important;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#hero .testimonials-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: brightness(0.85);
}

#hero .testimonials-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 27, 0.4) 0%, rgba(26, 67, 84, 0.75) 100%);
    pointer-events: none;
}

.home-swiper {
    width: 100%;
    z-index: 5;
    margin-bottom: clamp(15px, 3vw, 25px);
}

.testimonial-item {
    text-align: center;
    color: #ffffff;
    padding: 10px 15px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item h1 {
    font-size: clamp(1.45rem, 3.5vw + 0.4rem, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(8px, 1.8vw, 16px);
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.testimonial-item p {
    font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.15rem);
    line-height: 1.5;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto clamp(14px, 2vw, 22px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.btn-get-started {
    background: var(--teal);
    color: #ffffff !important;
    padding: clamp(10px, 1.8vw, 13px) clamp(20px, 3vw, 30px);
    border-radius: 8px;
    font-weight: 700;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(76, 171, 184, 0.3);
    border: 1px solid transparent;
}

.btn-get-started:hover {
    background: #ffffff;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.swiper-pagination {
    position: relative !important;
    margin-top: 10px;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.5;
    transition: all 0.3s ease;
    width: 9px;
    height: 9px;
}

.swiper-pagination-bullet-active {
    background: var(--teal) !important;
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

/* Glassmorphic Search Overlay */
.search-form-overlay {
    position: relative;
    z-index: 10;
    max-width: 760px;
    width: 100%;
    margin: clamp(10px, 2vw, 20px) auto 0;
    padding: clamp(14px, 2.5vw, 22px) clamp(16px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.search-header p {
    color: #ffffff;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-bar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.custom-search-input {
    width: 100%;
    height: clamp(46px, 5.5vw, 54px);
    padding: 0 clamp(48px, 6vw, 60px) 0 clamp(16px, 2.5vw, 24px) !important;
    border-radius: 30px !important;
    border: 2px solid transparent !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #1a4354 !important;
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.custom-search-input:focus {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 4px rgba(76, 171, 184, 0.25), 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    background: #ffffff !important;
}

.custom-search-input::placeholder {
    color: #7b8e96;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    text-overflow: ellipsis;
}

.search-btn-inside {
    position: absolute;
    right: 7px;
    width: clamp(34px, 4.2vw, 42px);
    height: clamp(34px, 4.2vw, 42px);
    background: var(--teal);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    box-shadow: 0 3px 10px rgba(76, 171, 184, 0.35);
}

.search-btn-inside:hover {
    background: var(--navy);
    transform: scale(1.06);
}

/* ==========================================================================
   2. ABOUT SECTION
   ========================================================================== */
.home-about {
    background: #ffffff;
    padding: clamp(40px, 6vw, 70px) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.about-watermark {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: clamp(6rem, 18vw, 18rem);
    color: #fbfbfb;
    font-weight: 900;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    max-width: 100vw;
    overflow: hidden;
}

.home-layer {
    position: relative;
    z-index: 1;
}

.about-copy {
    padding-right: clamp(0px, 3vw, 40px);
}

.about-header {
    margin-bottom: clamp(18px, 3vw, 25px);
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.kicker-line {
    width: 36px;
    height: 2px;
    background: var(--teal);
}

.kicker-text,
.objective-kicker {
    color: var(--teal);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: clamp(1.4rem, 2.5vw + 0.5rem, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.8px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(15px, 2.5vw, 25px);
    margin-bottom: clamp(20px, 3vw, 35px);
}

.highlight-card {
    padding-left: 16px;
}

.highlight-teal {
    border-left: 3px solid var(--teal);
}

.highlight-navy {
    border-left: 3px solid var(--navy);
}

.highlight-card h4,
.service-card h4 {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.highlight-card p {
    color: #666666;
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0;
}

.about-cta {
    background: #f4fbfc;
    border: 1px solid #e1f0f2;
    border-radius: 14px;
    padding: clamp(16px, 2.5vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.about-cta h4 {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-cta p {
    color: #555555;
    font-size: 0.88rem;
    margin: 0;
}

.join-link {
    background: var(--teal);
    color: #ffffff !important;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(76, 171, 184, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.join-link:hover {
    background: var(--navy);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.video-card {
    position: relative;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e6eff2;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(26, 67, 84, 0.08);
    max-width: 420px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    padding: 10px 0 4px;
    text-align: center;
}

.video-caption span {
    font-size: 0.72rem;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.caption-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
}

/* ==========================================================================
   3. RESEARCH TAXONOMY & STATS
   ========================================================================== */
.stats-taxonomy {
    background: var(--navy);
    padding: clamp(35px, 5vw, 55px) 0;
    position: relative;
    overflow: hidden;
}

.stats-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(76, 171, 184, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.stats-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(16px, 2.5vw, 25px);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 12px;
}

.stats-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stats-accent {
    width: 3px;
    height: 24px;
    background: var(--teal);
}

.stats-title-wrap h2 {
    font-size: clamp(1.3rem, 2.2vw + 0.3rem, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.stats-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 12px;
}

.stats-index {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
}

.stats-index i {
    margin-right: 6px;
    color: var(--teal);
}

.taxonomy-grid {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
}

.taxonomy-col {
    border: 0.5px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
}

.taxonomy-col:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.taxonomy-link {
    display: flex;
    align-items: center;
    padding: clamp(14px, 2.5vw, 22px) clamp(12px, 2vw, 18px);
    text-decoration: none;
    gap: clamp(10px, 1.8vw, 14px);
    width: 100%;
}

.taxonomy-icon {
    width: clamp(32px, 4vw, 40px);
    height: clamp(32px, 4vw, 40px);
    border-radius: 8px;
    background: rgba(76, 171, 184, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.taxonomy-col:hover .taxonomy-icon {
    transform: scale(1.08);
    background: var(--teal);
}

.taxonomy-icon i {
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    color: var(--teal);
    transition: color 0.25s ease;
}

.taxonomy-col:hover .taxonomy-icon i {
    color: #ffffff;
}

.taxonomy-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.taxonomy-count {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.taxonomy-label {
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* ==========================================================================
   4. FEATURED SERVICES (WHY VIDWAN)
   ========================================================================== */
.featured-home-services {
    background: #ffffff;
    padding: clamp(45px, 6vw, 70px) 0;
    position: relative;
}

.section-intro {
    margin-bottom: clamp(25px, 4vw, 45px);
    text-align: left;
    max-width: 680px;
}

.section-intro h2 {
    font-size: clamp(1.4rem, 2.5vw + 0.4rem, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.6px;
}

.section-intro p {
    margin-top: 10px;
    color: #667e85;
    font-size: clamp(0.9rem, 1.2vw, 0.98rem);
    line-height: 1.6;
}

.service-card {
    height: 100%;
    transition: all 0.3s ease;
    border-top: 3px solid #eef3f5;
    padding-top: 22px;
    background: #ffffff;
}

.service-card-teal:hover {
    border-top-color: var(--teal);
    transform: translateY(-4px);
}

.service-card-navy:hover {
    border-top-color: var(--navy);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.service-card h4 {
    margin-bottom: 10px;
}

.service-card p {
    color: #667e85;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   5. PRODUCTS UNDER VIDWAN
   ========================================================================== */
.product-highlights {
    background: #f4fbfc;
    padding: clamp(45px, 6vw, 70px) 0;
    border-top: 1px solid #e1eff2;
    border-bottom: 1px solid #e1eff2;
    position: relative;
    overflow: hidden;
}

.product-card {
    border-radius: 16px;
    padding: 0;
    background: #ffffff;
    border: 1px solid #dceef0;
    box-shadow: 0 12px 32px rgba(26, 67, 84, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
}

.product-card:hover {
    border-color: rgba(76, 171, 184, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(26, 67, 84, 0.12);
}

.product-card-head {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 2.5vw, 24px);
    background: linear-gradient(135deg, #f4fbfc 0%, #ffffff 100%);
    border-bottom: 1px solid #e6f4f6;
}

.product-card-icon {
    width: 100%;
    height: 95px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e6f4f6;
    box-shadow: 0 6px 18px rgba(26, 67, 84, 0.05);
    padding: 12px 18px;
}

.product-card-icon img {
    max-width: 220px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-card-title {
    padding: 16px 20px 0;
}

.product-card h4 {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 3px;
}

.product-card-title span {
    display: block;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-card p {
    color: #5f6b78;
    line-height: 1.6;
    margin: 0;
    padding: 12px 20px 0;
    font-size: 0.88rem;
    flex: 1;
}

.product-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    margin: 16px 20px 20px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(76, 171, 184, 0.1);
    border: 1px solid rgba(76, 171, 184, 0.2);
    transition: all 0.25s ease;
}

.product-more-link i {
    color: var(--teal);
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.product-more-link:hover {
    color: #ffffff;
    background: var(--teal);
    border-color: var(--teal);
}

.product-more-link:hover i {
    color: #ffffff;
    transform: translateX(3px);
}

/* ==========================================================================
   6. BROCHURE DOWNLOAD SECTION
   ========================================================================== */
.brochure-section {
    background: #ffffff;
    padding: clamp(45px, 6vw, 65px) 0;
    position: relative;
}

.brochure-panel {
    background: linear-gradient(135deg, var(--navy) 0%, #2c5e74 100%);
    border-radius: 20px;
    padding: clamp(24px, 4vw, 42px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(26, 67, 84, 0.15);
}

.brochure-watermark {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(80px, 15vw, 150px);
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

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

.brochure-panel h3 {
    font-size: clamp(1.4rem, 2.2vw + 0.3rem, 1.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.brochure-panel p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.download-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lang-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lang-label {
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--teal);
    padding-left: 10px;
}

.button-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-download-compact {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}

.btn-download-compact.en:hover {
    background: #ffffff;
    color: var(--navy) !important;
    transform: translateY(-2px);
}

.btn-download-compact.hi:hover {
    background: var(--teal);
    color: #ffffff !important;
    border-color: var(--teal);
    transform: translateY(-2px);
}

/* ==========================================================================
   7. INSTITUTIONAL EXCELLENCE
   ========================================================================== */
.institution-section {
    background: #f4fbfc;
    padding: clamp(45px, 6vw, 65px) 0;
    border-top: 1px solid #e1eff2;
}

.institution-intro {
    border-left: 4px solid var(--teal);
    padding-left: clamp(14px, 2.5vw, 24px);
}

.institution-intro h2 {
    font-size: clamp(1.4rem, 2.5vw + 0.3rem, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.6px;
}

.institution-intro p {
    color: #667e85;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.network-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.88rem;
    box-shadow: 0 4px 12px rgba(26, 67, 84, 0.2);
}

.network-link:hover {
    background: var(--teal);
    transform: translateX(4px);
}

.org-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: clamp(16px, 3vw, 28px);
    border: 1px solid #dceef0;
    box-shadow: 0 12px 30px rgba(76, 171, 184, 0.06);
}

.org-tile-ux {
    text-decoration: none;
    display: block;
    padding: clamp(10px, 1.8vw, 14px);
    border-radius: 10px;
    border: 1px solid #f0f7f8;
    background: #fdfdfe;
    transition: all 0.25s ease;
    position: relative;
    height: 100%;
}

.org-tile-ux:hover {
    background: #ffffff !important;
    border-color: var(--teal) !important;
    box-shadow: 0 6px 18px rgba(76, 171, 184, 0.15);
    transform: translateY(-2px);
}

.ux-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    color: var(--teal);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.org-tile-ux:hover .ux-arrow {
    opacity: 1;
}

.org-count-wrap {
    margin-bottom: 4px;
}

.org-count {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.org-count-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    margin-left: 2px;
}

.org-label-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.org-label-wrap i {
    color: var(--teal);
    font-size: 0.78rem;
    flex-shrink: 0;
}

.org-label-wrap div {
    font-size: clamp(0.72rem, 1vw, 0.78rem);
    font-weight: 600;
    color: #667e85;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   8. PLATFORM OBJECTIVES
   ========================================================================== */
.platform-objectives {
    background-color: #ffffff;
}

.objective-heading {
    font-size: clamp(1.35rem, 2.2vw + 0.3rem, 1.8rem);
    letter-spacing: -0.6px;
}

.outline-number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26, 67, 84, 0.2);
    transition: all 0.3s ease;
    font-family: "Arial Black", sans-serif;
}

.icon-circle {
    width: clamp(38px, 5vw, 46px);
    height: clamp(38px, 5vw, 46px);
    border-radius: 50%;
    background-color: #f4fbfc;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.objective-row {
    transition: background 0.3s ease, padding 0.3s ease;
    position: relative;
}

.row-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(76, 171, 184, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.objective-row:hover .row-bg-overlay {
    opacity: 1;
}

.objective-row:hover .outline-number {
    -webkit-text-stroke: 1.5px var(--teal);
    color: rgba(76, 171, 184, 0.1);
}

.objective-row:hover .icon-circle {
    background-color: var(--teal);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(76, 171, 184, 0.3);
}

.objective-row:hover .row-title {
    color: var(--teal) !important;
}

.row-desc {
    font-size: clamp(0.85rem, 1.2vw, 0.92rem);
    line-height: 1.6;
}

/* ==========================================================================
   9. MEDIA QUERY RESPONSIVENESS (BREAKPOINTS)
   ========================================================================== */

/* Large Tablets & Small Laptops (< 992px) */
@media (max-width: 991px) {
    .button-flex {
        justify-content: flex-start;
    }

    .lang-label {
        border-left: 3px solid var(--teal);
    }
}

/* Mobile & Portrait Tablets (< 768px) */
@media (max-width: 767px) {
    .about-copy {
        padding-right: 0;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta .join-link {
        width: 100%;
    }

    .stats-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-subtitle {
        border-left: 0;
        padding-left: 0;
        margin-top: 4px;
        display: block;
    }

    .objective-row {
        padding: 16px 4px !important;
    }

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

/* Small phones (< 480px) */
@media (max-width: 480px) {
    .search-form-overlay {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .taxonomy-link {
        padding: 12px 8px;
        gap: 8px;
    }

    .taxonomy-icon {
        width: 32px;
        height: 32px;
    }

    .org-tile-ux {
        padding: 8px 6px;
    }

    .org-count {
        font-size: 1rem;
    }

    .btn-download-compact {
        width: 100%;
        justify-content: center;
    }
}