/* ==========================================================================
   iPhysics.lk - New Landing Page Stylesheet (style-image.css)
   Replicating exact design layout, colors, placeholders, and structure
   ========================================================================== */

:root {
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-si: 'Noto Sans Sinhala', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Colors */
    --bg-dark-hero: #221207;
    --bg-dark-grad: linear-gradient(135deg, #1a0d05 0%, #2f170a 50%, #3f1f0e 100%);
    --bg-light: #ffffff;
    --bg-cream: #F5EAD1;
    --bg-footer: #180c05;

    /* Testimonial Carousel Palette */
    --gold-light: #FFEA8A;
    --gold-mid: #FFC700;
    --gold-dark: #FF9800;
    --bubble-fill-top: #ffffff;
    --bubble-fill-bottom: #e9e9e9;
    --title-purple: #6C63FF;
    --body-text: #3A3A3A;
    --heading-dark: #1A1A2E;
    --dot-color: #FF6A00;

    /* Accents & Text */
    --accent-orange: #ff6b00;
    --accent-orange-hover: #e56000;
    --text-yellow: #dfff00;
    --text-green: #00ff66;
    --text-gold: #ffbe3b;
    --text-dark: #1e1e1e;
    --text-muted: #555555;
    --text-light: #f5ede6;

    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 45px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 8px 25px rgba(255, 107, 0, 0.35);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.si-text {
    font-family: var(--font-si);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.en-num {
    font-family: var(--font-heading);
}

/* ==========================================================================
   Top Announcement Strip
   ========================================================================== */
.top-bar {
    background: linear-gradient(90deg, #e85d04 0%, #ff6b00 50%, #f35e05 100%);
    color: #ffffff;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-bar-left i {
    font-size: 1.1rem;
    color: #ffee00;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-socials a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #ffffff;
}

.top-socials a:hover {
    background: #ffffff;
    color: var(--accent-orange);
    transform: translateY(-2px);
}

/* ==========================================================================
   Main Navigation Bar
   ========================================================================== */
.navbar {
    background-color: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 0.55rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.logo-text {
    font-size: 1.28rem;
    font-weight: 800;
    color: #221207;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-links li a {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333333;
    position: relative;
    padding: 0.4rem 0;
}

.nav-links li a:hover {
    color: var(--accent-orange);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.btn-login {
    background: var(--accent-orange);
    color: #ffffff !important;
    padding: 0.45rem 1.35rem !important;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-orange);
}

.btn-login:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.45);
}

.btn-login::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: #170d06;
    color: #ffffff;
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* Subtle background radial glow */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating left social strip */
.floating-social-strip {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-orange);
    padding: 0.8rem 0.5rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    z-index: 20;
}

.floating-social-strip a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.25s ease;
}

.floating-social-strip a:hover {
    background: #ffffff;
    color: var(--accent-orange);
    transform: scale(1.15);
}

/* Hero Full Banner Wrapper & Slideshow */
.hero-banner-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    background: #0d0603;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1);
}

.hero-slide:first-child {
    position: relative;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    transform: scale(1.035);
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    right: 5%;
    bottom: 14%;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.85);
    cursor: pointer;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.hero-dot.active {
    width: 32px;
    border-radius: 20px;
    background: var(--accent-orange);
    border-color: #ffffff;
    box-shadow: 0 0 14px rgba(255, 107, 0, 0.85);
}

/* Action Buttons Overlaid on Banner */
.hero-buttons-overlay {
    position: absolute;
    left: 11.5%;
    bottom: 12%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    z-index: 10;
}

.btn-pill-orange {
    background: var(--accent-orange);
    color: #ffffff;
    padding: 0.5rem 2.2rem 0.5rem 0.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.02rem;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: var(--shadow-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.btn-pill-orange:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.5);
    color: #ffffff;
}

