
body{
    font-family: "Lato", sans-serif;
    overflow-x:hidden;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomOut 1.5s ease forwards;
}

@keyframes zoomOut{
    from{transform:scale(1.1);}
    to{transform:scale(1);}
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.6),
        rgba(6,41,88,.6),
        #041c3d
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    color:white;
    padding:20px;
}

.badge{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    margin-bottom:25px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    line-height:1.8;
}

.hero-buttons{
    margin-top:40px;
}

.btn-primary{
    background:#F01E00;
    color:white;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    display:inline-block;
    transition:.3s;
}

.btn-primary:hover{
    background:#cc1a00;
}

.btn-secondary{
    padding:16px 30px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.3);
    background:rgba(255,255,255,.1);
    color:white;
    margin-left:10px;
    cursor:pointer;
}

/* ABOUT */

.about-section{
    padding:120px 0;
}

.intro{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.section-tag{
    color:#F01E00;
    font-weight:bold;
    text-transform:uppercase;
}

.intro h2{
    margin-top:20px;
    font-size:3rem;
    color:#062958;
}

.intro p{
    margin-top:30px;
    line-height:1.8;
    color:#666;
}

/* Mission */

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:80px;
}

.card{
    padding:40px;
    border-radius:25px;
    background:#f7f7f7;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.dark{
    background:#062958;
    color:white;
}

.pill{
    padding:10px 18px;
    border-radius:30px;
    color:white;
    display:inline-block;
}

.blue{
    background:#062958;
}

.red{
    background:#F01E00;
}

/* Features */

.features-section{
    margin-top:120px;
}

.section-heading{
    text-align:center;
}

.section-heading h3{
    font-size:3rem;
    color:#062958;
}

