/*** Hero Banner **/
.hero {
    position: relative;
    background-size: contain;
    background-position: top ;
    background-repeat: no-repeat;

    /* 1. FORCE THE HEIGHT: Adjust 60vh (60% of screen height) higher or lower as needed */
    height: 30vh;
    min-height: 400px;
    /* Keeps it from collapsing too small on mobile */

    /* Optional: display flex to help center or align children if needed */
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.2); */
    /* Subtle dark overlay to make text pop */
    z-index: 1;
}

.hero-content {
    position: absolute;
    /* 2. Allows the box to float freely over the background */
    z-index: 2;
    /* Sits above the dark overlay */

    /* Positioning values */
    left: 2rem;
    bottom: 2rem;
    font-family: 'Raleway', sans-serif !important;
    /* Sizing */
    width: fit-content;
    max-width: 35%;
    padding: 1.2rem 2.5rem;
   
    /* Styling from your image */
    /* background: rgba(226, 226, 214, 0.15); */
    /* Tinted transparent background */
    border-radius: 5rem;
    /* Large radius creates the pill shape in your image */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* backdrop-filter: blur(8px); */
    /* Heightened blur for that frosted glass look */
    -webkit-backdrop-filter: blur(8px);
}

.hero-title {
    margin: 0;
    line-height: 1.02;
    letter-spacing: 0.3rem;
    color: #e2e2d6;
     font-size: 2.2rem !important;
    /* font-size: 50px !important; */
    /* font-weight: 600; */
    font-style:normal;
    /* font-family: 'Raleway', sans-serif !important; */
}



.language-links {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Roboto', sans-serif;
    visibility: visible;
}

.language-link {
    color: #ead26e;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    visibility: visible;
}



.language-link:hover,
.language-link.active {
    opacity: 1;
    text-decoration: underline;
}

.language-divider {
    color: rgba(234, 210, 110, 0.7);
    font-size: 0.9rem;
    line-height: 1;
}