.btn-pill-white {
    background: #ffffff;
    color: #221207;
    padding: 0.5rem 2.2rem 0.5rem 0.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.02rem;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.btn-pill-white .btn-circle-icon {
    background: var(--accent-orange);
    color: #ffffff;
}

.btn-pill-white:hover {
    background: #f8f8f8;
    color: var(--accent-orange);
    transform: translateY(-3px);
}

.btn-pill-lms {
    background: linear-gradient(135deg, #00E676, #00C853);
    color: #051a0e;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.35);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-pill-lms:hover {
    background: linear-gradient(135deg, #00FF88, #00E676);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 230, 118, 0.55);
    color: #000000;
}

.card-lms-btn:hover {
    background: #00E676 !important;
    color: #031a0d !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 230, 118, 0.4);
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.section-padding {
    padding: 5.5rem 0;
}

.alt-bg {
    background-color: var(--bg-cream);
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.section-heading-si {
    font-family: var(--font-si);
    font-size: 2.4rem;
    font-weight: 800;
    color: #221207;
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.section-subheading {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   About Section (Meet Your Instructor)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 3.5rem;
}

.about-visual-group {
    display: flex;
    position: relative;
    align-items: stretch;
    margin-bottom: 2.5rem;
    padding-right: 42px;
}

/* Vertical experience banner on far left */
.exp-vertical-banner {
    background: var(--accent-orange);
    color: #ffffff;
    padding: 2.2rem 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: -6px 8px 25px rgba(249, 115, 22, 0.35);
    min-width: 68px;
    z-index: 5;
    height: 80%;
    align-self: center;
}

.exp-label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-bottom: 1.5rem;
}

.exp-years {
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1;
}

/* Overlapping Photo Collage container (increased size, transparent image card) */
.about-photo-collage {
    position: relative;
    flex: 1;
    max-width: 580px;
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    background: transparent !important;
}

/* Main Portrait image behind (transparent card without box shadow or background) */
.about-main-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.about-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0;
    margin: 0;
    border: none !important;
}

/* Classroom image overlapping on the side floating above (increased size, transparent card wrapper) */
.about-overlap-image-wrap {
    position: absolute;
    right: -36px;
    bottom: 0;
    width: 62%;
    height: 50%;
    max-width: 330px;
    z-index: 10;
    background: transparent !important;
    padding: 0;
    border: none !important;
    border-radius: 20px;
    box-shadow: none !important;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.28));
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-overlap-image-wrap:hover {
    transform: translateY(-4px) scale(1.02);
}

.about-overlap-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    padding: 0;
    margin: 0;
    border: none !important;
    background: transparent !important;
}

/* About Right Side Content & Headings */
.about-info {
    padding-left: 1rem;
}

.about-info .section-eyebrow {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #4B5563;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    display: block;
}

.about-heading-si {
    font-family: var(--font-si);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.heading-orange {
    color: var(--accent-orange);
}

.heading-silver {
    color: #9CA3AF;
    font-size: 1.65rem;
}

.bio-text-si {
    font-family: var(--font-si);
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.85rem;
    text-align: justify;
}

.about-action {
    margin-top: 2.2rem;
}

.btn-contact-now {
    background: var(--accent-orange);
    color: #ffffff;
    padding: 0.45rem 1.8rem 0.45rem 0.45rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.btn-contact-now:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
    color: #ffffff;
}

.btn-circle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    line-height: 1;
}

/* ==========================================================================
   Practical Laboratory & Lecture Hall (Grid Section)
   ========================================================================== */
.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    width: 100%;
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

.marquee-track {
    display: inline-flex;
    gap: 1.5rem;
}

.marquee-left .marquee-track {
    animation: scroll-left 40s linear infinite;
}

.marquee-right .marquee-track {
    animation: scroll-right 40s linear infinite;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

@keyframes scroll-right {
    0% { transform: translateX(calc(-50% - 0.75rem)); }
    100% { transform: translateX(0); }
}

.lab-item-card {
    background: transparent;
    border: none;
    border-radius: 14px;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    width: 320px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

.lab-item-card img.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

.lab-item-card:hover img.gallery-img {
    transform: scale(1.05);
}

/* Lightbox Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gallery-modal-close {
    position: absolute;
    top: 25px;
    right: 45px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
    color: var(--accent-orange);
}

/* ==========================================================================
   Student's Excellence & Video Placeholder Section
   ========================================================================== */
.excellence-grid,
.workflow-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
    align-items: stretch;
}

/* Workflow Left Column & Header */
.workflow-left {
    display: flex;
    flex-direction: column;
}

.workflow-header {
    margin-bottom: 0.9rem;
    text-align: left;
}

.workflow-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.workflow-title {
    font-family: var(--font-si);
    font-size: 1.65rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

/* Workflow Section Groups & Thin Rules */
.workflow-section-group {
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 0.5rem;
    margin-bottom: 0.6rem;
}

.workflow-section-last {
    border-bottom: none;
    padding-bottom: 0.1rem;
    margin-bottom: 0.9rem;
}

.workflow-heading {
    font-family: var(--font-si);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-decoration: none;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.workflow-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.workflow-bullet-list li {
    position: relative;
    padding-left: 1.2rem;
    font-family: var(--font-si);
    font-size: 0.84rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.42;
    text-align: justify;
}

/* Orange dot markers for bullet points */
.workflow-bullet-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    box-shadow: 0 0 4px rgba(255, 107, 0, 0.4);
}

/* Bottom Row inside Left Column (Mini Video + Checklist) */
.workflow-bottom-row {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 0.3rem;
}

.workflow-mini-video-box {
    width: 145px;
    height: 135px;
    border-radius: 16px;
    background-color: #dfcec9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.workflow-mini-video-box:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mini-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding-left: 3px;
}

.workflow-checklist-clean {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.workflow-checklist-clean li {
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.workflow-checklist-clean li i {
    color: var(--accent-orange);
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* Right Column: Full-Height Mauve Panel */
.workflow-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.workflow-large-video-box {
    background-color: #b59e9a;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 420px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-large-video-box:hover .play-circle-main {
    transform: scale(1.1);
    color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.play-circle-main {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    padding-left: 5px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}

.features-list li {
    font-family: var(--font-si);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.features-list li i {
    color: var(--accent-orange);
    font-size: 1.4rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.excellence-sub-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.mini-video-placeholder {
    background: #f1f5f9;
    border: 2px dashed #94a3b8;
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.mini-play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.mini-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
}

/* Main Video Placeholder Box */
.main-video-box {
    width: 100%;
    aspect-ratio: 16 / 11;
    background-color: #a39994;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
    padding: 2rem;
    text-align: center;
}

.play-circle-main {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ffffff;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-circle-main:hover {
    transform: scale(1.1);
    color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.main-video-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Class Timetable Section (Notched-Corner Gradient Card Grid)
   ========================================================================== */
.timetable-section {
    background-color: #ffffff;
    padding: 70px 0;
    width: 100%;
}

.timetable-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.timetable-heading-main {
    font-family: 'Noto Sans Sinhala', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #1A1A2E;
    line-height: 1.3;
    margin-bottom: 8px;
}

.timetable-heading-main .bold-parenthetical {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.timetable-subtitle-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #1A1A2E;
    line-height: 1.4;
}

.notched-timetable-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

/* Color Themes */
.timetable-card.theme-green   { --grad-from: #9BEA4D; --grad-to: #258144; --accent: #E2FF38; }
.timetable-card.theme-teal    { --grad-from: #2BE2CB; --grad-to: #0B8D7B; --accent: #32EEDB; }
.timetable-card.theme-emerald { --grad-from: #4EE892; --grad-to: #158E66; --accent: #FFFFFF; }
.timetable-card.theme-blue    { --grad-from: #6EB2E5; --grad-to: #186D8D; --accent: #FFFFFF; }

/* Outer Card Base (Full Rounded Rectangle with Diagonal Gradient & 3D Bevel) */
.timetable-card {
    position: relative;
    padding: 12px 12px 14px 12px;
    background: linear-gradient(135deg, var(--grad-from), var(--grad-to));
    border-radius: 38px;
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.26),
        inset 0 2px 4px rgba(255, 255, 255, 0.75),
        inset 0 -5px 8px rgba(0, 0, 0, 0.38);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.timetable-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 26px 52px rgba(0, 0, 0, 0.34),
        inset 0 2px 4px rgba(255, 255, 255, 0.85),
        inset 0 -5px 8px rgba(0, 0, 0, 0.42);
}

/* Icon sitting on the exposed outer card layer at top right (inside the deeper, softer notch) */
.card-icon {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.96;
    color: #ffffff;
    pointer-events: none;
    z-index: 5;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.8;
}

/* Inner Raised Plate (Upper card with deep, soft-edged top-right concave cut) */
.card-inner-plate {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.16) 55%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(16px);
    border-radius: 34px;
    padding: 20px 18px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    border-left: 1.5px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(0, 0, 0, 0.28);
    box-shadow:
        inset 0 4px 6px rgba(255, 255, 255, 0.95),
        inset 4px 0 6px rgba(255, 255, 255, 0.75),
        inset 0 -5px 10px rgba(0, 0, 0, 0.35),
        inset -4px 0 8px rgba(0, 0, 0, 0.2);
    -webkit-mask-image: radial-gradient(circle 106px at 100% 0%, transparent 95%, #000 100%);
    mask-image: radial-gradient(circle 106px at 100% 0%, transparent 95%, #000 100%);
    filter: drop-shadow(-5px 12px 22px rgba(0, 0, 0, 0.32)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
}

/* Top Row inside plate: Badge */
.plate-top-row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
}

.batch-badge {
    display: inline-block;
    background: linear-gradient(180deg, #FFFFFF 0%, #C4F4E8 100%);
    color: #065043;
    padding: 9px 26px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.18),
        inset 0 2px 3px rgba(255, 255, 255, 1),
        inset 0 -3px 4px rgba(0, 0, 0, 0.12);
}

/* Text Hierarchy inside card */
.class-type {
    font-family: 'Poppins', 'Noto Sans Sinhala', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3px;
    line-height: 1.25;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

.class-type .sinhala {
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.class-mode {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 11px;
    opacity: 0.95;
}

.divider {
    border: none;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.45);
    width: 86%;
    margin: 0 auto 11px;
}

.class-day {
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-weight: 800;
    font-size: 35px;
    color: #132F23;
    text-align: center;
    margin-bottom: 4px;
    line-height: 1.25;
}

.class-time {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 31px;
    color: #132F23;
    text-align: center;
    margin-bottom: 16px;
}

.enroll-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.enroll-btn:hover {
    background: var(--accent);
    color: #132F23;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Responsive Behavior */
@media (max-width: 900px) {
    .notched-timetable-grid {
        gap: 16px;
        padding: 0 10px;
    }
    .timetable-card {
        padding: 10px 10px 12px 10px;
        border-radius: 34px;
    }
    .card-inner-plate {
        padding: 18px 14px 20px;
        border-radius: 28px;
        -webkit-mask-image: radial-gradient(circle 88px at 100% 0%, transparent 95%, #000 100%);
        mask-image: radial-gradient(circle 88px at 100% 0%, transparent 95%, #000 100%);
    }
    .card-icon {
        top: 24px;
        right: 26px;
        width: 42px;
        height: 42px;
    }
    .batch-badge {
        font-size: 26px;
        padding: 8px 24px;
    }
    .class-type {
        font-size: 32px;
    }
    .class-type .sinhala {
        font-size: 28px;
    }
    .class-day {
        font-size: 31px;
    }
    .class-time {
        font-size: 28px;
    }
    .enroll-btn {
        font-size: 21px;
        padding: 8px 28px;
    }
}

@media (max-width: 600px) {
    .timetable-section {
        padding: 50px 0;
    }
    .timetable-header {
        margin-bottom: 32px;
    }
    .timetable-heading-main {
        font-size: 26px;
    }
    .timetable-subtitle-text {
        font-size: 18px;
    }
    .notched-timetable-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 92vw;
        max-width: 420px;
    }
    .timetable-card {
        padding: 8px 8px 10px 8px;
        border-radius: 32px;
    }
    .card-inner-plate {
        padding: 15px 14px 17px;
        border-radius: 26px;
        -webkit-mask-image: radial-gradient(circle 76px at 100% 0%, transparent 95%, #000 100%);
        mask-image: radial-gradient(circle 76px at 100% 0%, transparent 95%, #000 100%);
    }
    .card-icon {
        top: 20px;
        right: 22px;
        width: 38px;
        height: 38px;
    }
    .batch-badge {
        font-size: 24px;
        padding: 8px 22px;
    }
    .class-type {
        font-size: 29px;
    }
    .class-type .sinhala {
        font-size: 25px;
    }
    .class-day {
        font-size: 28px;
    }
    .class-time {
        font-size: 26px;
        margin-bottom: 14px;
    }
    .enroll-btn {
        font-size: 21px;
        padding: 9px 28px;
    }
}

/* ==========================================================================
   Student Testimonials ("What Students Say" Carousel - Gold Speech Bubble)
   ========================================================================== */
.testimonial-section {
    width: 100%;
    background-color: var(--bg-cream);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.testimonial-heading-si {
    font-family: 'Noto Sans Sinhala', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--heading-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimonial-subheading {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: var(--heading-dark);
    line-height: 1.3;
}

.testimonial-carousel-container {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding-top: 55px;
    padding-bottom: 45px;
}

.testimonial-track {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Base Card & Anatomy */
.testimonial-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    cursor: pointer;
    user-select: none;
    z-index: 1;
}

/* Image-based card container (No CSS bubble construction) */
.testimonial-img-card {
    position: relative;
    width: 560px;
    max-width: 92vw;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.18));
}

/* The exact speech bubble frame image */
.testimonial-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

/* Content wrapper positioned in the central white area of the image */
.testimonial-content-wrapper {
    position: absolute;
    top: 41.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 63%;
    height: 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    padding: 0 12px;
}

/* Bubble Title & Text inside the image */
.bubble-title {
    font-family: 'Baloo 2', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #1e1b4b;
    margin-bottom: 6px;
    line-height: 1.2;
}

.bubble-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.45;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.bubble-text.si-text {
    font-family: 'Noto Sans Sinhala', 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
}

/* Author Name & Rating bar at the bottom of the white area */
.testimonial-author-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: #0f172a;
}

.author-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 2px;
}

/* Coverflow States (center active card vs peeking side cards) */
.testimonial-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.testimonial-card.prev {
    transform: translateX(-63%) scale(0.78);
    opacity: 0.55;
    z-index: 5;
    pointer-events: auto;
}

.testimonial-card.next {
    transform: translateX(63%) scale(0.78);
    opacity: 0.55;
    z-index: 5;
    pointer-events: auto;
}

.testimonial-card.hidden {
    transform: scale(0.5);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Dots Pagination */
.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.testi-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--dot-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testi-dot.active {
    background: var(--dot-color);
    transform: scale(1.15);
}

/* Responsive Rules for Testimonial Carousel */
@media (max-width: 1024px) {
    .testimonial-heading-si {
        font-size: 34px;
    }
    .testimonial-subheading {
        font-size: 26px;
    }
    .testimonial-img-card {
        width: 480px;
    }
    .bubble-title {
        font-size: 20px;
    }
    .bubble-text {
        font-size: 13.5px;
        -webkit-line-clamp: 3;
    }
    .testimonial-card.prev {
        transform: translateX(-68%) scale(0.75);
    }
    .testimonial-card.next {
        transform: translateX(68%) scale(0.75);
    }
}

@media (max-width: 600px) {
    .testimonial-section {
        padding: 60px 0;
    }
    .testimonial-header {
        margin-bottom: 40px;
    }
    .testimonial-heading-si {
        font-size: 28px;
    }
    .testimonial-subheading {
        font-size: 22px;
    }
    .testimonial-carousel-container {
        padding-top: 15px;
    }
    .testimonial-track {
        height: 380px;
    }
    .testimonial-img-card {
        width: 94vw;
        max-width: 400px;
    }
    .bubble-title {
        font-size: 17px;
        margin-bottom: 4px;
    }
    .bubble-text {
        font-size: 12.5px;
        line-height: 1.4;
        margin-bottom: 6px;
        -webkit-line-clamp: 3;
    }
    .bubble-text.si-text {
        font-size: 12px;
        line-height: 1.4;
    }
    .author-name {
        font-size: 12px;
    }
    .author-stars {
        font-size: 11px;
        letter-spacing: 1px;
    }
    /* Mobile: show active card full width centered, hide peeking side cards */
    .testimonial-card.prev,
    .testimonial-card.next {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.6);
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--bg-footer);
    color: #e5e7eb;
    padding: 4.5rem 0 2rem;
    border-top: 4px solid var(--accent-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-about {
    color: #9ca3af;
    font-size: 0.95rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-orange);
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links li a {
    color: #d1d5db;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #d1d5db;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-info li i {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-top: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.8rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

.developer-credit-subtle {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: #64748b;
    letter-spacing: 0.3px;
}
.developer-credit-subtle a {
    color: #94a3b8;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}
.developer-credit-subtle a:hover {
    color: #cbd5e1;
}

/* ==========================================================================
   Premium Scroll Animations & IntersectionReveal System
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up {
    transform: translateY(45px);
}

.anim-fade-down {
    transform: translateY(-45px);
}

.anim-slide-left {
    transform: translateX(-45px);
}

.anim-slide-right {
    transform: translateX(45px);
}

.anim-scale-up {
    transform: scale(0.88);
}

.anim-zoom-in {
    transform: scale(0.92) translateY(25px);
}

.anim-fade-in {
    transform: translate(0);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered Delays for Sequential Group Animations */
.anim-delay-100 { transition-delay: 100ms; }
.anim-delay-200 { transition-delay: 200ms; }
.anim-delay-300 { transition-delay: 300ms; }
.anim-delay-400 { transition-delay: 400ms; }
.anim-delay-500 { transition-delay: 500ms; }
.anim-delay-600 { transition-delay: 600ms; }
.anim-delay-700 { transition-delay: 700ms; }
.anim-delay-800 { transition-delay: 800ms; }

/* Reduced Motion Override for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-buttons-overlay {
        left: 10%;
        bottom: 10%;
        gap: 0.9rem;
    }

    .hero-slider-dots {
        right: 4%;
        bottom: 11%;
        gap: 8px;
    }

    .btn-pill-orange,
    .btn-pill-white,
    .btn-pill-lms {
        padding: 0.45rem 1.6rem 0.45rem 0.45rem;
        font-size: 0.95rem;
    }

    .about-grid,
    .excellence-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .workflow-large-video-box {
        min-height: 380px;
    }

    .workflow-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .about-visual-group {
        justify-content: center;
        padding-right: 40px;
        padding-bottom: 40px;
        margin-bottom: 1.5rem;
    }

    .about-info {
        padding-left: 0;
    }

    .lab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .nav-links {
        gap: 0.9rem;
    }

    .nav-links li a {
        font-size: 0.82rem;
    }

    .logo-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .btn-login {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-slider-dots {
        right: 15px;
        bottom: 15px;
        gap: 6px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot.active {
        width: 24px;
    }

    .hero-buttons-overlay {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        justify-content: center;
        padding: 1.5rem 1rem;
        background: #170d06;
        gap: 1rem;
    }

    .btn-pill-orange,
    .btn-pill-white,
    .btn-pill-lms {
        padding: 0.45rem 1.6rem 0.45rem 0.45rem;
        font-size: 0.95rem;
    }

    .about-visual-group {
        padding-right: 28px;
        padding-bottom: 30px;
        gap: 0.8rem;
    }

    .exp-vertical-banner {
        min-width: 55px;
        padding: 1.6rem 0.4rem;
    }

    .exp-years {
        font-size: 1.8rem;
    }

    .exp-label {
        font-size: 0.78rem;
        margin-bottom: 1.2rem;
    }

    .about-main-image {
        border-radius: 18px;
        box-shadow: none !important;
        background: transparent !important;
    }

    .about-overlap-image-wrap {
        right: -20px;
        bottom: 16px;
        width: 60%;
        height: 46%;
        padding: 0;
        background: transparent !important;
        border: none !important;
        border-radius: 16px;
        box-shadow: none !important;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.28));
        overflow: hidden;
    }

    .about-overlap-image {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        padding: 0;
        border: none !important;
        background: transparent !important;
    }

    .about-heading-si {
        font-size: 1.7rem;
    }

    .heading-silver {
        font-size: 1.4rem;
    }

    .floating-social-strip {
        display: none;
    }

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

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

    .workflow-title {
        font-size: 1.35rem;
    }

    .workflow-mini-video-box {
        width: 100%;
        max-width: 220px;
    }
}