.features-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-card{
    padding:30px;
    border-radius:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.number{
    width:60px;
    height:60px;
    background:#062958;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    font-weight:bold;
}

/* CTA */

.cta{
    margin-top:120px;
    background:linear-gradient(90deg,#062958,#041c3d);
    color:white;
    text-align:center;
    padding:80px 40px;
    border-radius:35px;
}

.cta h3{
    font-size:3rem;
}

.cta p{
    max-width:800px;
    margin:25px auto;
    line-height:1.8;
}

@media(max-width:992px){

    .mission-grid,
    .features-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .intro h2,
    .section-heading h3,
    .cta h3{
        font-size:2rem;
    }
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* bg-black/60 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.hero-content {
    text-align: center;
    max-width: 48rem; /* max-w-3xl */
}

/* Badge styling with glassmorphism blur effect */
.badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 9999px;
    backdrop-filter: blur(4px); /* backdrop-blur */
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-description {
    color: #e5e7eb; /* text-gray-200 */
    font-size: 0.875rem;
    line-height: 1.5;
}

/* CONTENT SECTION */
.content-section {
    width: 100%;
    max-width: 72rem; /* max-w-6xl */
    margin: 0 auto;
    padding: 3rem 1rem; /* py-12 px-4 */
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

/* Response Grid Design Pattern */
.campus-grid {
    display: grid;
    gap: 1.5rem;
}

.campus-card {
    background-color: #ffffff;
    border-radius: 1rem; /* rounded-2xl */
    padding: 1.5rem;
    border: 1px solid #f3f4f6; /* border-gray-100 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); /* shadow-md */
    transition: transform 0.2s, box-shadow 0.2s;
}

.campus-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); /* hover:shadow-xl */
}

.campus-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827; /* text-gray-900 */
    margin-bottom: 0.5rem;
}

.campus-address {
    color: #4b5563; /* text-gray-600 */
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.campus-details {
    font-size: 0.875rem;
    color: #6b7280; /* text-gray-500 */
}

.campus-details p {
    margin-bottom: 0.25rem;
}

.label {
    font-weight: 500;
    color: #374151; /* text-gray-700 */
}

.btn-directions {
    margin-top: 1rem;
    width: 100%;
    background-color: #062958;
    color: #ffffff;
    padding: 0.5rem 0;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-directions:hover {
    background-color: #1d4ed8; /* hover:bg-blue-700 */
}

/* FLOATING CHAT BUTTON */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #062958;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.floating-btn:hover {
    transform: scale(1.05);
}

.chat-icon {
    font-size: 1.5rem;
}

/* Media Queries for Large Displays */
@media (min-width: 768px) {
    .hero-section { height: 70vh; }
    .hero-title { font-size: 3rem; }
    .hero-description { font-size: 1.125rem; }
    .content-section { padding: 4rem 1rem; }
    .section-title { font-size: 1.875rem; }
    .campus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .campus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.bg-gray-light { background-color: #f9fafb; }
.text-navy { color: #062958; }
.shadow-deep { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* HERO SECTION ATOMIC LOGIC */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Framer motion mimic entry animations native CSS keyframes */
.animate-scale-down {
    animation: scaleDownEffect 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleDownEffect {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 41, 88, 0.8) 0%, rgba(6, 41, 88, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-block;
    background-color: #f01e00;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(240, 30, 0, 0.3);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    max-width: 52rem;
}

.hero-lead {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #e5e7eb;
    max-width: 42rem;
}

/* CONTAINER LAYOUT */
.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.podcast-section, .gallery-section {
    padding: 5rem 0;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f01e00;
}

.section-title {
    margin-top: 0.75rem;
    font-size: 1.875rem;
    font-weight: 900;
}

.section-lead {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* PODCAST INTERACTIVE SECTION DYNAMICS */
.podcast-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.episode-row-btn {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.episode-row-btn:hover {
    border-color: #062958;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Dynamic State Bindings via JS target flags instead of component rebuilding */
.episode-row-btn[data-active="true"] {
    background-color: #062958;
    border-color: #f01e00;
    color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(6, 41, 88, 0.25);
}

.episode-btn-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.episode-number-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    margin-bottom: 1rem;
    background-color: #062958;
    color: #ffffff;
}

.episode-row-btn[data-active="true"] .episode-number-tag {
    background-color: #f01e00;
}

.episode-row-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.episode-row-desc {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
}

.episode-row-btn[data-active="true"] .episode-row-desc {
    color: #e5e7eb;
}

.episode-row-duration {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

/* IMMERSIVE COMPONENT IMMERSION PLAYER */
.active-player-panel {
    background-color: #062958;
    border-radius: 2rem;
    padding: 1.5rem;
    color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.player-live-badge {
    display: inline-block;
    background-color: #f01e00;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
}

.player-title {
    margin-top: 1.25rem;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.25;
}

.player-desc {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #e5e7eb;
}

.video-frame {
    margin-top: 2.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-frame video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.meta-cards-row {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.player-meta-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    border-radius: 1rem;
    transition: transform 0.2s;
}

.player-meta-card:hover {
    transform: translateY(-4px);
}

.meta-card-label {
    font-size: 0.875rem;
    color: #d1d5db;
}

.meta-card-value {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

/* MODERN TABS AND VISIBILITY SWITCHES */
.gallery-tabs-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.tab-toggle-btn {
    background-color: #ffffff;
    color: #062958;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-toggle-btn:hover {
    border-color: #062958;
}

.tab-toggle-btn[data-tab-active="true"] {
    background-color: #f01e00;
    border-color: #f01e00;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(240, 30, 0, 0.25);
}

/* GALLERY STRUCTURAL CARD DESIGNS */
.gallery-group-wrapper {
    display: none;
}

.gallery-group-wrapper[data-visible="true"] {
    display: block;
}

.responsive-gallery-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gallery-item-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-card:hover {
    transform: translateY(-10px);
}

.card-img-overflow {
    overflow: hidden;
}

.card-img-overflow img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.gallery-item-card:hover .card-img-overflow img {
    transform: scale(1.1);
}

.gallery-card-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 1;
}

.gallery-card-hover-details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    width: 100%;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Replicate target interactions using semantic hover modifiers safely */
.gallery-item-card:hover .gallery-card-hover-details {
    transform: translateY(0);
    opacity: 1;
}

.hover-badge-tag {
    display: inline-block;
    background-color: #f01e00;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

.hover-card-title {
    margin-top: 1rem;
    font-size: 1.875rem;
    font-weight: 900;
    color: #ffffff;
}

.hover-card-desc {
    margin-top: 0.75rem;
    color: #e5e7eb;
    font-size: 0.95rem;
    max-width: 28rem;
    line-height: 1.5;
}

/* FLOATING INTERACTION ACTIONS */
.global-fab-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #062958;
    color: #ffffff;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform 0.2s;
}

.global-fab-btn:hover { transform: scale(1.05); }

/* RESPONSIVE DESIGN VIEWPORT LAYOUT BREAKPOINTS */
@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }
    .video-frame video { height: 420px; }
    .meta-cards-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .responsive-gallery-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
    .section-title { font-size: 3rem; }
    .podcast-layout-grid { grid-template-columns: 360px 1fr; }
    .active-player-panel { padding: 2.5rem; }
    .video-frame video { height: 500px; }
}

.container-max {
    width: 100%;
    max-width: 80rem; /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.bg-red { background-color: #f01e00; }
.text-red { color: #f01e00; }
.text-navy { color: #062958; }

/* HERO SECTIONS SUB-COMPONENTS */
.hero-sub-frame {
    position: relative;
    height: 60vh;
    min-height: 320px;
    width: 100%;
    overflow: hidden;
}

.hero-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-navy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 41, 88, 0.8) 0%, rgba(6, 41, 88, 0.45) 50%, rgba(6, 41, 88, 0.2) 100%);
}

.hero-content {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;

    text-align: center;      /* add */
    display: flex;           /* add */
    flex-direction: column;  /* add */
    align-items: center;     /* add */
}

.hero-content {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.badge-pill {
    display: inline-block;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-description {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #e5e7eb;
    max-width: 42rem;
}

/* SPLIT GRAPHICS CONTENT MAPPING */
.split-content-frame {
    padding: 4rem 0;
}

.grid-two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.tracking-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-lead {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

/* NATIVE HOVER ACCORDION PATTERNS */
.accordion-box {
    margin-top: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    overflow: hidden;
}

.accordion-row {
    border-b: 1px solid #e5e7eb;
}

.accordion-row:last-child {
    border-bottom: none;
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background-color 0.2s;
}

.accordion-trigger::-webkit-details-marker {
    display: none; /* Hide default iOS/Safari triangle indicators */
}

.accordion-trigger:hover {
    background-color: #f9fafb;
}

.trigger-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-num {
    display: flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    background-color: #062958;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.trigger-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.chevron-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #062958;
    transition: transform 0.3s ease;
}

/* Rotate indicator cleanly when detail is evaluated open */
.accordion-row[open] .chevron-icon {
    transform: rotate(-180deg);
}

.accordion-content {
    padding: 0 1.5rem 1.5rem 5.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

/* ACTION ROUTING RED BUTTONS */
.action-row-btn {
    margin-top: 2rem;
}

.btn-primary-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f01e00;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary-red:hover {
    transform: translateY(-4px);
    background-color: #b91c1c;
}

/* IMAGE GRAPHIC BOX AND FLOATING STATISTICAL BADGES */
.image-col {
    position: relative;
    width: 100%;
}

.image-wrapper-frame {
    position: relative;
    width: 100%;
    min-height: 380px;
    height: 100%;
}

.showcase-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 2rem;
    display: block;
}

.image-bottom-gradient {
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
}

.floating-accent-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
}

.accent-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.accent-value {
    margin-top: 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #062958;
}

/* CONDITIONAL GLOBAL FLOATING ACTION TRIGGERS */
.fab-circle-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #062958;
    color: #ffffff;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.chatbot-hidden { display: none; }
.chatbot-visible { display: block; }

/* MOTION FRAMEWORK REPLICATIONS USING CSS SCROLL INTERSECTIONS */
.reveal-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up { transform: translateY(40px); }
.scale-in { transform: scale(0.95); }
.img-zoom { transform: scale(1.1); transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease; }

/* Entry Triggers explicitly handled via local observer injectors */
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* MEDIA QUERY SCREEN RESPONSIVENESS VIEWPORTS BREAKPOINTS */
@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }
    .hero-description { font-size: 1.125rem; }
    .trigger-title { font-size: 1.125rem; }
}

@media (min-width: 1024px) {
    .hero-sub-frame { height: 60vh; }
    .hero-title { font-size: 4.5rem; }
    .split-content-frame { padding: 5rem 0; }
    .grid-two-cols { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
    .grid-two-cols.grid-reverse .content-col { order: 2; }
    .grid-two-cols.grid-reverse .image-col { order: 1; }
    .section-heading { font-size: 3rem; }
}


/* ==========================================
   ABOUT PAGE - TAILWIND CONVERSION
========================================== */

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: #ffffff;
}

.mission-vision-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}

.mission-vision-title {
    font-size: 3rem;
    line-height: 1.1;
    color: #111827;
    font-weight: 700;
}

.mission-vision-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #062958;
}

.stat-label {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #64748b;
}

/* Why Choose LISTEC */
.why-section {
    padding: 6rem 0;
}

.why-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.why-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
}

.why-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-item-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #111827;
}

.why-item-desc {
    color: #475569;
    max-width: 32rem;
    line-height: 1.8;
}

.why-item-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 0.75rem;
}

/* Large CTA Banner */
.cta-banner {
    position: relative;
    height: 500px;
}

.cta-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 71, 161, 0.8);
}

.cta-banner-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.cta-banner-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: white;
}

.cta-banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-banner-text {
    max-width: 40rem;
    font-size: 1.125rem;
    color: rgba(255,255,255,.9);
}

.cta-banner-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #D32F2F;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: 0.3s;
}

.cta-banner-btn:hover {
    background: #b91c1c;
}

/* Responsive */
@media (min-width: 768px) {

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mission-vision-title,
    .why-title,
    .cta-banner-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {

    .mission-vision-grid,
    .why-item {
        grid-template-columns: repeat(2, 1fr);
    }
}