/* Main text navigation used across the project pages */
.site-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1.1rem;
    padding: 0.9rem 1.25rem;
    background: rgba(19, 25, 15, 0.88);
    border-bottom: 1px solid rgba(234, 210, 110, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-menu a {
    color: #ead26e;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform:capitalize;
}

.site-menu a:hover,
.site-menu a:focus {
    text-decoration: underline;
}

.site-menu a[aria-current="page"] {
    color: #f9f1cc;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

html.lang-ta .site-menu,
body.lang-ta .site-menu {
     gap: 0.75rem 1.1rem;
    padding: 0.9rem 1.25rem;
}

html.lang-ta .site-menu a,
body.lang-ta .site-menu a {
    font-size: 0.78rem !important;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-transform: none;
}

html.lang-ta .site-menu .language-link,
body.lang-ta .site-menu .language-link {
    font-size: 0.78rem;
      line-height: 1.15;
}


/***Intro ***/
.intro-container {
    background-color: #cbd4c2;
    /* padding: 40px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;

}

.intro-text {
    flex: 1 1 380px;
    min-width: 320px;
    max-width: 540px;
    background: transparent;
    border-radius: 2rem;

}

.vector-art-placeholder {
    display: flex;
    align-items: right;

}

/**** Video player***/

.video-card {
    margin-top: 2.5rem;
    background: transparent;
    /* padding: 2rem; */
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-video-container {
    width: 100%;
    margin-bottom: 2rem;
    padding-top: .25rem;
    padding-bottom: 1rem;
}

.main-video-container video {
    width: 100%;
    height: auto;
    background: #000;
    border-radius: 0.75rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.video-description {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.25rem;
    justify-items: end;

}

.playlist {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.25rem;
    direction: rtl;

}

.playlist-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    width: 100%;
    background-color: transparent;
    align-items: center;
}

.playlist-item:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.playlist-item.active {
    background-color: rgba(0.1, 0, 0.1, 0.3);
    ;
}

.playlist-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    align-items: right;
}

.playlist-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #ead26e;
    display: flex;
    align-content: center;
    gap: 0.5rem;
    line-height: 1.3;
    text-align: center;
}

.playlist-item-title::before {
    font-size: 10px;
    flex-shrink: 0;

}

/* Smooth Fading Transition Gallery */
.gallery-container {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: transparent;
    /* border-radius: 6px; */
    /* overflow: hidden; */
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); */
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* Handles the slow transition */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.gallery-caption {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    padding: 12px;
    font-size: 0.9rem;
    text-align: center;
}

/*** Columns ***/
/* Map Slider Section */
.column-section {
    background-color: #bd8a60;
    /* padding: 40px; */
    /* border-radius: 8px; */
    /* margin-bottom: 50px; */
    color: #3d441f;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* gap: 30px; */
    align-items: start;
}

.column-section-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.column-section-col.text-col p {
    font-size: 0.9rem;
    line-height: 1.5;

}

.column-section-col.text-col img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: fill;
}

.column-section-col.image-col img {
    width: 100%;
    height: auto;
    max-height: max-content;
    border-radius: 6px;
    object-fit: cover;
}

/* Main Content Container */
.nature-container {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;

    background-color: #3d441f;
    padding-top: 40px;
    max-height: auto;
}

/* Left Column: Text Content */
.nature-text-col {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-top: 10px;
     padding-left: 30px;
}

.nature-paragraph {
    color: #ead26e;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}

.nature-paragraph strong {
    color: #ead26e;
    font-weight: 600;
}

.learnings-section {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.learnings-icon {
    flex-shrink: 0;
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}


.learnings-text {
    flex: 1;
}

.learnings-title {
    color: #4a9b8e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.learnings-content {
    color: #ead26e;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
}

/* Right Column: Image */
.nature-image-col {
    display: flex;
    align-items: flex-start;
    justify-content: right;
    position: relative;
}

.nature-image-col img {
    max-width: 100%;
    height: 75%;
    object-fit: contain;

}

/*** PDF download button ****/

.download-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3e4a34;
    /* Custom olive matching your project template */
    color: #ffd700;
    /* Accenting font text */
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.download-btn:hover {
    background-color: #2c351f;
    transform: translateY(-1px);
}


/**** Interactive Link ****/

.interactive-link {
    color: #3b5a2f;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.interactive-link:hover {
    color: #709461;
}

/* --- 1. RESPONSIVE DIAGRAM CONTAINER --- */
.diagram-wrapper {
    position: relative;
    display: inline-block;
    max-width: 80%;
    border-radius: 8px;
    overflow: hidden;
    align-content: end;
}

/* Essential for scaling coordinate boundaries accurately */
.diagram-image {
    display: flex;
    max-width: 100%;
    align-items: center;
    height: 50%;

}



/* --- 2. GENERIC INTERACTIVE HOTSPOT OVERLAYS --- */
.text-hotspot {
    position: absolute;
    cursor: pointer;
    border-radius: 4px;
    background-color: rgba(255, 215, 0, 0);
    /* Completely transparent by default */
    border: 2px solid transparent;
    transition: all 0.25s ease;
    font-size: 1.0rem;
}

/* Subtle indicator helper when users hover over the text targets */
.text-hotspot:hover {
    background-color: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

/** Cards ***/
.card-grid {
    display: grid;
    gap: 24px;
    align-items: start;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
}

.nature-card {
    background: #d9c47f;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    min-height: 320px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, grid-row-end 0.35s ease;
    display: grid;
    grid-template-rows: auto 1fr;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    position: relative;
}

.nature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.nature-card.active {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
    grid-row-end: span 2;
}

.card-preview {
    overflow: hidden;
}

.card-preview img {
    width: 100%;
    display: block;
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.card-title {
    color: #3d441f;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-info {
    color: #3d441f;
    font-size: 0.95rem;
    line-height: 1.7;
    max-height: 50px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.nature-card.active .card-info {
    max-height: 100%;
}

.card-meta {
    margin-top: 14px;
    color: #4a6b3b;
    font-size: 0.84rem;
    font-style: italic;
}

/* ---  EXPLICIT COORDINATES FOR THE SEED DISPERSAL ASSET ---
           Adjust these percentages safely to match positions on any size screen */
.zone-hydrochory {
    top: 4.5%;
    left: 55%;
    width: 26%;
    height: 5%;
}

.zone-zoochory {
    top: 12.5%;
    left: 25%;
    width: 22%;
    height: 5%;
}

.zone-anemochory {
    top: 44.5%;
    left: 1.5%;
    width: 30%;
    height: 5%;
}

.zone-barochory {
    top: 81.0%;
    left: 12%;
    width: 25%;
    height: 5%;
}

.zone-ballochory {
    top: 91.5%;
    left: 70%;
    width: 24%;
    height: 5%;
}



/***** Mushrooms ***/
.zone-Yellow-Stagshorn-Fungus {
    top: 11.5%;
    left: 0.5%;
    width: 9.5%;
    height: 10.5%;
}

.zone-Earthstar {
    top: 22.0%;
    left: 7.0%;
    width: 8.5%;
    height: 14.0%;
}

.zone-Rusty-Gilled-Polypore {
    top: 50.0%;
    left: 3.0%;
    width: 4.5%;
    height: 22.0%;
}

.zone-Shaggy-Parasol {
    top: 45.0%;
    left: 12.0%;
    width: 9.0%;
    height: 18.0%;
}

.zone-Blue-Pinkgill {
    top: 10.0%;
    left: 26.0%;
    width: 5.5%;
    height: 14.0%;
}

.zone-Reishi {
    top: 25.0%;
    left: 34.5%;
    width: 7.5%;
    height: 11.5%;
}

.zone-Scaly-Tangerine-Mushroom {
    top: 43.0%;
    left: 42.5%;
    width: 5.5%;
    height: 11.0%;
}

.zone-Bracket-fungi {
    top: 54.5%;
    left: 49.5%;
    width: 8.5%;
    height: 13.5%;
}

.zone-Bluegum-Woodcap {
    top: 17.5%;
    left: 54.0%;
    width: 8.5%;
    height: 10.0%;
}

.zone-Hare’s-Foot-Inkcap {
    top: 30.0%;
    left: 55.5%;
    width: 4.5%;
    height: 12.0%;
}

.zone-Termite-mushroom {
    top: 26.5%;
    left: 74.5%;
    width: 5.5%;
    height: 10.5%;
}

.zone-Pleated-Inkcap {
    top: 52.0%;
    left: 72.5%;
    width: 6.0%;
    height: 14.0%;
}

.zone-Candlesnuff-Fungus {
    top: 44.0%;
    left: 82.0%;
    width: 8.5%;
    height: 16.5%;
}

.zone-Freckled-Dapperling {
    top: 19.0%;
    left: 92.5%;
    width: 7.5%;
    height: 15.0%;
}

.zone-Termite-Inkcaps {
    top: 50.5%;
    left: 93.5%;
    width: 5%;
    height: 20.5%;
}

/***Flowers***/
/**Gingee Region**/
.zone-Kothukala {
    top: 5.0%;
    left: 51%;
    width: 13.5%;
    height: 31.5%;
}

.zone-Kodalimurikki {
    top: 5.50%;
    left: 67.0%;
    width: 15.50%;
    height: 38.00%;
}

.zone-Agil {
    top: 26.5%;
    left: 84.50%;
    width: 14%;
    height: 16.5%;
}

/**Polur Region***/
.zone-Karunthuvalisu {
    top: 68.5%;
    left: 20.5%;
    width: 24%;
    height: 28.5%;
}

.zone-Sakkaraivilvam {
    top: 55.0%;
    left: 45.5%;
    width: 16%;
    height: 38%;
}

.zone-Kanupala {
    top: 65.0%;
    left: 63.0%;
    width: 11.5%;
    height: 27.0%;
}

/***Jawadhu Region***/
.zone-PillaiMarudhu {
    top: 1.5%;
    left: 13.5%;
    width: 28.5%;
    height: 28.5%;
}

.zone-Kungiliyam {
    top: 1.5%;
    left: 44.5%;
    width: 21.0%;
    height: 21.0%;
}

.zone-Kalala {
    top: 24.5%;
    left: 44.5%;
    width: 21.0%;
    height: 20.5%;
}

.zone-Kumbathiri {
    top: 9.5%;
    left: 70.5%;
    width: 26.0%;
    height: 51.5%;
}

/**Kavuthi**/
.zone-Vekkaali {
    top: 63.5%;
    left: 12.5%;
    width: 21.0%;
    height: 22%;
}

.zone-Ebony {
    top: 74.5%;
    left: 35.5%;
    width: 23.0%;
    height: 21.5%;
}

/**Seranthangal**/
.zone-Vedippula {
    top: 50.0%;
    left: 62.5%;
    width: 21.0%;
    height: 44.0%;
}

/** Sitlingi **/
.zone-Etti {
    top: 72.0%;
    left: 14.0%;
    width: 25.5%;
    height: 24.5%;
}

/** Sathanur **/
.zone-Poovarasu {
    top: 16.5%;
    left: 20.5%;
    width: 28.5%;
    height: 28.5%;
}

/** Kalvarayan **/
.zone-Kadukai {
    top: 3.5%;
    left: 63.5%;
    width: 26.5%;
    height: 25.5%;
}


/** Fauna **/

.zone-flycatcher {
    top: 44.0%;
    left: 45.0%;
    width: 18.0%;
    height: 9.0%;
}

.zone-langurs {
    top: 22.0%;
    left: 35.0%;
    width: 15.5%;
    height: 8.5%;
}

.zone-hare {
    top: 67.0%;
    left: 45.5%;
    width: 15.0%;
    height: 10.0%;
}

.zone-scorpion {
    top: 95.0%;
    left: 15.05%;
    width: 4.0%;
    height: 3.0%;
}

.zone-treepies {
    top: 38.5%;
    left: 20.5%;
    width: 5.0%;
    height: 8.0%;
}

.zone-minivet {
    top: 48.5%;
    left: 38.5%;
    width: 3.5%;
    height: 7.0%;
}

.zone-butterfly {
    top: 89.5%;
    left: 51.0%;
    width: 10.5%;
    height: 12.0%;
}

.zone-dragonflypg1 {
    top: 75.0%;
    left: 16.5%;
    width: 6.0%;
    height: 5.5%;
}

.zone-nightjar {
    top: 92.5%;
    left: 52.0%;
    width: 14.5%;
    height: 7.0%;
}

.zone-langurmother {
    top: 13.0%;
    left: 40.5%;
    width: 18.0%;
    height: 23.5%;
}

.zone-babbler {
    top: 76.0%;
    left: 60.0%;
    width: 11.5%;
    height: 11.5%
}

/*** Birds ***/

.zone-drongobird {
    top: 35.0%;
    left: 9.5%;
    width: 8.5%;
    height: 30.0%;
}

.zone-pipit {
    top: 13.0%;
    left: 20.5%;
    width: 10.5%;
    height: 15.5%;
}

.zone-fantail {
    top: 5.5%;
    left: 73.5%;
    width: 9.5%;
    height: 21.0%;
}

.zone-wagtail {
    top: 6.5%;
    left: 103%;
    width: 12.5%;
    height: 20.0%;
}

.zone-eagle {
    top: 48.0%;
    left:87.0%;
    width: 13.0%;
    height: 22.5%;
}

.zone-shama {
    top: 61%;
    left: 120%;
    width: 14%;
    height: 30.5%;
}

.zone-hoopoe {
    top: 27.0%;
    left: 140.5%;
    width: 15.5%;
    height: 18.5%;
}




.zone-woodowl {
    top: 41.5%;
    left: 35.5%;
    width: 11.5%;
    height: 12.5%
}

.zone-drongo {
    top: 77.0%;
    left: 23.5%;
    width: 5.5%;
    height: 14.5%;
}

.zone-hawk {
    top: 48.0%;
    left: 55.0%;
    width: 10.5%;
    height: 16.0%
}

.zone-shrike {
    top: 24.5%;
    left: 63.5%;
    width: 7.5%;
    height: 9.0%;
}


.zone-redinsect {
    top: 70.0%;
    left: 55.0%;
    width: 7.0%;
    height: 6.5%;
}

.zone-beetle {
    top: 75.5%;
    left: 70.5%;
    width: 3.5%;
    height: 3.0%;
}

.zone-jackal {
    top: 73.5%;
    left: 30.0%;
    width: 12.5%;
    height: 13.5%;
}

.zone-dragonfly {
    top: 86.5%;
    left: 36.5%;
    width: 4.5%;
    height: 5.5%;
}

.zone-mantis {
    top: 65.5%;
    left: 53.5%;
    width: 6.0%;
    height: 5.5%;
}

.zone-viper {
    top: 93.0%;
    left: 33.5%;
    width: 4.0%;
    height: 4.5%;
}

.zone-centipede {
    top: 94.0%;
    left: 30.0%;
    width: 4.0%;
    height: 3.5%;
}

.zone-swallowtailbutterfly {
    top: 77.5%;
    left: 42.0%;
    width: 3.5%;
    height: 3.5%;
}

/* --- 4. GENERIC POP-UP MODAL PANEL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: #222a1a;
    /* Styled to match your project's olive theme */
    border: 2px solid #ffd700;
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    position: relative;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); */
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.6rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #ffd700;
}

.modal-title {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.modal-body {
    line-height: 1.6;
    color: #e2e7dd;
}


/**Manual Slider*/
.slider-container {
    position: relative;
    width: auto;
    margin: 0;
    overflow: hidden;
    /* border-radius: 6px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
    height: auto;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    height: auto;
    
}

.slide-caption {
    background: transparent;
    color: #3d441f;
    padding: 10px;
    text-align: center;

}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    /* background: rgba(255, 255, 255, 0.7); */
    border: none;
    padding: 0px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
    border-radius: 50%;
    background-color: transparent;
}

.slider-btn:hover {
    /* background: white; */
}

.prev-btn {
    left: 0px;
}

.next-btn {
    right: 7px;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600&display=swap');

@font-face {
    font-family: 'Korkai';
    src: url('Images/Tamil/korkai_v1_0_0_2/Korkai.ttc') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

html,
body,
body * {
    font-family: 'Roboto', sans-serif !important;

}

h1,
h2,
h3,
h4,
h5,
h6,
[class*="title"],
[class*="Title"],
[id*="title"],
[id*="Title"],
[class*="header"],
[class*="Header"],
[id*="header"],
[id*="Header"] {
    font-family: 'Raleway', sans-serif !important;
    font-size: 20px ;
    font-weight: 600 ;
}

p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 16px !important;
    max-width: 56ch;
    padding-top: 10px;
    padding-left: 30px;
    padding-bottom: 10px;
    margin-left: 30px;

}

[class*="tooltip"] {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
}

[class*="playlist-item-title"] {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

[class="site-menu"] {
    font-family: 'Raleway', sans-serif !important;
    font-size: 10px !important;
    font-weight: 400 !important;
}


[class*="gallery-caption"] [class*="slide-caption"] {
    font-family: 'Roboto', sans-serif !important;
    font-style: italic !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

/* Force Korkai when Tamil language mode is active. */
html.lang-ta,
body.lang-ta,
html.lang-ta body,
html.lang-ta body *,
body.lang-ta * {
    font-family: 'Korkai', 'Noto Sans Tamil', sans-serif !important;
    letter-spacing: 0 !important;
}

/*** image banner **/
.landscape-section {
    background-color: #3e4a34;
    color: #e2e7dd;
    display: grid;
    grid-template-columns: 2fr 0.5fr;
    margin-bottom: 40px;
}

/* --- POPUP MODALS --- */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 30%;
    top: 0;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-content img {
    width: 80%;
    height: 80%;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.modal-content p {
    padding: 20px;

}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: #333;
}

/***Hero banners ***/
.hero-landing {
    position: relative;
    display: block;
    align-items: stretch;

    margin-top: 0%;
    background-color: #021633;
}

.hero__text {
    padding: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: center;

}

.hero_img img {

    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0rem;

}

.hero__text_logo img {

    max-width: 700px;
    width: 100%;
    display: block;
    margin-left: 30px;
    padding-top: 50px;
}

.hero__text p {
    max-width: 72ch;
    width: 100%;
    display: block;
    margin: 5px;
    line-height: 1.8;
    color: #ead26e;
    font-family: 'Roboto', sans-serif;
}

.hero__text p strong {
    color: #ead26e;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.hero__image {
    position: relative;
    min-height: 100vh;
}

.hero__image::before {
    content: '';
    position: block;
    inset: 0;
    border-radius: 2rem;
    pointer-events: none;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: stretch;
    display: block;
    border-radius: 0rem;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}